This hunt detects adversary activity involving specific Indicators of Compromise (IOCs) linked to the Aisuru threat actor, enabling the identification of potential reconnaissance or initial access attempts within the environment. Proactively hunting for these IOCs in Azure Sentinel is critical because early detection of known Aisuru signatures allows the SOC team to rapidly isolate affected assets and mitigate risks before the adversary establishes a persistent foothold.
Malware Family: Aisuru Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 46[.]101[.]146[.]87:9034 | botnet_cc | 2026-08-29 | 100% |
| ip:port | 43[.]129[.]180[.]120:12345 | botnet_cc | 2026-08-29 | 100% |
| ip:port | 104[.]248[.]41[.]207:8080 | botnet_cc | 2026-08-29 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Aisuru
let malicious_ips = dynamic(["46.101.146.87", "104.248.41.207", "43.129.180.120"]);
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(["46.101.146.87", "104.248.41.207", "43.129.180.120"]);
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 exclusion strategies for the ThreatFox: Aisuru IOCs detection rule in an enterprise environment:
Endpoint Protection Management Console Updates
Management-Server-01) or filter out traffic where the Process Name matches the management agent service (e.g., FalconSensor.exe, MsSenseService.exe) running under a known administrative account.Scheduled Threat Intelligence Ingestion Jobs
ThreatFeed_Ingestion_Job) or add an IP range exclusion for the SOAR engine’s internal interface, ensuring alerts only fire outside of the defined maintenance window.Security Research & Threat Hunting Queries