This detection identifies Aisuru malware activity by monitoring encrypted command-and-control communications and data exfiltration attempts originating from identified IP:port pairs associated with phishing or exploit kit infections. Proactively hunting for these indicators in Azure Sentinel is critical to rapidly detect early-stage intrusions that leverage encrypted channels to bypass traditional network security controls, thereby preventing sensitive data loss before the adversary establishes a persistent foothold.
Malware Family: Aisuru Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 137[.]184[.]135[.]42:9035 | botnet_cc | 2026-07-26 | 100% |
| ip:port | 149[.]28[.]128[.]253:8001 | botnet_cc | 2026-07-26 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Aisuru
let malicious_ips = dynamic(["137.184.135.42", "149.28.128.253"]);
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(["137.184.135.42", "149.28.128.253"]);
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 Cloud Backup Agent Communication
VeeamTransport.exe or rubrik-agent) and User Account (e.g., DOMAIN\BackupSvc). Additionally, whitelist the specific destination IP range of the cloud provider if it aligns with the detection logic.Scenario 2: Patch Management System Updates
www.microsoft.com, updates.ivanti.com). These systems often use standard encrypted ports (443) and may connect to IP addresses that share characteristics with the Aisuru family’s C2 infrastructure.ccmexec.exe or ivanti-agent.exe. You can also add an exclusion for specific Destination Domains associated with known patching vendors to prevent noise during maintenance windows.Scenario 3: Third-Party SaaS Analytics and Telemetry