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. Proactively hunting for these IOCs in Azure Sentinel is critical because Aisuru’s high-severity indicators often precede significant data exfiltration events that require immediate containment before they escalate into broader breaches.
Malware Family: Aisuru Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 161[.]35[.]48[.]40:5555 | botnet_cc | 2026-08-11 | 100% |
| ip:port | 38[.]207[.]178[.]195:34567 | botnet_cc | 2026-08-11 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Aisuru
let malicious_ips = dynamic(["161.35.48.40", "38.207.178.195"]);
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(["161.35.48.40", "38.207.178.195"]);
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, along with suggested filters and exclusions tailored for a legitimate enterprise environment:
Endpoint Protection Vendor Updates (CrowdStrike/SentinelOne)
Process Name (e.g., C:\Program Files\CrowdStrike\fs_qc.exe) and restrict the rule to exclude events where the Parent Process is the EDR service itself. Alternatively, add the specific update server domains of your EDR provider to the “Trusted Domains” allow-list within the ThreatFox integration settings.Scheduled Enterprise Backup Jobs (Veeam/Commvault)
User Account is a dedicated service account (e.g., svc_backup_admin) and the Process Path contains keywords like \Veeam\ or