This hunt targets adversary activity involving specific Indicators of Compromise (IOCs) linked to the Aisuru threat, which may indicate early-stage reconnaissance or lateral movement within the network. Proactively hunting for these signatures in Azure Sentinel is critical because Aisuru’s high-severity profile suggests a sophisticated actor capable of exploiting cloud-specific vulnerabilities before traditional alerts trigger.
Malware Family: Aisuru Total IOCs: 6 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 138[.]197[.]155[.]246:12345 | botnet_cc | 2026-07-07 | 100% |
| ip:port | 159[.]203[.]35[.]164:34567 | botnet_cc | 2026-07-07 | 100% |
| ip:port | 157[.]245[.]59[.]180:5555 | botnet_cc | 2026-07-07 | 100% |
| ip:port | 159[.]203[.]35[.]164:12345 | botnet_cc | 2026-07-07 | 100% |
| ip:port | 138[.]197[.]155[.]246:9035 | botnet_cc | 2026-07-07 | 100% |
| ip:port | 159[.]203[.]35[.]164:37215 | botnet_cc | 2026-07-07 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Aisuru
let malicious_ips = dynamic(["159.203.35.164", "138.197.155.246", "157.245.59.180"]);
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(["159.203.35.164", "138.197.155.246", "157.245.59.180"]);
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 suggested filters or exclusions:
Scheduled Security Scans by Endpoint Protection Agents
C:\ProgramData\Aisuru directory. During this process, the agent generates network connections to internal threat intelligence feeds that match Aisuru IOCs, or reads files containing embedded hashes that trigger the hunt package.svc_defender_scan) and restrict the rule scope to exclude the known IP ranges of internal threat intelligence update servers.Patch Management Deployments via Configuration Tools
Patch-Window attribute during the defined maintenance window (e.g., Sundays 02:00–06:00 UTC) or whitelist the IP addresses of the configuration management servers and artifact repositories.Automated Compliance Auditing Scripts