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

Hunt Hypothesis

This hypothesis targets the presence of AsyncRAT, a remote access trojan that grants adversaries persistent control to exfiltrate data and execute commands, by correlating its known indicators of compromise against Azure Sentinel telemetry. Proactively hunting for these IOCs is critical because AsyncRAT often operates stealthily to maintain long-term access, allowing attackers to pivot through internal networks before traditional detection mechanisms trigger an alert.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port91[.]92[.]42[.]16:5996botnet_cc2026-09-05100%
ip:port80[.]190[.]77[.]86:1009botnet_cc2026-09-0575%
ip:port212[.]43[.]153[.]129:7707botnet_cc2026-09-0575%
ip:port172[.]111[.]232[.]18:7784botnet_cc2026-09-0575%
domainpw.sonqhong.combotnet_cc2026-09-0575%
ip:port38[.]247[.]165[.]127:8091botnet_cc2026-09-0475%
md5_hash56309608ad8e762d1ca1e8287ee5271fpayload2026-09-0495%
sha256_hash7aaee32a94cf4a6b40140221bdef3b10de5620cd3ff2f41ff0710d31c9302545payload2026-09-0495%
sha1_hash1e8a2d8a27607c7a8c19f321ce2fe48001604fa6payload2026-09-0495%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["212.43.153.129", "172.111.232.18", "38.247.165.127", "91.92.42.16", "80.190.77.86"]);
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(["212.43.153.129", "172.111.232.18", "38.247.165.127", "91.92.42.16", "80.190.77.86"]);
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(["pw.sonqhong.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(["56309608ad8e762d1ca1e8287ee5271f", "7aaee32a94cf4a6b40140221bdef3b10de5620cd3ff2f41ff0710d31c9302545", "1e8a2d8a27607c7a8c19f321ce2fe48001604fa6"]);
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

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