This hunt targets adversary behavior involving CraxsRAT remote access trojans by actively searching for specific indicators of compromise (IOCs) known to facilitate command-and-control communications and lateral movement. Proactively hunting for these signatures in Azure Sentinel is critical because early detection of this RAT prevents attackers from establishing persistent footholds that could lead to sensitive data exfiltration before traditional alerting triggers.
Malware Family: CraxsRAT Total IOCs: 3 IOC Types: ip:port, sha256_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 91[.]92[.]33[.]183:9999 | botnet_cc | 2026-07-04 | 100% |
| sha256_hash | 5f94e59c132a7ed0e35b60146d973a728ab9f390c8291f9547cee26c56427738 | payload | 2026-07-04 | 100% |
| sha256_hash | fc99609172910a8fad9522b374f8bae21e5805abdf052a49029edb53620a8e8c | payload | 2026-07-04 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - CraxsRAT
let malicious_ips = dynamic(["91.92.33.183"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc
// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["91.92.33.183"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for files matching known malicious hashes
// Source: ThreatFox - CraxsRAT
let malicious_hashes = dynamic(["5f94e59c132a7ed0e35b60146d973a728ab9f390c8291f9547cee26c56427738", "fc99609172910a8fad9522b374f8bae21e5805abdf052a49029edb53620a8e8c"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceFileEvents | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios for the ThreatFox: CraxsRAT IOCs detection rule, tailored for an enterprise environment:
Software Deployment via Endpoint Protection Scanning
msvcp140.dll or a specific installer component).svc-software-deploy) and filter alerts where the process parent is the known deployment agent (e.g., SCCMClient.exe or FalconSensor.exe).Administrative Script Execution in Development Environments
C:\Program Files\ directory structure.*BUILD-SRV-01) and filter by process path containing standard software vendor directories (e.g., \Microsoft\, \Git\, \7-Zip\).Scheduled Backup Agent Activity