← Back to SOC feed Coverage →

Search for nss3.dll pattern indicating an hexed copy of Citadel malware to work on firefox > v23.0

yara LOW Yara-Rules
community
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 Yara-Rules →
Retrieved: 2026-06-13T23:00:00Z · Confidence: medium

Hunt Hypothesis

Adversaries may use a hexed copy of Citadel malware disguised as nss3.dll to exploit Firefox versions greater than 23.0, leveraging the browser’s capabilities for persistence and data exfiltration. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify potential malware execution and mitigate advanced threat activity before it causes significant damage.

YARA Rule

rule Citadel_Malware
{
    
    meta:
        author = "[email protected]"
        date = "2015-10-08" 
        description = "Search for nss3.dll pattern indicating an hexed copy of Citadel malware to work on firefox > v23.0"
        // May only the challenge guide you
        
    strings:
        $s1 = "Coded by BRIAN KREBS for personal use only. I love my job & wife" wide ascii
        $s2 = "nss3.dll" wide ascii

        $h1 = {8B C7 EB F5 55 8B EC}
        $h2 = {55 8B EC 83 EC 0C 8A 82 00 01 00 00}
        $h3 = {3D D0 FF 1F 03 77 ?? 83 7D}
        $h4 = {83 F9 66 74 ?? 83 F9 6E 74 ?? 83 F9 76 74 ?? 83 F9 7A}

    condition:
        all of ($s*) and 2 of ($h*)
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 6 string patterns in its detection logic.

False Positive Guidance

Original source: https://github.com/Yara-Rules/rules/blob/main/malware/MALW_Citadel.yar