← Back to SOC feed Coverage →

ThreatFox: Unknown RAT IOCs

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

Hunt Hypothesis

This hunt detects potential Remote Access Trojan (RAT) activity by identifying indicators of compromise from the ThreatFox feed that may represent unknown adversary infrastructure. Proactively hunting for these IOCs in Azure Sentinel is critical to uncover stealthy initial access or command-and-control communications before they escalate into broader lateral movement or data exfiltration incidents.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port194[.]156[.]79[.]203:4449botnet_cc2026-08-0475%
ip:port195[.]177[.]94[.]112:443botnet_cc2026-08-0475%
ip:port94[.]154[.]32[.]30:443botnet_cc2026-08-0475%
ip:port195[.]177[.]94[.]91:443botnet_cc2026-08-0475%
ip:port158[.]94[.]211[.]183:443botnet_cc2026-08-0475%
ip:port104[.]249[.]10[.]76:443botnet_cc2026-08-0475%
ip:port104[.]249[.]10[.]205:443botnet_cc2026-08-0475%
ip:port104[.]239[.]66[.]228:443botnet_cc2026-08-0475%
ip:port104[.]249[.]10[.]144:443botnet_cc2026-08-0475%
ip:port45[.]83[.]28[.]88:443botnet_cc2026-08-0475%
ip:port217[.]217[.]97[.]53:443botnet_cc2026-08-0475%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown RAT
let malicious_ips = dynamic(["104.239.66.228", "194.156.79.203", "45.83.28.88", "195.177.94.91", "104.249.10.76", "158.94.211.183", "94.154.32.30", "217.217.97.53", "195.177.94.112", "104.249.10.205", "104.249.10.144"]);
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.239.66.228", "194.156.79.203", "45.83.28.88", "195.177.94.91", "104.249.10.76", "158.94.211.183", "94.154.32.30", "217.217.97.53", "195.177.94.112", "104.249.10.205", "104.249.10.144"]);
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: Unknown RAT IOCs rule, including suggested filters and exclusions tailored for an enterprise environment:

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