This hunt detects adversary behavior consistent with AsyncRAT malware by identifying network and host activities matching five specific Indicators of Compromise (IOCs). Proactively hunting for these signals in Azure Sentinel is critical to rapidly identify and contain potential remote access trojan infections before they establish persistence or exfiltrate sensitive data.
Malware Family: AsyncRAT Total IOCs: 5 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 207[.]180[.]250[.]181:10900 | botnet_cc | 2026-07-10 | 75% |
| ip:port | 147[.]124[.]218[.]54:62025 | botnet_cc | 2026-07-10 | 75% |
| ip:port | 104[.]250[.]161[.]126:2061 | botnet_cc | 2026-07-10 | 75% |
| ip:port | 13[.]53[.]169[.]83:5000 | botnet_cc | 2026-07-10 | 100% |
| ip:port | 146[.]19[.]248[.]64:8808 | botnet_cc | 2026-07-10 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["207.180.250.181", "147.124.218.54", "13.53.169.83", "104.250.161.126", "146.19.248.64"]);
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(["207.180.250.181", "147.124.218.54", "13.53.169.83", "104.250.161.126", "146.19.248.64"]);
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 Known Malware Definitions
C:\Program Files\CrowdStrike\ or C:\ProgramData\Microsoft\Windows Defender\) and filter out network connections where the destination IP belongs to the EDR vendor’s update server ranges.IT Security Team Manual Threat Hunting Exercises
Event_Type = "Simulation") to bypass alerting during scheduled maintenance windows.**Software Deployment via Configuration