This hunt detects adversary behavior indicative of AsyncRAT remote access trojans by identifying specific indicators of compromise such as malicious process execution and network connections to known command-and-control infrastructure. Proactively hunting for these IOCs in Azure Sentinel is critical because AsyncRAT’s ability to establish persistent, stealthy sessions allows attackers to exfiltrate sensitive data before traditional signature-based alerts trigger.
Malware Family: AsyncRAT Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 188[.]209[.]158[.]161:6606 | botnet_cc | 2026-07-13 | 75% |
| ip:port | 136[.]111[.]38[.]101:6932 | botnet_cc | 2026-07-13 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["136.111.38.101", "188.209.158.161"]);
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(["136.111.38.101", "188.209.158.161"]);
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 rule in an enterprise environment, along with suggested filters and exclusions:
Endpoint Protection Scanning of Quarantine Archives
C:\ProgramData\Microsoft\Windows Defender\Quarantine or \CrowdStrike\Falcon\Quarantine) and filter for processes with a “Scanner” or “Service” classification in the process tree.SIEM Content Updates via Scheduled Tasks
svc-threat-intel or System) executing the ingestion script (e.g., python.exe running feed_parser.py).Red Team Exercise and Purple Teaming Simulations