This hunt detects adversary behavior involving AsyncRAT remote access trojan indicators that facilitate command-and-control communication and lateral movement within the network. A SOC team should proactively hunt for these IOCs in Azure Sentinel to identify early-stage infections before attackers establish persistent footholds or exfiltrate sensitive data.
Malware Family: AsyncRAT Total IOCs: 4 IOC Types: md5_hash, sha256_hash, sha1_hash, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 159[.]203[.]69[.]210:48202 | botnet_cc | 2026-08-08 | 75% |
| sha256_hash | 2b45aeb88bf38dd8dfbb13390c5b0f5efd6a298a6f967ac773cf47b2489ee5ab | payload | 2026-08-08 | 95% |
| sha1_hash | 3526ba1e856cf7c229ac3149ba05eeacf74fa7d6 | payload | 2026-08-08 | 95% |
| md5_hash | 23ed3c85947705b76a5bc6dfaaff0b41 | payload | 2026-08-08 | 95% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["159.203.69.210"]);
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"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for files matching known malicious hashes
// Source: ThreatFox - AsyncRAT
let malicious_hashes = dynamic(["2b45aeb88bf38dd8dfbb13390c5b0f5efd6a298a6f967ac773cf47b2489ee5ab", "3526ba1e856cf7c229ac3149ba05eeacf74fa7d6", "23ed3c85947705b76a5bc6dfaaff0b41"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceFileEvents | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios for the ThreatFox: AsyncRAT IOCs detection rule, along with targeted filters and exclusions suitable for an enterprise environment:
Scenario 1: Automated Patch Management Deployments
C:\Program Files\Microsoft Configuration Manager\ or C:\ProgramData\Ivanti\. Add a filter to ignore alerts where the parent process is ccmsetup.exe (SCCM) or agent.exe (Ivanti).Scenario 2: Scheduled Remote Support Sessions
SUPPORT-ADMIN or specific AD groups like IT-Helpdesk. Additionally, filter out network connections to known support vendor IP ranges (e.g., AnyDesk’s public IPs) during defined maintenance windows (02:00–04:00 UTC).Scenario 3: Third-Party Endpoint Detection & Response (EDR) Scans