This hunt targets the presence of eight known indicators of compromise associated with the Aisuru threat actor, which are frequently used for initial access and command-and-control operations. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify potential intrusions early, as Aisuru is a high-severity threat group known for targeting cloud environments and leveraging specific infrastructure patterns that may otherwise go unnoticed in standard alerting.
Malware Family: Aisuru Total IOCs: 8 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 159[.]65[.]83[.]2:34567 | botnet_cc | 2026-09-21 | 100% |
| ip:port | 167[.]71[.]45[.]235:34567 | botnet_cc | 2026-09-21 | 100% |
| ip:port | 46[.]101[.]36[.]181:8080 | botnet_cc | 2026-09-21 | 100% |
| ip:port | 46[.]101[.]36[.]181:9034 | botnet_cc | 2026-09-21 | 100% |
| ip:port | 209[.]38[.]218[.]95:8080 | botnet_cc | 2026-09-21 | 100% |
| ip:port | 144[.]126[.]234[.]230:9034 | botnet_cc | 2026-09-21 | 100% |
| ip:port | 178[.]62[.]118[.]210:8080 | botnet_cc | 2026-09-21 | 100% |
| ip:port | 178[.]128[.]167[.]82:8080 | botnet_cc | 2026-09-21 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Aisuru
let malicious_ips = dynamic(["159.65.83.2", "144.126.234.230", "178.128.167.82", "178.62.118.210", "209.38.218.95", "167.71.45.235", "46.101.36.181"]);
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.65.83.2", "144.126.234.230", "178.128.167.82", "178.62.118.210", "209.38.218.95", "167.71.45.235", "46.101.36.181"]);
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 |
svchost.exe, services.exe) and the executable path resides in standard vendor directories (e.g., C:\Program Files\CrowdStrike\, C:\Program Files\SentinelOne\).%TEMP% or %APPDATA% directory that matches a file path or hash IOC associated with Aisuru’s staging techniques.
\Temp\ or \AppData\Local\Temp\ and the creation time is within the execution window of a known scheduled task (e.g., “Daily Cleanup,” “Log Rotation”) identified by its task name in the Windows Task Scheduler.7z.exe, tar.exe, or a custom build tool) for package extraction or compilation in a user’s home directory or a non-standard project folder, triggering a file hash or process name IOC.
C:\Users\<username>\Projects\) or C:\Users\<username>\Downloads\, and the parent process is an IDE or terminal emulator (e.g., code.exe, `powershell