This hunt targets adversary behavior characterized by the execution of known CrossRAT remote access trojan indicators, which typically establish persistence and exfiltrate sensitive data from compromised endpoints. Proactively hunting for these specific IOCs within Azure Sentinel is critical to rapidly identify early-stage infections before they escalate into widespread lateral movement or significant data breaches across the organization’s cloud infrastructure.
Malware Family: CrossRAT Total IOCs: 3 IOC Types: sha256_hash, md5_hash, sha1_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| sha1_hash | 2b4e83cfdab5b79ae1aa1b4df8dd4503a9c99deb | payload | 2026-06-27 | 95% |
| md5_hash | 038112c489a65525aaa6c2ede6c33c2a | payload | 2026-06-27 | 95% |
| sha256_hash | 737646392a7c882064e22ecb9fc0b2732399e44ced2f56d873e656d0035af288 | payload | 2026-06-27 | 95% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - CrossRAT
let malicious_hashes = dynamic(["2b4e83cfdab5b79ae1aa1b4df8dd4503a9c99deb", "038112c489a65525aaa6c2ede6c33c2a", "737646392a7c882064e22ecb9fc0b2732399e44ced2f56d873e656d0035af288"]);
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 |
|---|---|
DeviceFileEvents | Ensure this data connector is enabled |
Here are 4 specific false positive scenarios for the ThreatFox: CrossRAT IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Protection Scanning of Quarantine Archives
C:\ProgramData\Microsoft\Windows Defender\Scans\History\Malware or C:\CrowdStrike\Logs\Quarantine) from generating alerts for this rule, provided the file creation timestamp is older than 30 days.Software Deployment via Configuration Management Tools
Process Name and Parent Process. If the initiating process is a known deployment agent (e.g., ccmexec.exe, ansible-runner.exe) or the file path resides within the software distribution share (e