This detection rule identifies active AsyncRAT remote access trojan infections by monitoring for specific indicators of compromise such as unique file hashes and network connections. Proactively hunting for these signals in Azure Sentinel is critical to rapidly detect stealthy lateral movement and data exfiltration attempts before adversaries establish persistent command-and-control channels.
Malware Family: AsyncRAT Total IOCs: 5 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 195[.]177[.]94[.]101:443 | botnet_cc | 2026-08-31 | 100% |
| ip:port | 217[.]217[.]97[.]164:6606 | botnet_cc | 2026-08-31 | 75% |
| ip:port | 195[.]177[.]94[.]101:80 | botnet_cc | 2026-08-31 | 75% |
| ip:port | 102[.]220[.]160[.]198:7001 | botnet_cc | 2026-08-31 | 75% |
| ip:port | 109[.]122[.]18[.]182:50062 | botnet_cc | 2026-08-31 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["195.177.94.101", "217.217.97.164", "109.122.18.182", "102.220.160.198"]);
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(["195.177.94.101", "217.217.97.164", "109.122.18.182", "102.220.160.198"]);
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, including suggested filters and exclusions tailored for an enterprise environment:
Endpoint Security Agent Communication
MsMpEng.exe or FalconService) and restrict the match to specific Destination IP ranges known to belong to the security vendor, excluding any traffic from these processes regardless of the IOCs.Software Deployment via Configuration Management Tools
DOMAIN\SCCM-Deploy-SVC) and the Parent Process is the deployment engine (e.g., ccmsetup.exe).Third-Party Remote Support Tools