This hunt detects adversary activity involving specific Indicators of Compromise (IOCs) linked to the Aisuru threat actor, which may signal early-stage reconnaissance or lateral movement within the network. The SOC team should proactively hunt for these IOCs in Azure Sentinel to rapidly identify and contain potential intrusions before they escalate into significant security incidents.
Malware Family: Aisuru Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 167[.]99[.]64[.]180:9035 | botnet_cc | 2026-08-08 | 100% |
| ip:port | 139[.]59[.]144[.]8:8080 | botnet_cc | 2026-08-08 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Aisuru
let malicious_ips = dynamic(["167.99.64.180", "139.59.144.8"]);
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(["167.99.64.180", "139.59.144.8"]);
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 5 specific false positive scenarios for the ThreatFox: Aisuru IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Enterprise Antivirus Definition Updates
MsMpEng.exe (Microsoft) and falcon.sys (CrowdStrike). Additionally, exclude network traffic originating from these processes if the destination IP matches the known vendor update server range (e.g., 13.107.x.x for Microsoft or 44.238.x.x for CrowdStrike) rather than the specific Aisuru IOC list.Scenario: Scheduled Backup and Archiving Jobs
VeeamService or RubrikAgent). Alternatively, filter out alerts where the source process is identified as `vbr.exe