This hunt targets adversary behavior where malicious actors deploy AsyncRAT remote access trojans to establish persistent command-and-control channels and exfiltrate sensitive data using specific known indicators of compromise. The SOC team should proactively search for these IOCs in Azure Sentinel to rapidly identify early-stage infections before the malware escalates to full network reconnaissance or lateral movement phases.
Malware Family: AsyncRAT Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 198[.]23[.]185[.]221:6666 | botnet_cc | 2026-07-03 | 75% |
| ip:port | 102[.]220[.]160[.]222:2700 | botnet_cc | 2026-07-03 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["198.23.185.221", "102.220.160.222"]);
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(["198.23.185.221", "102.220.160.222"]);
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 Quarantined Archives
\\FileServer\Quarantine. During this process, the scanner extracts and analyzes a known benign archive containing legacy AsyncRAT configuration files used for internal remote support. The extraction process triggers the IOCs associated with the AsyncRAT executable and its specific file hashes within the quarantine folder.C:\Program Files\CrowdStrike\csagent.exe or MsMpEng.exe) AND the file path contains keywords like \Quarantine\, \Staging\, or \ScanResults.IT Helpdesk Remote Support Sessions
AsyncRAT process where the destination IP belongs to the internal IT Management subnet (e.g., 10.50.20.0/24) OR where the user context is a member of the IT-Admins or Helpdesk-Support security groups.**Autom