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

Hunt Hypothesis

This hunt targets adversary behavior where malicious actors deploy AsyncRAT remote access trojans to establish persistent footholds and exfiltrate sensitive data via specific network indicators. Proactively hunting for these seven IOCs in Azure Sentinel is critical to rapidly identify early-stage infections before the malware can execute its full command-and-control capabilities across the enterprise environment.

IOC Summary

Malware Family: AsyncRAT Total IOCs: 7 IOC Types: ip:port, domain, sha256_hash, md5_hash, sha1_hash

TypeValueThreat TypeFirst SeenConfidence
ip:port45[.]32[.]90[.]122:6606botnet_cc2026-07-1675%
ip:port43[.]225[.]157[.]146:7707botnet_cc2026-07-1675%
ip:port217[.]60[.]241[.]10:8808botnet_cc2026-07-1675%
sha1_hash9b225681a471b474fde2cca61ff61498a7c7f9e8payload2026-07-1695%
md5_hash2b46ed6e01f2baae933707d06704d14cpayload2026-07-1695%
sha256_hashe6d51d45edea7591b826b2d703c20a426fffa27a022c0156916ae9c35245bd07payload2026-07-1695%
domainorthodontie-ge.chbotnet_cc2026-07-1675%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["43.225.157.146", "45.32.90.122", "217.60.241.10"]);
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(["43.225.157.146", "45.32.90.122", "217.60.241.10"]);
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(["orthodontie-ge.ch"]);
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(["9b225681a471b474fde2cca61ff61498a7c7f9e8", "2b46ed6e01f2baae933707d06704d14c", "e6d51d45edea7591b826b2d703c20a426fffa27a022c0156916ae9c35245bd07"]);
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 specific false positive scenarios for the ThreatFox: AsyncRAT IOCs detection rule, tailored for an enterprise environment:

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