This hunt targets known indicators of compromise associated with the Aisuru threat actor to identify potential lateral movement or persistence mechanisms within the environment. Proactively hunting for these specific IOCs allows the SOC to detect early-stage intrusions and mitigate the risk of high-severity threats before they escalate into broader compromise.
Malware Family: Aisuru Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 43[.]157[.]63[.]92:8080 | botnet_cc | 2026-09-17 | 100% |
| ip:port | 43[.]157[.]63[.]92:9034 | botnet_cc | 2026-09-17 | 100% |
| ip:port | 43[.]157[.]63[.]92:12345 | botnet_cc | 2026-09-17 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Aisuru
let malicious_ips = dynamic(["43.157.63.92"]);
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.157.63.92"]);
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 |
java.exe, node.exe, or python.exe running under a service account) and the destination path is within a designated build or artifact directory (e.g., C:\Jenkins\workspace\ or /var/lib/jenkins/).powershell.exe or pwsh.exe and the parent process is a scheduled task service (svchost.exe with Tasks or Task Scheduler in the command line) or a known admin tool (e.g., plink.exe, ssh.exe) connecting to an internal IP range (e.g., 10.0.0.0/8, 172.16.0.0/12).