← Back to SOC feed Coverage →

Detects a chinese Portscanner named s.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-28T11:00:01Z · Confidence: medium

Hunt Hypothesis

This hypothesis targets adversaries leveraging a Chinese port scanning tool named s.exe to map network infrastructure and identify potential entry points for lateral movement. Proactive hunting in Azure Sentinel is critical because this specific executable often indicates early-stage reconnaissance by threat actors from China, allowing the SOC team to isolate compromised assets before deeper intrusion occurs.

YARA Rule

rule CN_Hacktool_S_EXE_Portscanner {
	meta:
		description = "Detects a chinese Portscanner named s.exe"
		author = "Florian Roth"
		score = 70
		date = "12.10.2014"
	strings:
		$s0 = "\\Result.txt" fullword ascii
		$s1 = "By:ZT QQ:376789051" fullword ascii
		$s2 = "(http://www.eyuyan.com)" fullword wide
	condition:
		all 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 “Detects a Chinese Portscanner named s.exe” rule, along with suggested filters and exclusions:

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