← Back to SOC feed Coverage →

ThreatFox: AsyncRAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsDnsEvents
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-07-18T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt detects adversary behavior consistent with AsyncRAT malware by identifying network connections and file artifacts matching six specific Indicators of Compromise (IOCs). Proactively hunting for these signals in Azure Sentinel is critical to rapidly identify active remote access trojans that could enable long-term data exfiltration and command-and-control communications before they escalate into a full breach.

IOC Summary

Malware Family: AsyncRAT Total IOCs: 6 IOC Types: ip:port, domain, md5_hash

TypeValueThreat TypeFirst SeenConfidence
domainxoso66edu.combotnet_cc2026-07-1875%
ip:port46[.]246[.]12[.]19:2703botnet_cc2026-07-1875%
domainvxoso66.combotnet_cc2026-07-1875%
ip:port2[.]59[.]132[.]84:7434botnet_cc2026-07-1875%
ip:port198[.]23[.]185[.]95:1000botnet_cc2026-07-1875%
md5_hash81961b2997cdf859ab8b96c3dd0afb07payload2026-07-1795%

KQL: Ip Hunt

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

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - AsyncRAT
let malicious_domains = dynamic(["xoso66edu.com", "vxoso66.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - AsyncRAT
let malicious_hashes = dynamic(["81961b2997cdf859ab8b96c3dd0afb07"]);
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
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are 5 specific false positive scenarios for the ThreatFox: AsyncRAT IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:

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