This detection rule identifies potential AsyncRAT malware activity by monitoring for three specific Indicators of Compromise (IOCs) known to be utilized by this remote access trojan. Proactive hunting is essential in Azure Sentinel because AsyncRAT’s ability to establish persistent command-and-control channels allows adversaries to exfiltrate sensitive data and maintain long-term stealth within the environment before traditional alerts trigger.
Malware Family: AsyncRAT Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 80[.]190[.]77[.]86:2414 | botnet_cc | 2026-08-30 | 75% |
| ip:port | 64[.]177[.]112[.]21:50 | botnet_cc | 2026-08-30 | 75% |
| ip:port | 188[.]212[.]158[.]203:8808 | botnet_cc | 2026-08-30 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["188.212.158.203", "64.177.112.21", "80.190.77.86"]);
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(["188.212.158.203", "64.177.112.21", "80.190.77.86"]);
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, along with targeted filtering strategies suitable for an enterprise environment:
Scenario: Legitimate Software Deployment via SCCM/Intune
ccmexec.exe (SCCM) or IntuneManagementExtension.exe, and the running user account belongs to the Enterprise-Admins security group.Scenario: Scheduled Backup Jobs Utilizing Similar Hash Signatures
DOMAIN\BackupSvc) rather than an interactive user session.--backup-mode, --indexing) and the Logon Type is “Service” or “Batch”. Additionally, whitelist the specific file paths located in the vendor’s installation directory (e.g., C:\Program Files\Veeam\Agent\).Scenario: Endpoint Detection & Response (EDR) Self-Scanning