This detection rule identifies the presence of Aisuru malware by monitoring for encrypted command-and-control communications and data exfiltration patterns directed at specific IP:port pairs associated with known threat indicators. Proactive hunting for these behaviors in Azure Sentinel is critical to rapidly isolate compromised assets before sensitive data is fully extracted, given the malware’s ability to maintain covert operations through standard network traffic channels.
Malware Family: Aisuru Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 162[.]243[.]240[.]81:8443 | botnet_cc | 2026-08-13 | 100% |
| ip:port | 38[.]207[.]178[.]195:12345 | botnet_cc | 2026-08-13 | 100% |
| ip:port | 198[.]211[.]96[.]18:8443 | botnet_cc | 2026-08-13 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Aisuru
let malicious_ips = dynamic(["38.207.178.195", "198.211.96.18", "162.243.240.81"]);
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(["38.207.178.195", "198.211.96.18", "162.243.240.81"]);
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 in an enterprise environment, along with targeted filtering strategies:
Scenario: Cloud Backup Agent Heartbeats
Source Host and Destination Service Name. Exclude traffic where the source process is identified as vbr.exe (Veeam) or rubrik-agent.exe, regardless of the destination IP, provided the connection duration exceeds 5 minutes (indicating a long-lived session rather than a bursty C2 beacon).Scenario: Scheduled Software Update Deployments
Process Name is ccmexec.exe (SCCM) or jamf.bin, and restrict the alert window to exclude known maintenance windows (e.g., 02:00–04:00 UTC daily).