← Back to SOC feed Coverage →

ThreatFox: NonEuclid RAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEvents
backdooriocthreatfoxwin-noneuclid_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 hypothesis targets adversary behavior where threat actors deploy the NonEuclid Remote Access Trojan (RAT) to establish persistent command-and-control channels and exfiltrate sensitive data via its known indicators of compromise. A SOC team should proactively hunt for these specific IOCs within Azure Sentinel to rapidly identify early-stage infections, as NonEuclid’s sophisticated evasion capabilities often allow it to remain undetected by standard signature-based defenses until significant damage occurs.

IOC Summary

Malware Family: NonEuclid RAT Total IOCs: 14 IOC Types: ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port91[.]92[.]47[.]228:1383botnet_cc2026-08-1475%
ip:port91[.]92[.]47[.]228:1394botnet_cc2026-08-1475%
ip:port91[.]92[.]47[.]228:7000botnet_cc2026-08-1475%
ip:port91[.]92[.]47[.]228:8848botnet_cc2026-08-1475%
ip:port91[.]92[.]47[.]228:1297botnet_cc2026-08-1475%
ip:port91[.]92[.]47[.]228:1313botnet_cc2026-08-1475%
ip:port91[.]92[.]47[.]228:1329botnet_cc2026-08-1475%
ip:port91[.]92[.]47[.]228:1342botnet_cc2026-08-1475%
ip:port91[.]92[.]47[.]228:1360botnet_cc2026-08-1475%
ip:port91[.]92[.]47[.]228:1366botnet_cc2026-08-1475%
ip:port91[.]92[.]47[.]228:1372botnet_cc2026-08-1475%
ip:port91[.]92[.]47[.]228:1180botnet_cc2026-08-1475%
ip:port91[.]92[.]47[.]228:1293botnet_cc2026-08-1475%
ip:port91[.]92[.]47[.]228:1154botnet_cc2026-08-1475%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - NonEuclid RAT
let malicious_ips = dynamic(["91.92.47.228"]);
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.47.228"]);
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: NonEuclid RAT IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:

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