← 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-08-19T11:00:00Z · Confidence: high

Hunt Hypothesis

This detection rule identifies indicators of compromise linked to the AsyncRAT remote access trojan, which adversaries deploy to establish persistent command and control channels on compromised endpoints. Proactively hunting for these specific IOCs within Azure Sentinel is critical because AsyncRAT’s ability to execute arbitrary commands and exfiltrate data makes early identification essential for preventing lateral movement and sensitive information leakage.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port185[.]34[.]147[.]35:443botnet_cc2026-08-19100%
ip:port185[.]34[.]147[.]33:443botnet_cc2026-08-19100%
ip:port159[.]203[.]69[.]210:12262botnet_cc2026-08-1975%
ip:port185[.]235[.]137[.]195:6606botnet_cc2026-08-1975%
ip:port41[.]100[.]227[.]210:3030botnet_cc2026-08-1975%
ip:port121[.]200[.]216[.]84:443botnet_cc2026-08-19100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["159.203.69.210", "121.200.216.84", "41.100.227.210", "185.34.147.33", "185.34.147.35", "185.235.137.195"]);
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(["159.203.69.210", "121.200.216.84", "41.100.227.210", "185.34.147.33", "185.34.147.35", "185.235.137.195"]);
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

Here are 5 specific false positive scenarios for the ThreatFox: AsyncRAT IOCs detection rule, including targeted filters and exclusions suitable for an enterprise environment:

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