← Back to SOC feed Coverage →

Detects a chinese Portscanner named SSPort

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 rule detects the presence of the Chinese port scanning tool “SSPort,” which adversaries may deploy to map network topology and identify exposed services for potential lateral movement or reconnaissance. SOC teams should proactively hunt for this activity in Azure Sentinel because early identification of such specialized scanners allows for rapid containment before attackers can exploit discovered vulnerabilities or establish persistent access points within the environment.

YARA Rule

rule CN_Hacktool_SSPort_Portscanner {
	meta:
		description = "Detects a chinese Portscanner named SSPort"
		author = "Florian Roth"
		score = 70
		date = "12.10.2014"
	strings:
		$s0 = "Golden Fox" fullword wide
		$s1 = "Syn Scan Port" fullword wide
		$s2 = "CZ88.NET" 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

False Positive Scenarios for “Detects a Chinese Portscanner named SSPort”

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