← Back to SOC feed Coverage →

Wabot Trojan Worm

yara LOW Yara-Rules
backdoorcommunity
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-01T23:00:00Z · Confidence: medium

Hunt Hypothesis

This hunt targets the specific propagation patterns of the Wabot Trojan Worm to identify early-stage lateral movement and self-replication behaviors within the network. Proactively hunting for this low-severity threat in Azure Sentinel is critical to prevent silent worm outbreaks that could escalate into significant resource consumption and data exfiltration incidents before triggering standard alerts.

YARA Rule

rule Wabot : Worm
{
	meta:
		author="Kevin Falcoz"
		date="14/08/2015"
		description="Wabot Trojan Worm"

	strings:
		$signature1={43 3A 5C 6D 61 72 69 6A 75 61 6E 61 2E 74 78 74}
		$signature2={73 49 52 43 34}

	condition:
		$signature1 and $signature2
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 2 string patterns in its detection logic.

False Positive Guidance

Here are 4 specific false positive scenarios for the Wabot Trojan Worm detection rule in an enterprise environment, including suggested filters and exclusions:

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