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

Hunt Hypothesis

This detection rule identifies potential Remote Access Trojan (RAT) activity by monitoring for three specific Indicators of Compromise (IOCs) linked to an unknown threat actor. A proactive hunt is essential in Azure Sentinel to rapidly isolate these stealthy threats before they establish persistence or exfiltrate sensitive data, given the high severity and evolving nature of RAT-based attacks.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port45[.]83[.]31[.]84:443botnet_cc2026-08-1475%
ip:port124[.]198[.]131[.]91:443botnet_cc2026-08-1475%
ip:port217[.]217[.]97[.]11:443botnet_cc2026-08-1475%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown RAT
let malicious_ips = dynamic(["124.198.131.91", "217.217.97.11", "45.83.31.84"]);
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(["124.198.131.91", "217.217.97.11", "45.83.31.84"]);
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 4 specific false positive scenarios for the ThreatFox: Unknown RAT IOCs rule, along with targeted filtering strategies:

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