← 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 detection rule identifies instances where a digital certificate containing sensitive authentication credentials has been exposed or compromised within the environment. A proactive hunt is essential in Azure Sentinel to verify the scope of this leak and prevent adversaries from leveraging these certificates for unauthorized access or man-in-the-middle attacks before they escalate into higher-severity incidents.

YARA Rule

rule cert_blocklist_7cc1db2ad0a290a4bfe7a5f336d6800c {
    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 == "7c:c1:db:2a:d0:a2:90:a4:bf:e7:a5:f3:36:d6:80:0c" 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