← Back to SOC feed Coverage →

ThreatFox: AsyncRAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEvents
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-19T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets the presence of known AsyncRAT indicators, which are frequently used by adversaries to establish persistent remote access and execute command-and-control operations within compromised environments. Proactively hunting for these IOCs in Azure Sentinel is critical because AsyncRAT is a high-severity threat often leveraged in targeted intrusions, allowing the SOC to identify and contain stealthy RAT deployments before they escalate to lateral movement or data exfiltration.

IOC Summary

Malware Family: AsyncRAT Total IOCs: 4 IOC Types: ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port91[.]92[.]241[.]149:7707botnet_cc2026-09-1975%
ip:port91[.]92[.]241[.]149:9090botnet_cc2026-09-1975%
ip:port188[.]137[.]227[.]133:8808botnet_cc2026-09-1975%
ip:port102[.]220[.]160[.]198:7707botnet_cc2026-09-1975%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["102.220.160.198", "188.137.227.133", "91.92.241.149"]);
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(["102.220.160.198", "188.137.227.133", "91.92.241.149"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure 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/