← Back to SOC feed Coverage →

The digital certificate has leaked.

yara LOW ReversingLabs
malware-family
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ReversingLabs →
Retrieved: 2026-08-28T23:00:00Z · Confidence: medium

Hunt Hypothesis

This rule detects adversary behavior where sensitive digital certificates are exposed to unauthorized access or potential exfiltration, signaling a risk of compromised identity authentication and encrypted traffic interception. A SOC team should proactively hunt for this in Azure Sentinel because leaked certificates can enable attackers to impersonate legitimate services or bypass security controls without triggering immediate high-severity alerts.

YARA Rule

rule cert_blocklist_4f2ef29ca5f96e5777b82c62f34fd3a6 {
    meta:
        author      = "ReversingLabs"
        source      = "ReversingLabs"
        status      = "RELEASED"
        sharing     = "TLP:WHITE"
        category    = "INFO"
        description = "The digital certificate has leaked."

    condition:
        uint16(0) == 0x5A4D and
        for any i in (0..pe.number_of_signatures): (
            pe.signatures[i].subject contains "Bit9, Inc" and
            pe.signatures[i].serial == "4f:2e:f2:9c:a5:f9:6e:57:77:b8:2c:62:f3:4f:d3:a6" and
            1342051200 <= pe.signatures[i].not_after
        )
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

False Positive Guidance

Here are 5 specific false positive scenarios for the “The digital certificate has leaked” detection rule, including suggested filters and exclusions tailored for an enterprise environment:

Original source: https://github.com/reversinglabs/reversinglabs-yara-rules/blob/main/yara/certificate/blocklist.yara