This hunt detects adversary activity involving five specific indicators of compromise (IOCs) linked to the AsyncRAT remote access tool, which is frequently used by threat actors to establish persistent command and control channels on compromised endpoints. The SOC team should proactively hunt for these IOCs within Azure Sentinel because AsyncRAT’s sophisticated capabilities allow attackers to evade standard perimeter defenses, making early identification critical for preventing data exfiltration and lateral movement before the malware fully establishes its foothold.
Malware Family: AsyncRAT Total IOCs: 5 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 94[.]154[.]32[.]56:27221 | botnet_cc | 2026-07-27 | 75% |
| ip:port | 94[.]154[.]32[.]56:27220 | botnet_cc | 2026-07-27 | 75% |
| ip:port | 46[.]151[.]182[.]76:7707 | botnet_cc | 2026-07-27 | 75% |
| ip:port | 45[.]59[.]160[.]198:52203 | botnet_cc | 2026-07-27 | 75% |
| ip:port | 204[.]44[.]69[.]230:6606 | botnet_cc | 2026-07-27 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["45.59.160.198", "94.154.32.56", "204.44.69.230", "46.151.182.76"]);
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(["45.59.160.198", "94.154.32.56", "204.44.69.230", "46.151.182.76"]);
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:
Scenario: Legitimate Remote Administration via TeamViewer or AnyDesk
TeamViewer.exe, AnyDesk.exe, or SplashtopService.exe running under the SYSTEM or specific helpdesk service accounts (e.g., DOMAIN\HelpDesk_Admin). Additionally, filter out traffic originating from known internal IP ranges dedicated to remote management servers.Scenario: Scheduled Software Deployment via SCCM/Intune
ccmexec.exe (SCCM) or IntuneManagementExtension.exe. Exclude events where the file path contains \Microsoft Intune Management Extension\ or \ConfigMgr\.**Scenario: Automated Backup Agents (Vee