← Back to SOC feed Coverage →

ThreatFox: Aisuru IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEvents
elf-aisuruiocthreatfox
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ThreatFox →
Retrieved: 2026-07-09T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets adversary activity linked to the Aisuru threat actor by monitoring for specific indicators of compromise across network and endpoint logs within Azure Sentinel. Proactively hunting these seven high-severity IOCs is critical to identify early-stage intrusions and mitigate potential data exfiltration before the attacker establishes persistence in the environment.

IOC Summary

Malware Family: Aisuru Total IOCs: 7 IOC Types: ip:port, sha256_hash

TypeValueThreat TypeFirst SeenConfidence
ip:port120[.]205[.]80[.]152:8080botnet_cc2026-07-09100%
ip:port159[.]203[.]1[.]105:34567botnet_cc2026-07-09100%
ip:port120[.]205[.]80[.]152:9034botnet_cc2026-07-09100%
ip:port217[.]60[.]195[.]155:80botnet_cc2026-07-0975%
ip:port217[.]60[.]195[.]155:4444payload_delivery2026-07-0975%
sha256_hash15f446470be5c470e41b42b8d18f36c10cb6efbac3c69f1f7fd21a1496e4a7a6payload2026-07-0975%
ip:port152[.]42[.]214[.]91:8080botnet_cc2026-07-09100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Aisuru
let malicious_ips = dynamic(["217.60.195.155", "152.42.214.91", "120.205.80.152", "159.203.1.105"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc

KQL: Ip Hunt Device

// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["217.60.195.155", "152.42.214.91", "120.205.80.152", "159.203.1.105"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Aisuru
let malicious_hashes = dynamic(["15f446470be5c470e41b42b8d18f36c10cb6efbac3c69f1f7fd21a1496e4a7a6"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceFileEventsEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are 5 specific false positive scenarios for the ThreatFox: Aisuru IOCs detection rule, tailored for an enterprise environment:

Original source: https://threatfox.abuse.ch/browse/malware/elf.aisuru/