← Back to SOC feed Coverage →

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

Hunt Hypothesis

This hunt detects adversaries leveraging legacy or repurposed hacking tools like splitjoin.exe to execute command-line operations that may indicate post-compromise activity such as data staging or lateral movement. Proactive hunting for this behavior in Azure Sentinel is critical because the use of “old stuff” often suggests an attacker attempting to blend into existing infrastructure by utilizing trusted, less-monitored utilities to evade standard detection mechanisms.

YARA Rule

rule splitjoin {
	meta:
		description = "Disclosed hacktool set (old stuff) - file splitjoin.exe"
		author = "Florian Roth"
		date = "23.11.14"
		score = 60
		hash = "e4a9ef5d417038c4c76b72b5a636769a98bd2f8c"
	strings:
		$s0 = "Not for distribution without the authors permission" fullword wide
		$s2 = "Utility to split and rejoin files.0" fullword wide
		$s5 = "Copyright (c) Angus Johnson 2001-2002" fullword wide
		$s19 = "SplitJoin" fullword wide
	condition:
		all of them
}

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 5 specific false positive scenarios for the Disclosed hacktool set (old stuff) - file splitjoin.exe detection rule, including recommended filters and exclusions:

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