This hunt detects adversary activity linked to the Aisuru threat campaign by identifying network and endpoint interactions matching three specific Indicators of Compromise (IOCs). Proactively hunting for these signals in Azure Sentinel is critical because early detection of Aisuru’s unique IOCs enables rapid containment before the adversary can establish persistence or exfiltrate sensitive data.
Malware Family: Aisuru Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 139[.]59[.]144[.]8:9034 | botnet_cc | 2026-08-07 | 100% |
| ip:port | 139[.]59[.]144[.]8:8443 | botnet_cc | 2026-08-07 | 100% |
| ip:port | 159[.]203[.]172[.]232:8080 | botnet_cc | 2026-08-07 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Aisuru
let malicious_ips = dynamic(["139.59.144.8", "159.203.172.232"]);
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(["139.59.144.8", "159.203.172.232"]);
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 |
Scenario: Enterprise Endpoint Protection Updates
Process_Name matches FalconSensor.exe, MsMpEng.exe, or DefenderService.exe and the Parent_Process_Name is a known system service (e.g., svchost.exe). Additionally, add a filter to exclude traffic originating from internal update server subnets (e.g., 10.20.50.0/24) if the IOC is an IP address.Scenario: Automated Backup and Archiving Jobs
Scheduled_Task_Name containing keywords like “Veeam”, “Commvault”, or “BackupJob”. Furthermore, filter out events where the User_Account is a dedicated service account (e.g., svc_backup_admin) and the destination port matches standard HTTPS (443) or SFTP (22).