This hunt detects adversary activity involving AsyncRAT remote access tools by identifying matches against seven specific indicators of compromise known to facilitate command and control operations. Proactively hunting for these signals in Azure Sentinel is critical because early detection of AsyncRAT deployments allows the SOC team to disrupt potential lateral movement and data exfiltration before adversaries establish persistent footholds within the network.
Malware Family: AsyncRAT Total IOCs: 7 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 91[.]242[.]163[.]227:5174 | botnet_cc | 2026-08-13 | 75% |
| ip:port | 217[.]60[.]241[.]247:7722 | botnet_cc | 2026-08-13 | 75% |
| ip:port | 185[.]34[.]147[.]34:8080 | botnet_cc | 2026-08-13 | 75% |
| ip:port | 185[.]34[.]147[.]35:8080 | botnet_cc | 2026-08-13 | 75% |
| ip:port | 185[.]34[.]147[.]31:8080 | botnet_cc | 2026-08-13 | 75% |
| ip:port | 185[.]34[.]147[.]32:8080 | botnet_cc | 2026-08-13 | 75% |
| ip:port | 130[.]12[.]182[.]39:2500 | botnet_cc | 2026-08-13 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["185.34.147.35", "130.12.182.39", "217.60.241.247", "185.34.147.31", "185.34.147.32", "185.34.147.34", "91.242.163.227"]);
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(["185.34.147.35", "130.12.182.39", "217.60.241.247", "185.34.147.31", "185.34.147.32", "185.34.147.34", "91.242.163.227"]);
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 5 specific false positive scenarios for the ThreatFox: AsyncRAT IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Automated Patching Deployment via SCCM/Intune
AsyncRAT client software itself, triggering network connections and file modifications that match the AsyncRAT IOCs.ccmsetup.exe (SCCM) or Microsoft.IntuneManagementService.exe.Third-Party Remote Support Sessions
TeamViewer.exe, AnyDeskService.exe) when they are running under a domain admin account context. Exclude alerts where the user context is part of the “IT_Support” AD group.Scheduled Antivirus Engine Updates