This hunt detects adversary activity involving AsyncRAT remote access trojan indicators to identify potential command and control communications or lateral movement within the network. A SOC team should proactively search for these IOCs in Azure Sentinel because AsyncRAT is a sophisticated tool frequently used by threat actors to establish persistent footholds and exfiltrate sensitive data, requiring early detection to mitigate advanced threats.
Malware Family: AsyncRAT Total IOCs: 3 IOC Types: sha1_hash, md5_hash, sha256_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| sha256_hash | 66a1dfb08cb48494a16f60ecc6a827acb02388ddd364baafad3cc9774fcaae2d | payload | 2026-08-25 | 95% |
| sha1_hash | eddfa48ca1564f480b696e12f0e809dacc60ff97 | payload | 2026-08-25 | 95% |
| md5_hash | 98597ac6d3479702b9efab392159bc48 | payload | 2026-08-25 | 95% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - AsyncRAT
let malicious_hashes = dynamic(["66a1dfb08cb48494a16f60ecc6a827acb02388ddd364baafad3cc9774fcaae2d", "eddfa48ca1564f480b696e12f0e809dacc60ff97", "98597ac6d3479702b9efab392159bc48"]);
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 specific false positive scenarios and corresponding filters for the ThreatFox: AsyncRAT IOCs detection rule in an enterprise environment:
Scenario: Endpoint Detection & Response (EDR) Agent Communication
FalconSensor.exe, MsMpEng.exe) connecting to known vendor update servers. Additionally, exclude specific destination IP ranges belonging to the EDR provider’s cloud infrastructure.Scenario: Scheduled Software Deployment via SCCM/Intune
ccmexec.exe, Microsoft.IntuneManagementService.exe) when they connect to internal distribution point IPs or specific Azure Content Delivery Network ranges used for patching.Scenario: Legitimate Remote Administration via RDP/VNC