This hunt targets adversary behavior indicative of AsyncRAT remote access trojan activity by identifying specific indicators of compromise across network and endpoint telemetry within Azure Sentinel. Proactively hunting for these signatures is critical to detect early-stage lateral movement and command-and-control communications before the malware establishes persistent footholds in the environment.
Malware Family: AsyncRAT Total IOCs: 4 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 23[.]106[.]52[.]176:2489 | botnet_cc | 2026-07-12 | 75% |
| ip:port | 23[.]106[.]52[.]176:3984 | botnet_cc | 2026-07-12 | 75% |
| ip:port | 157[.]20[.]182[.]18:1665 | botnet_cc | 2026-07-12 | 75% |
| ip:port | 104[.]164[.]46[.]55:62721 | botnet_cc | 2026-07-12 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["104.164.46.55", "157.20.182.18", "23.106.52.176"]);
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(["104.164.46.55", "157.20.182.18", "23.106.52.176"]);
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 four specific false positive scenarios for the ThreatFox: AsyncRAT IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Protection Scanning of Quarantined Archives
C:\Program Files\CrowdStrike\fsagent.exe) and restrict the detection scope to exclude file paths containing \Quarantine\ or \Staging\.Software Deployment via SCCM/Intune Pushing Known Updates
ccmexec.exe or Microsoft.IntuneManagementExtension) executes the installer on thousands of endpoints simultaneously, it generates high-volume alerts matching the IOC signatures during the installation phase.ccmexec.exe, IntuneManagementExtension.exe) and correlate with a specific scheduled task name (e.g., “SoftwareUpdateDeployment_042”) to suppress alerts originating from these