← Back to SOC feed Coverage →

Disclosed hacktool set - file Start.bat - DoS tool

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 detection identifies adversaries deploying a batch script named “Start.bat” to execute Denial of Service (DoS) tools, which often serve as an initial foothold for disrupting critical services or masking subsequent malicious activities. SOC teams should proactively hunt for this behavior in Azure Sentinel because the use of common batch files like Start.bat is a prevalent evasion tactic that can easily bypass standard signature-based defenses while enabling rapid impact on system availability.

YARA Rule

rule Hacktools_CN_Burst_Start {
	meta:
		description = "Disclosed hacktool set - file Start.bat - DoS tool"
		author = "Florian Roth"
		date = "17.11.14"
		score = 60
		hash = "75d194d53ccc37a68286d246f2a84af6b070e30c"
	strings:
		$s0 = "for /f \"eol= tokens=1,2 delims= \" %%i in (ip.txt) do (" fullword ascii
		$s1 = "Blast.bat /r 600" fullword ascii
		$s2 = "Blast.bat /l Blast.bat" fullword ascii
		$s3 = "Blast.bat /c 600" fullword ascii
		$s4 = "start Clear.bat" fullword ascii
		$s5 = "del Result.txt" fullword ascii
		$s6 = "s syn %%i %%j 3306 /save" fullword ascii
		$s7 = "start Thecard.bat" fullword ascii
		$s10 = "setlocal enabledelayedexpansion" fullword ascii
	condition:
		5 of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 9 string patterns in its detection logic.

False Positive Guidance

Here are 5 specific false positive scenarios for the Disclosed hacktool set - file Start.bat - DoS tool detection rule, along with targeted exclusion strategies:

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