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 environment. Proactively hunting for these IOCs in Azure Sentinel is critical because their high severity rating suggests a potential immediate risk that requires rapid containment before adversaries can establish persistence or exfiltrate sensitive data.
Malware Family: Aisuru Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 43[.]128[.]113[.]133:34567 | botnet_cc | 2026-08-18 | 100% |
| ip:port | 43[.]134[.]49[.]218:34567 | botnet_cc | 2026-08-18 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Aisuru
let malicious_ips = dynamic(["43.134.49.218", "43.128.113.133"]);
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(["43.134.49.218", "43.128.113.133"]);
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, including targeted filters and exclusions suitable for an enterprise environment:
Scenario: Antivirus Engine Updates via Scheduled Task
Task Scheduler: CrowdStrike_Update) will generate a match.FalconService.exe or MsMpEng.exe) and Parent Process (svchost.exe). Additionally, exclude traffic originating from the specific update server IP ranges defined in the vendor’s documentation during maintenance windows (e.g., 02:00–04:00 AM local time).Scenario: Security Information and Event Management (SIEM) Data Ingestion
SIEM-Management subnet (e.g., 10.20.50.0/24). Alternatively, filter by Process Path, ensuring exclusions apply only if the executable path contains \Program Files\Splunk\bin\ or \IBM\QRadar\.**Scenario: Third-Party EDR