This hunt detects adversary activity involving AsyncRAT remote access trojan indicators by monitoring for specific network and endpoint signals linked to its known infrastructure. Proactively hunting for these IOCs in Azure Sentinel is critical because AsyncRAT’s advanced capabilities allow attackers to establish persistent, covert command-and-control channels that often evade standard signature-based detection until significant compromise occurs.
Malware Family: AsyncRAT Total IOCs: 9 IOC Types: ip:port, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 217[.]60[.]97[.]106:7707 | botnet_cc | 2026-08-05 | 75% |
| ip:port | 203[.]98[.]68[.]17:1008 | botnet_cc | 2026-08-05 | 75% |
| ip:port | 203[.]98[.]68[.]29:30300 | botnet_cc | 2026-08-05 | 75% |
| ip:port | 196[.]251[.]107[.]131:7707 | botnet_cc | 2026-08-05 | 75% |
| ip:port | 186[.]169[.]88[.]130:5012 | botnet_cc | 2026-08-05 | 75% |
| ip:port | 186[.]169[.]88[.]130:9140 | botnet_cc | 2026-08-05 | 75% |
| ip:port | 128[.]90[.]59[.]58:7070 | botnet_cc | 2026-08-05 | 75% |
| ip:port | 217[.]165[.]0[.]228:8808 | botnet_cc | 2026-08-05 | 100% |
| domain | nuevaera2026202620262026.duckdns.org | botnet_cc | 2026-08-05 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["217.60.97.106", "217.165.0.228", "196.251.107.131", "128.90.59.58", "203.98.68.29", "203.98.68.17", "186.169.88.130"]);
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(["217.60.97.106", "217.165.0.228", "196.251.107.131", "128.90.59.58", "203.98.68.29", "203.98.68.17", "186.169.88.130"]);
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(["nuevaera2026202620262026.duckdns.org"]);
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 and suggested exclusions for the ThreatFox: AsyncRAT IOCs detection rule in an enterprise environment:
Scenario: Enterprise Endpoint Protection Scans
C:\Program Files\CrowdStrike\ and C:\ProgramData\Microsoft\Windows Defender\. Additionally, exclude outbound traffic to known Microsoft update domains (e.g., *.update.microsoft.com) if the IOC matches a specific hash used by their telemetry service.Scenario: Scheduled Remote Management Jobs
ccmexec.exe (SCCM) and ansible-runner.exe, ensuring the user context is restricted to service accounts like DOMAIN\SCCM_Service.Scenario: Development Environment Build Artifacts