This hunt detects adversary behavior consistent with the AsyncRAT remote access trojan by identifying specific indicators of compromise across network and endpoint telemetry within Azure Sentinel. Proactively hunting for these signatures is critical to rapidly identify early-stage lateral movement or command-and-control communications before they escalate into full-scale data exfiltration incidents.
Malware Family: AsyncRAT Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 192[.]162[.]199[.]149:6606 | botnet_cc | 2026-06-30 | 75% |
| ip:port | 130[.]12[.]182[.]95:8808 | botnet_cc | 2026-06-30 | 100% |
| ip:port | 128[.]90[.]141[.]238:4444 | botnet_cc | 2026-06-29 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["128.90.141.238", "130.12.182.95", "192.162.199.149"]);
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(["128.90.141.238", "130.12.182.95", "192.162.199.149"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
Here are 4 specific false positive scenarios for the ThreatFox: AsyncRAT IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Protection Scanning of Quarantined Archives
Process Name is the EDR sensor service (e.g., C:\Program Files\CrowdStrike\fs.exe or MsMpEng.exe) and the File Path indicates a quarantine or sample repository directory rather than an active user application folder.IT Admin Deployment of Remote Management Tools
DOMAIN\svc-deploy or LocalSystem) where the parent process is a recognized configuration management tool, specifically during standard maintenance windows (e.g., 02:00–06:00 local time).Scheduled Vulnerability Assessment Scans