This hunt detects adversary activity linked to 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 because AsyncRAT enables persistent command-and-control communications that can evade standard signature-based defenses, allowing attackers to exfiltrate sensitive data before detection occurs.
Malware Family: AsyncRAT Total IOCs: 5 IOC Types: ip:port, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 130[.]12[.]182[.]95:7707 | botnet_cc | 2026-07-04 | 75% |
| ip:port | 157[.]20[.]182[.]17:4442 | botnet_cc | 2026-07-04 | 100% |
| ip:port | 186[.]169[.]89[.]64:5010 | botnet_cc | 2026-07-04 | 75% |
| ip:port | 186[.]169[.]89[.]64:9140 | botnet_cc | 2026-07-04 | 75% |
| domain | botstart7.skillface.xyz | botnet_cc | 2026-07-04 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["157.20.182.17", "186.169.89.64", "130.12.182.95"]);
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(["157.20.182.17", "186.169.89.64", "130.12.182.95"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - AsyncRAT
let malicious_domains = dynamic(["botstart7.skillface.xyz"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios for the ThreatFox: AsyncRAT IOCs detection rule in an enterprise environment, including suggested filters and exclusions:
Endpoint Protection Scanning of Quarantined Archives
svc-crowdstrike or LocalSystem) when accessing internal quarantine storage paths (e.g., C:\ProgramData\Microsoft\Windows Defender\Quarantine). Additionally, filter out traffic where the destination IP belongs to the internal SIEM/EDR management cluster.Software Deployment via Configuration Management Tools
DOMAIN\SCCM-Deploy-Svc) during defined maintenance windows (e.g., Sundays