This hunt hypothesis targets adversaries deploying Aisuru malware to establish covert backdoors for data exfiltration and command execution following initial compromise via phishing or credential theft. Proactively hunting for these specific IP:port IOCs in Azure Sentinel is critical to detect early-stage persistence mechanisms before attackers can fully entrench their presence within the network.
Malware Family: Aisuru Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 168[.]144[.]135[.]136:8080 | botnet_cc | 2026-07-24 | 100% |
| ip:port | 168[.]144[.]135[.]136:9035 | botnet_cc | 2026-07-24 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Aisuru
let malicious_ips = dynamic(["168.144.135.136"]);
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(["168.144.135.136"]);
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: Scheduled Backup Agent Communication
backup-srv-01) and the Process Name (vbr.exe or cvpserver.exe). Additionally, exclude traffic where the destination IP belongs to the internal backup subnet range.Scenario 2: Microsoft Defender for Endpoint Cloud Connectivity
\Program Files\Microsoft Defender\MsMpEng.exe and the destination domain matches *.microsoft.com. Alternatively, whitelist the specific User Account (e.g., SYSTEM) running these processes during off-hours.Scenario 3: Patch Management Deployment via SCCM/Intune