← Back to SOC feed Coverage →

Certificate used for digitally signing Careto 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-28T23:00:00Z · Confidence: medium

Hunt Hypothesis

This detection identifies the presence of a specific digital certificate associated with the Careto malware, signaling potential malicious activity where adversaries leverage trusted signing credentials to evade standard security controls. A proactive hunt for this indicator in Azure Sentinel is essential to uncover stealthy infections that may bypass traditional signature-based defenses by masquerading as legitimate software through valid code signing.

YARA Rule

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

    condition:
        uint16(0) == 0x5A4D and
        for any i in (0..pe.number_of_signatures): (
            pe.signatures[i].subject contains "TecSystem Ltd." and
            pe.signatures[i].serial == "0e:80:8f:23:15:15:bc:51:9e:ea:1a:73:cd:f3:26:6f" and
            1468799999 <= pe.signatures[i].not_after
        )
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

False Positive Guidance

Here are 3-5 specific false positive scenarios and their corresponding filters/exclusions for the “Certificate used for digitally signing Careto malware” detection rule:

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