This hunt detects adversary activity involving four specific indicators of compromise linked to the AsyncRAT remote access tool, which is frequently used by threat actors to establish persistent command and control channels within compromised networks. Proactively hunting for these IOCs in Azure Sentinel allows the SOC team to identify early-stage AsyncRAT deployments before they can be leveraged for lateral movement or data exfiltration, thereby reducing dwell time and mitigating potential impact from this high-severity threat.
Malware Family: AsyncRAT Total IOCs: 4 IOC Types: domain, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 159[.]203[.]69[.]210:8401 | botnet_cc | 2026-08-10 | 75% |
| domain | ronaldbeck.duckdns.org | botnet_cc | 2026-08-10 | 75% |
| domain | beckronald.duckdns.org | botnet_cc | 2026-08-10 | 75% |
| ip:port | 34[.]11[.]43[.]142:8808 | botnet_cc | 2026-08-10 | 50% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["159.203.69.210", "34.11.43.142"]);
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", "34.11.43.142"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - AsyncRAT
let malicious_domains = dynamic(["ronaldbeck.duckdns.org", "beckronald.duckdns.org"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are 5 specific false positive scenarios for the ThreatFox: AsyncRAT IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Legitimate Remote Management Tool Usage
C:\Program Files\TeamViewer\TeamViewer.exe or C:\Windows\System32\sccm\client\ccmexec.exe) when they initiate network connections to trusted IP ranges defined in the enterprise’s firewall allow-list.Scenario: Scheduled Backup and Sync Operations
vssvc.exe, OneDrive.exe) and the activity matches standard backup signatures.Scenario: DevOps CI/CD Pipeline Execution