← Back to SOC feed Coverage →

ThreatFox: AsyncRAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEvents
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-02T23:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets adversary behavior characterized by network connections to known AsyncRAT infrastructure, indicating potential remote access trojan deployment or command-and-control communication. Proactively hunting these specific indicators in Azure Sentinel is critical to identify early-stage compromises before the malware establishes persistence and exfiltrates sensitive data from the environment.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port172[.]94[.]18[.]103:70botnet_cc2026-07-0275%
md5_hash179e5c88bbd34e45830e7ee3610d5216payload2026-07-0295%
sha256_hash0aac658075b7d9e81419d0beaa3db796569bc14fd57512f4479fb36e9cc4c1a2payload2026-07-0295%
sha1_hashe6fa8fda487392419be240e2911e7c9c346b750cpayload2026-07-0295%
md5_hash538860d455edc8108e667b8498a41fe3payload2026-07-0295%
sha256_hashfe126b87922ff8049c4b19d6588324a3bb4874020b943e86de176445ebe7c7b9payload2026-07-0295%
sha1_hash6bbb36dc96230667e363d62881a6166ec67b8a89payload2026-07-0295%

KQL: Ip Hunt

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

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - AsyncRAT
let malicious_hashes = dynamic(["179e5c88bbd34e45830e7ee3610d5216", "0aac658075b7d9e81419d0beaa3db796569bc14fd57512f4479fb36e9cc4c1a2", "e6fa8fda487392419be240e2911e7c9c346b750c", "538860d455edc8108e667b8498a41fe3", "fe126b87922ff8049c4b19d6588324a3bb4874020b943e86de176445ebe7c7b9", "6bbb36dc96230667e363d62881a6166ec67b8a89"]);
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

References

False Positive Guidance

Here are 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/