This hunt detects adversary activity involving specific indicators of compromise linked to the AsyncRAT remote access trojan, which is frequently used by threat actors to establish persistent command and control channels within compromised networks. Proactively hunting for these IOCs in Azure Sentinel is critical because AsyncRAT’s ability to execute arbitrary commands and exfiltrate sensitive data makes early detection essential for preventing lateral movement and data breaches before the adversary achieves full operational capability.
Malware Family: AsyncRAT Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 45[.]61[.]114[.]217:7707 | botnet_cc | 2026-08-02 | 75% |
| ip:port | 185[.]157[.]46[.]242:8808 | botnet_cc | 2026-08-02 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["45.61.114.217", "185.157.46.242"]);
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(["45.61.114.217", "185.157.46.242"]);
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: Legitimate Remote Administration via TeamViewer or AnyDesk
TeamViewer.exe, AnyDeskService.exe, or SplashtopAgent.exe running under the SYSTEM or specific service accounts (e.g., DOMAIN\IT-Support). Additionally, whitelist the known hash values of these legitimate remote tools in the SIEM.Scenario: Scheduled Backup Jobs Utilizing Cloud Storage APIs
Scheduled Task name or process path. For instance, exclude alerts where the parent process matches paths like C:\Program Files\Veeam\Backup and Replication\... or C:\Program Files\Acronis\Cyber Protect\.... Filter by time windows if these jobs run exclusively during off-hours (e.g., 02:00–05:00).**Scenario: