This detection identifies the execution of specific file patterns defined by the CSIT_14003_03 YARA signature, which likely indicates early-stage adversary activity such as benign tool usage or initial reconnaissance. Proactively hunting for these low-severity events in Azure Sentinel allows the SOC team to establish a behavioral baseline and correlate isolated findings with broader attack chains before they escalate into critical incidents.
rule CSIT_14003_03 : installer RAT
{
meta:
Author = "CrowdStrike, Inc"
Date = "2014/05/13"
Description = "Flying Kitten Installer"
Reference = "http://blog.crowdstrike.com/cat-scratch-fever-crowdstrike-tracks-newly-reported-iranian-actor-flying-kitten"
strings:
$exename = "IntelRapidStart.exe"
$confname = "IntelRapidStart.exe.config"
$cabhdr = { 4d 53 43 46 00 00 00 00 }
condition:
all of them
}
This YARA rule can be deployed in the following contexts:
This rule contains 3 string patterns in its detection logic.
Here are specific false positive scenarios for the CSIT 14003 03 detection rule, tailored for an enterprise environment:
Antivirus Scheduled Scans and Updates
scan, update, or specific vendor executable names (e.g., C:\Program Files\CrowdStrike\fs.exe with args containing /schedule).Software Deployment via SCCM or Intune
ccmexec.exe or IntuneManagementExtension) often extracts installation files (MSI/EXE) to temporary folders (C:\Windows\CCMCache), triggering the rule when these extraction activities mimic the suspicious file creation logic defined in the YARA rule.ccmexec.exe, IntuneManagementExtension.exe, or the working directory is within known cache paths like %ProgramData%\Microsoft\Intune Management Extension.Automated Backup and Archiving Jobs