← Back to SOC feed Coverage →

Certificate used for digitally signing malware.

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-29T11:00:00Z · Confidence: medium

Hunt Hypothesis

This hypothesis detects adversaries leveraging trusted digital certificates to sign malicious executables, thereby evading signature-based detection and establishing a foothold within the environment. A proactive hunt is essential in Azure Sentinel to identify these legitimate-looking yet compromised artifacts before they facilitate lateral movement or data exfiltration under the guise of trust.

YARA Rule

rule cert_blocklist_6ed2450ceac0f72e73fda1727e66e654 {
    meta:
        author      = "ReversingLabs"
        source      = "ReversingLabs"
        status      = "RELEASED"
        sharing     = "TLP:WHITE"
        category    = "INFO"
        description = "Certificate used for digitally signing malware."

    condition:
        uint16(0) == 0x5A4D and
        for any i in (0..pe.number_of_signatures): (
            pe.signatures[i].subject contains "Hohhot Handing Trade and Business Co., Ltd." and
            pe.signatures[i].serial == "6e:d2:45:0c:ea:c0:f7:2e:73:fd:a1:72:7e:66:e6:54" and
            1376092799 <= pe.signatures[i].not_after
        )
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

False Positive Guidance

Here are 4 specific false positive scenarios where legitimate enterprise activities trigger the “Certificate used for digitally signing malware” rule, along with suggested filters:

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