← Back to SOC feed Coverage →

zbot

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-07-31T23:00:00Z · Confidence: medium

Hunt Hypothesis

This hunt hypothesis targets adversaries leveraging Zbot malware variants to establish persistent botnet command-and-control channels for data exfiltration or lateral movement. Proactive hunting in Azure Sentinel is essential because early detection of these variants across endpoints and email gateways enables rapid containment before the botnet scales its impact on the organization’s network infrastructure.

YARA Rule

rule zbot : banker
{
      meta:
		author="malware-lu"
     strings:
        $a = "__SYSTEM__" wide
        $b = "*tanentry*"
        $c = "*<option"
        $d = "*<select"
        $e = "*<input"

     condition:
        ($a and $b) or ($c and $d and $e)
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 5 string patterns in its detection logic.

False Positive Guidance

Here are 5 specific false positive scenarios for the zbot detection rule, including suggested filters or exclusions tailored to an enterprise environment:

Original source: https://github.com/Yara-Rules/rules/blob/main/packers/packer.yar