← Back to SOC feed Coverage →

ThreatFox: Unknown RAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEvents
backdooriocthreatfoxunknown_rat
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-07T11:00:00Z · Confidence: high

Hunt Hypothesis

This rule detects the presence of known indicators of compromise associated with unidentified Remote Access Trojans (RATs), signaling potential unauthorized remote control or data exfiltration by an adversary. Proactively hunting for these IOCs in Azure Sentinel is critical to identify stealthy malware infections early, as unknown RATs often lack distinct behavioral signatures and can persist undetected until they establish a foothold for lateral movement or payload delivery.

IOC Summary

Malware Family: Unknown RAT Total IOCs: 4 IOC Types: ip:port, sha256_hash

TypeValueThreat TypeFirst SeenConfidence
sha256_hash729454cfdc30e2cce222f0a6c67adfd268ac8971068fdef72477e212497f2a2dpayload2026-09-0775%
ip:port138[.]199[.]38[.]136:4522botnet_cc2026-09-0775%
ip:port102[.]129[.]180[.]86:4521botnet_cc2026-09-0775%
ip:port91[.]92[.]40[.]108:9111botnet_cc2026-09-0775%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown RAT
let malicious_ips = dynamic(["91.92.40.108", "102.129.180.86", "138.199.38.136"]);
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(["91.92.40.108", "102.129.180.86", "138.199.38.136"]);
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 - Unknown RAT
let malicious_hashes = dynamic(["729454cfdc30e2cce222f0a6c67adfd268ac8971068fdef72477e212497f2a2d"]);
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

Original source: https://threatfox.abuse.ch/browse/malware/unknown_rat/