← Back to SOC feed Coverage →

ThreatFox: Overlord RAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEvents
backdooriocthreatfoxwin-overlord
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-30T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt hypothesis targets adversaries leveraging Overlord RAT to establish covert command-and-control channels through specific IP:port pairs following initial compromise via phishing or exploit kits. Proactive hunting in Azure Sentinel is critical to detect early-stage lateral movement and data exfiltration attempts before attackers can fully manipulate systems and extract sensitive information.

IOC Summary

Malware Family: Overlord RAT Total IOCs: 11 IOC Types: ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port45[.]92[.]1[.]46:5173botnet_cc2026-07-3050%
ip:port176[.]96[.]139[.]116:5173botnet_cc2026-07-3050%
ip:port194[.]26[.]192[.]210:5173botnet_cc2026-07-3050%
ip:port135[.]181[.]128[.]187:443botnet_cc2026-07-3050%
ip:port64[.]89[.]163[.]84:5173botnet_cc2026-07-3050%
ip:port104[.]249[.]10[.]76:5173botnet_cc2026-07-3050%
ip:port85[.]11[.]167[.]56:5173botnet_cc2026-07-3050%
ip:port77[.]110[.]110[.]117:5173botnet_cc2026-07-3050%
ip:port193[.]233[.]126[.]136:5173botnet_cc2026-07-3050%
ip:port104[.]249[.]10[.]18:5173botnet_cc2026-07-3050%
ip:port89[.]19[.]223[.]95:5173botnet_cc2026-07-3050%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Overlord RAT
let malicious_ips = dynamic(["104.249.10.18", "135.181.128.187", "64.89.163.84", "77.110.110.117", "194.26.192.210", "104.249.10.76", "89.19.223.95", "176.96.139.116", "45.92.1.46", "193.233.126.136", "85.11.167.56"]);
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(["104.249.10.18", "135.181.128.187", "64.89.163.84", "77.110.110.117", "194.26.192.210", "104.249.10.76", "89.19.223.95", "176.96.139.116", "45.92.1.46", "193.233.126.136", "85.11.167.56"]);
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

Here are 5 specific false positive scenarios for the ThreatFox: Overlord RAT IOCs detection rule, including targeted filters and exclusions tailored for an enterprise environment:

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