← Back to SOC feed Coverage →

Chinese Hacktool Set - file 1.exe

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

Hunt Hypothesis

This detection identifies the execution of a generic “1.exe” process associated with the Chinese Hacktool set, which adversaries often use to establish persistence or conduct reconnaissance while blending in as legitimate system activity. Proactively hunting for this behavior in Azure Sentinel is critical because its low severity and common naming convention allow it to evade standard alerting thresholds, potentially masking early-stage lateral movement or data exfiltration attempts by threat actors targeting Chinese infrastructure.

YARA Rule

rule Dos_1 {
	meta:
		description = "Chinese Hacktool Set - file 1.exe"
		author = "Florian Roth"
		reference = "http://tools.zjqhr.com/"
		date = "2015-06-13"
		hash = "b554f0687a12ec3a137f321cc15e052ff219f28c"
	strings:
		$s1 = "/churrasco/-->Usage: Churrasco.exe \"command to run\"" fullword ascii
		$s2 = "/churrasco/-->Done, command should have ran as SYSTEM!" fullword ascii
	condition:
		uint16(0) == 0x5a4d and filesize < 1000KB and all of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 2 string patterns in its detection logic.

References

False Positive Guidance

Here are specific false positive scenarios for the Chinese Hacktool Set - file 1.exe detection rule, including suggested filters and exclusions:

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