This hunt targets adversary behavior involving AsyncRAT remote access trojan activity by monitoring network connections and process executions against its known indicators of compromise. Proactively hunting for these specific IOCs in Azure Sentinel is critical to identify early-stage lateral movement and command-and-control communications before the malware establishes persistence or exfiltrates sensitive data.
Malware Family: AsyncRAT Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 64[.]89[.]161[.]190:7707 | botnet_cc | 2026-07-18 | 75% |
| ip:port | 198[.]23[.]185[.]95:20100 | botnet_cc | 2026-07-18 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["64.89.161.190", "198.23.185.95"]);
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(["64.89.161.190", "198.23.185.95"]);
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 4 specific false positive scenarios for the ThreatFox: AsyncRAT IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Protection Scanning of Quarantine Archives
C:\ProgramData\Quarantine directory. This directory often contains archived samples from previous threat hunts, including benign versions of AsyncRAT used in internal training exercises or sandboxed test files that match the rule’s hash IOCs but are not active threats.Quarantine, TestSamples, or Sandbox directories. Additionally, filter out alerts where the process name is the EDR service itself (e.g., csagent.exe, MsMpEng.exe) rather than a user-facing application.IT Automation Scripts Deploying Remote Management Tools
ansible-runner.exe, powershell.exe with specific command-line arguments containing -ExecutionPolicy Bypass) running during defined maintenance windows (e.g., 02:00–04:00 UTC).Software Deployment via SCCM/Intune