← Back to SOC feed Coverage →

ThreatFox: Nanocore RAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEvents
backdooriocthreatfoxwin-nanocore
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-18T23:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets adversary behavior involving the deployment of Nanocore Remote Access Trojans (RAT) by detecting six specific Indicators of Compromise across network and endpoint telemetry. Proactively hunting for these IOCs in Azure Sentinel is critical to identify early-stage lateral movement and command-and-control communications before they escalate into full-scale data exfiltration incidents.

IOC Summary

Malware Family: Nanocore RAT Total IOCs: 6 IOC Types: md5_hash, sha1_hash, sha256_hash, ip:port

TypeValueThreat TypeFirst SeenConfidence
md5_hash036227aa4ccacd6153de68143e02f001payload2026-07-1895%
sha256_hashc1d7ce9290ee9a148ea430871f900a44511b8db374dedcb4d417072b54e48d07payload2026-07-1895%
sha1_hash746b7fc0665654244961885933decb7c3f7dc3a4payload2026-07-1895%
ip:port154[.]203[.]165[.]5:443botnet_cc2026-07-18100%
ip:port154[.]94[.]123[.]42:443botnet_cc2026-07-18100%
ip:port154[.]94[.]123[.]43:443botnet_cc2026-07-18100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Nanocore RAT
let malicious_ips = dynamic(["154.203.165.5", "154.94.123.43", "154.94.123.42"]);
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(["154.203.165.5", "154.94.123.43", "154.94.123.42"]);
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 - Nanocore RAT
let malicious_hashes = dynamic(["036227aa4ccacd6153de68143e02f001", "c1d7ce9290ee9a148ea430871f900a44511b8db374dedcb4d417072b54e48d07", "746b7fc0665654244961885933decb7c3f7dc3a4"]);
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

Here are specific false positive scenarios for the ThreatFox: Nanocore RAT IOCs detection rule, tailored for an enterprise environment:

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