This hunt detects adversary activity involving AsyncRAT remote access trojan indicators to identify potential command-and-control communications or lateral movement within the network. Proactively hunting for these specific IOCs in Azure Sentinel is critical because AsyncRAT’s stealthy nature allows attackers to maintain persistent access and exfiltrate sensitive data before traditional alerts trigger.
Malware Family: AsyncRAT Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 5[.]21[.]239[.]104:1723 | botnet_cc | 2026-09-02 | 75% |
| ip:port | 103[.]237[.]92[.]116:7707 | botnet_cc | 2026-09-02 | 75% |
| ip:port | 103[.]237[.]92[.]116:443 | botnet_cc | 2026-09-02 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["5.21.239.104", "103.237.92.116"]);
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(["5.21.239.104", "103.237.92.116"]);
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 and corresponding exclusion strategies for the ThreatFox: AsyncRAT IOCs detection rule in an enterprise environment:
Scenario: Scheduled Endpoint Protection Scans
C:\Program Files\CrowdStrike\fsqa.exe or MsMpEng.exe) and restrict the alert to trigger only when these processes are running under non-administrator user contexts, as EDA scans typically run with SYSTEM privileges.Scenario: Software Deployment via Configuration Management
ccmsetup.exe (SCCM) or ansible-playbook, ensuring that only files spawned directly by user interaction or unknown services trigger the rule, while excluding those initiated by known deployment orchestrators.Scenario: Internal DevOps Build and Release Pipelines