← Back to SOC feed Coverage →

Disclosed hacktool set (old stuff) - file FPipe2.0.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-30T23:00:00Z · Confidence: medium

Hunt Hypothesis

This detection identifies the execution of legacy hacking tools like FPipe2.0.exe, which adversaries often deploy to establish persistence or conduct reconnaissance on compromised endpoints. Proactively hunting for these artifacts in Azure Sentinel is critical because outdated hacktool executables frequently evade standard signature-based defenses and may indicate a stealthy initial access phase that requires immediate investigation before lateral movement occurs.

YARA Rule

rule FPipe2_0 {
	meta:
		description = "Disclosed hacktool set (old stuff) - file FPipe2.0.exe"
		author = "Florian Roth"
		date = "23.11.14"
		score = 60
		hash = "891609db7a6787575641154e7aab7757e74d837b"
	strings:
		$s0 = "made to port 80 of the remote machine at 192.168.1.101 with the" fullword ascii
		$s1 = "Unable to resolve hostname \"%s\"" fullword ascii
		$s2 = " -s    - outbound connection source port number" fullword ascii
		$s3 = "source port for that outbound connection being set to 53 also." fullword ascii
		$s4 = "http://www.foundstone.com" fullword ascii
		$s19 = "FPipe" fullword ascii
	condition:
		all of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 6 string patterns in its detection logic.

False Positive Guidance

Here are 3-5 specific false positive scenarios for the detection rule “Disclosed hacktool set (old stuff) - file FPipe2.0.exe”, along with suggested filters and exclusions:

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