This hunt detects adversary activity involving AsyncRAT remote access trojan indicators to identify potential command-and-control communications and lateral movement within the environment. A proactive search in Azure Sentinel is essential because AsyncRAT enables attackers to establish persistent footholds that can silently exfiltrate sensitive data before triggering standard alert thresholds.
Malware Family: AsyncRAT Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 159[.]203[.]69[.]210:22555 | botnet_cc | 2026-08-06 | 75% |
| ip:port | 159[.]203[.]69[.]210:5800 | botnet_cc | 2026-08-06 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["159.203.69.210"]);
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(["159.203.69.210"]);
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, along with recommended filters and exclusions tailored for an enterprise environment:
Scenario: Security Team Manual IOC Hunting via EDR Query
LogonUser is a member of the “SOC-Admins” or “Threat-Hunters” security group, and the initiating process is the EDR agent itself (e.g., MsMpEng.exe, FalconSensorService.exe) rather than a standard user application.Scenario: Scheduled Vulnerability Scanning Job
TenableAgent.exe, QualysPCCAgent.exe) and the execution path resides within the vendor’s installation directory (e.g., C:\Program Files\Tenable\).**Scenario: Deployment of