This hunt targets adversary activity linked to the Aisuru threat actor by correlating network and endpoint telemetry against a specific set of twelve high-fidelity Indicators of Compromise (IOCs). Proactively hunting for these IOCs in Azure Sentinel is critical because early detection of known Aisuru artifacts allows the SOC team to identify potential lateral movement or command-and-control communications before they escalate into full-scale incidents.
Malware Family: Aisuru Total IOCs: 12 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 159[.]203[.]35[.]164:8080 | botnet_cc | 2026-07-04 | 100% |
| ip:port | 165[.]22[.]109[.]43:9034 | botnet_cc | 2026-07-04 | 100% |
| ip:port | 168[.]144[.]130[.]22:9035 | botnet_cc | 2026-07-04 | 100% |
| ip:port | 165[.]232[.]172[.]200:8443 | botnet_cc | 2026-07-04 | 100% |
| ip:port | 159[.]203[.]35[.]164:5555 | botnet_cc | 2026-07-04 | 100% |
| ip:port | 165[.]22[.]109[.]43:8080 | botnet_cc | 2026-07-04 | 100% |
| ip:port | 138[.]197[.]155[.]246:8080 | botnet_cc | 2026-07-04 | 100% |
| ip:port | 138[.]197[.]155[.]246:8443 | botnet_cc | 2026-07-04 | 100% |
| ip:port | 168[.]144[.]130[.]22:9034 | botnet_cc | 2026-07-04 | 100% |
| ip:port | 165[.]22[.]109[.]43:5555 | botnet_cc | 2026-07-04 | 100% |
| ip:port | 159[.]203[.]35[.]164:8443 | botnet_cc | 2026-07-04 | 100% |
| ip:port | 165[.]22[.]109[.]43:8443 | botnet_cc | 2026-07-04 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Aisuru
let malicious_ips = dynamic(["168.144.130.22", "159.203.35.164", "165.232.172.200", "138.197.155.246", "165.22.109.43"]);
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.130.22", "159.203.35.164", "165.232.172.200", "138.197.155.246", "165.22.109.43"]);
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:
Enterprise Endpoint Protection Scanning
C:\Program Files\Aisuru directory. During this process, the scanner extracts and analyzes internal configuration files that contain embedded Aisuru IOCs, triggering the rule as if an external threat were present.svc-crowdstrike, LocalService) when accessing known application paths (C:\Program Files\Aisuru or C:\Windows\System32\drivers\aisuru.sys).Patch Management and Software Deployment
ccmexec.exe or ansible-runner, and the destination file path matches the Aisuru update repository URL.Internal Security Baseline Audits