This hunt detects adversary activity linked to the Aisuru malware campaign by searching for four specific Indicators of Compromise (IOCs) across network and endpoint telemetry within Azure Sentinel. Proactively hunting for these signatures is critical because early identification of this high-severity threat enables the SOC team to rapidly isolate affected assets and mitigate potential data exfiltration before lateral expansion occurs.
Malware Family: Aisuru Total IOCs: 4 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 149[.]28[.]158[.]66:9034 | botnet_cc | 2026-07-18 | 100% |
| ip:port | 206[.]189[.]144[.]140:12345 | botnet_cc | 2026-07-18 | 100% |
| ip:port | 159[.]203[.]1[.]105:5555 | botnet_cc | 2026-07-18 | 100% |
| ip:port | 45[.]77[.]168[.]73:8443 | botnet_cc | 2026-07-18 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Aisuru
let malicious_ips = dynamic(["159.203.1.105", "45.77.168.73", "206.189.144.140", "149.28.158.66"]);
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.1.105", "45.77.168.73", "206.189.144.140", "149.28.158.66"]);
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 |
Here are specific false positive scenarios for the ThreatFox: Aisuru IOCs detection rule, tailored for an enterprise environment:
Endpoint Protection Policy Deployment via Microsoft Intune
Microsoft Intune Management Extension service account (e.g., NT SERVICE\IntuneManagementExtension) or specifically exclude the executable path C:\Program Files\Microsoft Intune Management Extension\*.Scheduled Vulnerability Scan by Qualys Agent
QualysAgent service running under the SYSTEM account during the defined maintenance window (e.g., 02:00–04:00 UTC). Additionally, filter out network connections originating from the Qualys agent’s specific process ID.Automated Patch Management via SCCM/MECM