This hunt detects adversary activity involving AsyncRAT remote access trojan indicators to identify potential command-and-control communications and lateral movement within the network. Proactively hunting for these specific IOCs in Azure Sentinel is critical because AsyncRAT’s advanced evasion capabilities allow it to persist undetected, enabling attackers to exfiltrate sensitive data before traditional alerts trigger.
Malware Family: AsyncRAT Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 198[.]23[.]185[.]98:8888 | botnet_cc | 2026-08-18 | 75% |
| ip:port | 186[.]169[.]88[.]130:5011 | botnet_cc | 2026-08-18 | 75% |
| ip:port | 104[.]243[.]248[.]63:408 | botnet_cc | 2026-08-18 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["186.169.88.130", "198.23.185.98", "104.243.248.63"]);
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(["186.169.88.130", "198.23.185.98", "104.243.248.63"]);
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, along with suggested filters or exclusions tailored for an enterprise environment:
Scenario: Legitimate RMM Agent Communication
Datto.Agent.exe running under System or a dedicated service account). Alternatively, whitelist the specific file hash of the RMM agent’s updater component if it matches one of the 3 IOCs.Scenario: Scheduled Software Deployment via SCCM/Intune
Parent_Process_Name is ccmsetup.exe, msiexec.exe, or IntuneManagementExtension.exe. Additionally, exclude events occurring within specific time windows (e.g., 02:00–04:00 UTC) if deployments are known to run during these hours.Scenario: Internal DevOps Build Artifacts