← Back to SOC feed Coverage →

ThreatFox: AsyncRAT IOCs

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

Hunt Hypothesis

This detection rule identifies potential AsyncRAT remote access trojan activity by monitoring for specific indicators of compromise such as unique process executions and network connections linked to known threat signatures. Proactively hunting for these IOCs in Azure Sentinel is critical because AsyncRAT enables adversaries to establish persistent, stealthy command-and-control channels that can facilitate data exfiltration and lateral movement before traditional alerts trigger.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port185[.]34[.]147[.]32:443botnet_cc2026-08-27100%
domainmanikandan83.mysynology.netbotnet_cc2026-08-27100%
ip:port199[.]245[.]176[.]147:7707botnet_cc2026-08-2775%
ip:port158[.]94[.]210[.]136:7707botnet_cc2026-08-2775%
ip:port105[.]159[.]4[.]49:5000botnet_cc2026-08-2775%
ip:port105[.]159[.]4[.]49:7070botnet_cc2026-08-2775%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["158.94.210.136", "105.159.4.49", "185.34.147.32", "199.245.176.147"]);
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(["158.94.210.136", "105.159.4.49", "185.34.147.32", "199.245.176.147"]);
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(["manikandan83.mysynology.net"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

False Positive Scenarios for “ThreatFox: AsyncRAT IOCs”

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