This hunt detects adversary activity involving specific Indicators of Compromise (IOCs) linked to the Aisuru threat actor, which are known to target cloud and enterprise environments. Proactively hunting for these IOCs in Azure Sentinel is critical because early identification allows the SOC team to isolate compromised assets before the attacker establishes persistence or exfiltrates sensitive data.
Malware Family: Aisuru Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 206[.]189[.]81[.]41:9035 | botnet_cc | 2026-08-10 | 100% |
| ip:port | 161[.]35[.]48[.]40:12345 | botnet_cc | 2026-08-10 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Aisuru
let malicious_ips = dynamic(["206.189.81.41", "161.35.48.40"]);
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(["206.189.81.41", "161.35.48.40"]);
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 and corresponding filters for the ThreatFox: Aisuru IOCs detection rule in an enterprise environment:
Scenario: Security Team Manual Threat Intelligence Testing
source_host or source_ip belongs to the dedicated “SOC-Testing” subnet (e.g., 10.20.x.x) and the event type is marked as "TestRun" or "ManualQuery".Scenario: Scheduled Antivirus Definition Updates via Intune
Antimalware service on thousands of endpoints scans and downloads these definitions, generating logs that match the Aisuru IOCs as part of the update process rather than a live threat detection.process_name is "MsMpEng.exe" (Windows Defender) or "IntuneAgent.exe" and the action_type is "DefinitionUpdate".Scenario: Endpoint Detection and Response (EDR) Baseline Scans