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

Hunt Hypothesis

This hunt hypothesis targets AsyncRAT activity by identifying remote command execution and data exfiltration patterns associated with known IOCs delivered through phishing vectors or exploit kits. Proactively hunting for these indicators in Azure Sentinel is critical to detect early-stage compromises that could lead to persistent unauthorized access and sensitive data theft before the adversary establishes a foothold.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port107[.]173[.]47[.]158:7707botnet_cc2026-08-2675%
ip:port104[.]243[.]248[.]63:400botnet_cc2026-08-2675%
ip:port101[.]99[.]92[.]134:4788botnet_cc2026-08-2675%
ip:port52[.]29[.]243[.]233:9000botnet_cc2026-08-26100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AsyncRAT
let malicious_ips = dynamic(["107.173.47.158", "52.29.243.233", "101.99.92.134", "104.243.248.63"]);
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(["107.173.47.158", "52.29.243.233", "101.99.92.134", "104.243.248.63"]);
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

False Positive Scenarios for “ThreatFox: AsyncRAT IOCs” Detection Rule

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