← Back to SOC feed Coverage →

Disclosed hacktool set (old stuff) - file readme.txt

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

Hunt Hypothesis

This detection identifies adversaries deploying legacy hacking toolkits that utilize a readme.txt file to disclose their presence or deliver initial payloads within the Azure environment. Proactive hunting for this specific artifact is critical because such files often serve as indicators of compromise from dormant threats or reconnaissance activities that may have bypassed standard automated alerts due to their age and common naming convention.

YARA Rule

rule PassSniffer_zip_Folder_readme {
	meta:
		description = "Disclosed hacktool set (old stuff) - file readme.txt"
		author = "Florian Roth"
		date = "23.11.14"
		score = 60
		hash = "a52545ae62ddb0ea52905cbb61d895a51bfe9bcd"
	strings:
		$s0 = "PassSniffer.exe" fullword ascii
		$s1 = "POP3/FTP Sniffer" fullword ascii
		$s2 = "Password Sniffer V1.0" fullword ascii
	condition:
		1 of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 3 string patterns in its detection logic.

False Positive Guidance

Here are 4 specific false positive scenarios for the detection rule “Disclosed hacktool set (old stuff) - file readme.txt”, including suggested filters and exclusions:

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