← Back to SOC feed Coverage →

Rule to detect Shamoon malware http://goo.gl/QTxohN

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

Hunt Hypothesis

This hunt targets adversaries deploying the Shamoon malware family, which is known for targeting industrial control systems and executing destructive payloads via HTTP-based command-and-control communications. Proactively hunting for these specific network signatures in Azure Sentinel is critical to identify early-stage infections before they escalate into widespread operational disruptions or data destruction events.

YARA Rule

rule CrowdStrike_Shamoon_DroppedFile { 
	meta:
		description = "Rule to detect Shamoon malware http://goo.gl/QTxohN"
		reference = "http://www.rsaconference.com/writable/presentations/file_upload/exp-w01-hacking-exposed-day-of-destruction.pdf"
	strings:
		$testn123 = "test123" wide
		$testn456 = "test456" wide
		$testn789 = "test789" wide
		$testdomain = "testdomain.com" wide $pingcmd = "ping -n 30 127.0.0.1 >nul" wide
	condition:
		(any of ($testn*) or $pingcmd) and $testdomain
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 5 string patterns in its detection logic.

References

False Positive Guidance

Here are 4 specific false positive scenarios for the Shamoon Malware detection rule in an enterprise environment, along with recommended filters or exclusions:

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