This hunt hypothesis targets AsyncRAT activity by identifying remote command execution and data exfiltration patterns associated with known IOCs delivered through phishing vectors or exploit kits. Proactively hunting for these indicators in Azure Sentinel is critical to detect early-stage compromises that could lead to persistent unauthorized access and sensitive data theft before the adversary establishes a foothold.
Malware Family: AsyncRAT Total IOCs: 4 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 107[.]173[.]47[.]158:7707 | botnet_cc | 2026-08-26 | 75% |
| ip:port | 104[.]243[.]248[.]63:400 | botnet_cc | 2026-08-26 | 75% |
| ip:port | 101[.]99[.]92[.]134:4788 | botnet_cc | 2026-08-26 | 75% |
| ip:port | 52[.]29[.]243[.]233:9000 | botnet_cc | 2026-08-26 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["107.173.47.158", "52.29.243.233", "101.99.92.134", "104.243.248.63"]);
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(["107.173.47.158", "52.29.243.233", "101.99.92.134", "104.243.248.63"]);
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 |
Scenario 1: Legitimate Remote Support Sessions via TeamViewer/AnyDesk
TeamViewer.exe, AnyDesk.exe) originating from the “IT Support” Active Directory group or specific IP ranges within the corporate DMZ.Scenario 2: Scheduled Backup Jobs Utilizing Cloud Storage APIs
Veeam.Backup.Service.exe) and the destination IP belongs to verified cloud provider ranges (e.g., Microsoft Azure US East regions or AWS S3 endpoints) during defined maintenance windows.Scenario 3: Phishing Simulation Campaigns with Malicious Attachment Emulation