This hunt detects adversary behavior characterized by the execution of AsyncRAT remote access trojan components, specifically targeting known indicators of compromise such as malicious process creation and network beaconing. Proactively hunting for these IOCs in Azure Sentinel is critical to identify early-stage lateral movement and data exfiltration attempts before they escalate into full-scale breaches within the organization’s cloud infrastructure.
Malware Family: AsyncRAT Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 192[.]162[.]199[.]149:8808 | botnet_cc | 2026-06-29 | 75% |
| ip:port | 107[.]174[.]142[.]104:5543 | botnet_cc | 2026-06-29 | 75% |
| ip:port | 34[.]181[.]236[.]49:8808 | botnet_cc | 2026-06-29 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["107.174.142.104", "192.162.199.149", "34.181.236.49"]);
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(["107.174.142.104", "192.162.199.149", "34.181.236.49"]);
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 specific false positive scenarios for the ThreatFox: AsyncRAT IOCs detection rule in an enterprise environment, along with recommended filters or exclusions:
Endpoint Protection Scanning of Legacy Archives
ParentProcessName is the EDR scanner (e.g., csagent.exe, MsMpEng.exe) and the file path contains known archive extensions (*.zip, *.7z, *.cab).IT Helpdesk Remote Support Sessions
SourceUser belongs to the IT-Support or Helpdesk-Admin security groups, combined with a filter for known administrative source IP ranges (e.g., 10.20.50.x).Scheduled Software Deployment via SCCM/Intune