← Back to SOC feed Coverage →

Adzok

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-12T11:00:00Z · Confidence: medium

Hunt Hypothesis

This hypothesis posits that adversaries are deploying the Adzok malware family to establish initial footholds within Azure workloads by executing known malicious binaries identified through YARA signatures. Proactive hunting for this behavior in Azure Sentinel is critical because early detection of these low-severity indicators can reveal broader compromise patterns before they escalate into high-impact incidents, ensuring timely containment across the cloud environment.

YARA Rule

rule Adzok : binary RAT Adzok
{
	meta:
		author = " Kevin Breen <[email protected]>"
		Description = "Adzok Rat"
		Versions = "Free 1.0.0.3,"
		date = "2015/05"
		ref = "http://malwareconfig.com/stats/Adzok"
		maltype = "Remote Access Trojan"
		filetype = "jar"

	strings:
		$a1 = "config.xmlPK"
		$a2 = "key.classPK"
		$a3 = "svd$1.classPK"
		$a4 = "svd$2.classPK"
    	$a5 = "Mensaje.classPK"
		$a6 = "inic$ShutdownHook.class"
		$a7 = "Uninstall.jarPK"
		$a8 = "resources/icono.pngPK"
        
	condition:
    7 of ($a*)
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 8 string patterns in its detection logic.

False Positive Guidance

Here are 3-5 specific false positive scenarios for the Adzok detection rule in an enterprise environment, including suggested filters and exclusions:

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