← Back to SOC feed Coverage →

Disclosed hacktool set - file Http.exe

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

Hunt Hypothesis

This rule detects adversaries deploying a disclosed HTTP-based hacking tool named “Http.exe” to establish persistence or conduct reconnaissance within the environment. A proactive hunt is essential in Azure Sentinel because this specific tool signature indicates an active threat actor leveraging known utility files that may evade standard static analysis, requiring immediate investigation of associated network connections and process behaviors.

YARA Rule

rule Hacktools_CN_Http {
	meta:
		description = "Disclosed hacktool set - file Http.exe"
		author = "Florian Roth"
		date = "17.11.14"
		score = 60
		hash = "788bf0fdb2f15e0c628da7056b4e7b1a66340338"
	strings:
		$s0 = "RPCRT4.DLL" fullword ascii
		$s1 = "WNetAddConnection2A" fullword ascii
		$s2 = "NdrPointerBufferSize" fullword ascii
		$s3 = "_controlfp" fullword ascii
	condition:
		all of them and filesize < 10KB
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 4 string patterns in its detection logic.

False Positive Guidance

Here are 4 specific false positive scenarios for the Disclosed hacktool set - file Http.exe detection rule, including suggested filters and exclusions:

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