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.
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
}
This YARA rule can be deployed in the following contexts:
This rule contains 4 string patterns in its detection logic.
Here are 5 specific false positive scenarios for the Disclosed hacktool set (old stuff) - file splitjoin.exe detection rule, including recommended filters and exclusions:
Scenario: Legacy Media Conversion Workflow
splitjoin.exe as a dependency for batch processing large video files. This process often runs during off-hours via the Windows Task Scheduler.C:\Program Files\Adobe\LegacyTools\bin\splitjoin.exe) and exclude processes spawned by Task Scheduler (sched.exe) when executing this specific binary.Scenario: Automated Backup & Archive Routine
splitjoin.exe to split large archive images into manageable chunks before transmission over the network. This is triggered by a daily cron job or scheduled task.VeeamService.exe or AcronisCyberProtect.exe) and the file hash of splitjoin.exe matches the known good signature from the vendor’s documentation.Scenario: Software Deployment via SCCM/Intune
splitjoin.exe to merge split installer files on the endpoint before launching the main setup wizard.