This detection rule identifies adversary activity involving the AsyncRAT remote access tool by monitoring for specific indicators of compromise such as unique process executions and network connections. A SOC team should proactively hunt for these signals in Azure Sentinel to rapidly detect and contain potential lateral movement or data exfiltration campaigns driven by this sophisticated RAT before they escalate into broader incidents.
Malware Family: AsyncRAT Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 86[.]48[.]16[.]94:3200 | botnet_cc | 2026-08-17 | 75% |
| ip:port | 169[.]58[.]180[.]142:30400 | botnet_cc | 2026-08-17 | 75% |
| ip:port | 145[.]63[.]130[.]104:4444 | botnet_cc | 2026-08-17 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["145.63.130.104", "169.58.180.142", "86.48.16.94"]);
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(["145.63.130.104", "169.58.180.142", "86.48.16.94"]);
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 and corresponding filters/exclusions for the ThreatFox: AsyncRAT IOCs detection rule in an enterprise environment:
Scenario: Scheduled Endpoint Protection Updates via Admin Service Accounts
DOMAIN\EP-UpdateSvc) and process paths matching the security vendor’s installation directory (e.g., C:\Program Files\CrowdStrike\FalconSensor\). Additionally, exclude alerts occurring during defined maintenance windows (e.g., 02:00–04:00 UTC).Scenario: Legitimate Remote Management Tools Deployed by IT Operations
Image Path of known remote management binaries (e.g., C:\Program Files\TeamViewer\TeamViewer.exe) and exclude network traffic originating from these processes to known internal management subnets (e.g., 10.50.x.x).Scenario: Software Deployment via Configuration Management Platforms