← Back to SOC feed Coverage →

ThreatFox: AsyncRAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEvents
backdooriocthreatfoxwin-asyncrat
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-09-20T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt identifies potential AsyncRAT infections by correlating 14 known indicators of compromise, such as specific file hashes and network connections, to detect the presence of this remote access trojan. Proactively hunting for these IOCs in Azure Sentinel is critical because AsyncRAT provides adversaries with persistent, remote control over compromised endpoints, enabling data exfiltration and lateral movement that can remain undetected without targeted investigation.

IOC Summary

Malware Family: AsyncRAT Total IOCs: 14 IOC Types: ip:port, sha256_hash

TypeValueThreat TypeFirst SeenConfidence
ip:port89[.]153[.]179[.]188:24996botnet_cc2026-09-2075%
sha256_hash3610fcc54a204281b09095004f02b674cd75bdd83996a1428fdef85645eff3e1payload2026-09-20100%
ip:port194[.]26[.]192[.]153:2002botnet_cc2026-09-2075%
ip:port185[.]34[.]147[.]35:8808botnet_cc2026-09-2075%
ip:port185[.]34[.]147[.]34:8808botnet_cc2026-09-2075%
ip:port185[.]34[.]147[.]33:8808botnet_cc2026-09-2075%
ip:port185[.]34[.]147[.]32:8808botnet_cc2026-09-2075%
ip:port185[.]34[.]147[.]31:8808botnet_cc2026-09-2075%
ip:port185[.]34[.]147[.]32:7707botnet_cc2026-09-2075%
ip:port185[.]34[.]147[.]31:7707botnet_cc2026-09-2075%
ip:port128[.]90[.]59[.]115:7070botnet_cc2026-09-2075%
ip:port121[.]200[.]216[.]74:8808botnet_cc2026-09-20100%
ip:port91[.]92[.]241[.]149:90botnet_cc2026-09-1975%
ip:port67[.]43[.]56[.]25:6606botnet_cc2026-09-1975%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["89.153.179.188", "185.34.147.31", "185.34.147.33", "185.34.147.34", "121.200.216.74", "91.92.241.149", "67.43.56.25", "194.26.192.153", "185.34.147.32", "128.90.59.115", "185.34.147.35"]);
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(["89.153.179.188", "185.34.147.31", "185.34.147.33", "185.34.147.34", "121.200.216.74", "91.92.241.149", "67.43.56.25", "194.26.192.153", "185.34.147.32", "128.90.59.115", "185.34.147.35"]);
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 - AsyncRAT
let malicious_hashes = dynamic(["3610fcc54a204281b09095004f02b674cd75bdd83996a1428fdef85645eff3e1"]);
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

Original source: https://threatfox.abuse.ch/browse/malware/win.asyncrat/