This hunt detects adversary activity by correlating seven specific Indicators of Compromise (IOCs) linked to the Aisuru threat actor across Azure Sentinel logs. Proactively hunting for these IOCs is critical because early identification of this high-severity campaign enables the SOC team to isolate affected assets before lateral movement or data exfiltration occurs.
Malware Family: Aisuru Total IOCs: 7 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 167[.]99[.]64[.]180:8001 | botnet_cc | 2026-07-31 | 100% |
| ip:port | 206[.]189[.]81[.]41:8001 | botnet_cc | 2026-07-31 | 100% |
| ip:port | 143[.]198[.]206[.]191:8001 | botnet_cc | 2026-07-31 | 100% |
| ip:port | 137[.]184[.]70[.]190:8443 | botnet_cc | 2026-07-31 | 100% |
| ip:port | 137[.]184[.]199[.]120:8001 | botnet_cc | 2026-07-31 | 100% |
| ip:port | 167[.]172[.]71[.]69:8001 | botnet_cc | 2026-07-31 | 100% |
| ip:port | 47[.]107[.]224[.]89:8443 | botnet_cc | 2026-07-31 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Aisuru
let malicious_ips = dynamic(["143.198.206.191", "167.99.64.180", "47.107.224.89", "137.184.199.120", "206.189.81.41", "167.172.71.69", "137.184.70.190"]);
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(["143.198.206.191", "167.99.64.180", "47.107.224.89", "137.184.199.120", "206.189.81.41", "167.172.71.69", "137.184.70.190"]);
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 4 specific false positive scenarios for the ThreatFox: Aisuru IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Scheduled Endpoint Protection Scans by Admin Accounts
svc_antivirus or DOMAIN\AdminScan).User.Type = 'Service') and the process name matches MsMpEng.exe, DefenderSvc.exe, or CrowdStrike.exe. Additionally, exclude traffic occurring during the defined maintenance window (e.g., 02:00–04:00 UTC).Scenario: Legitimate Cloud Backup and Synchronization Jobs
443 (HTTPS) and the process name belongs to known backup utilities (vbr.exe, rubrik-agent.exe, or OneDrive.exe). Furthermore, exclude alerts generated by hosts tagged with “Backup Server” in your CMDB.Scenario: Software Deployment via Configuration Management Tools