← 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-06-11T23:00:00Z · Confidence: high

Hunt Hypothesis

The detection identifies potential Nanocore RAT activity through known IOCs, indicating an adversary may be establishing persistence and command-and-control communication within the network. SOC teams should proactively hunt for this behavior to detect and mitigate early-stage malware infections before significant data exfiltration or system compromise occurs.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
sha256_hashc0b18beb746f408a76371760e64ab37b350419da5292a6fe5b9b83bf7e225257payload2026-06-1195%
sha1_hash87bc65dccd4cb91d55afc1afd257c23acd14570cpayload2026-06-1195%
md5_hasha59b7602663fb130c5a85507fbbe29a2payload2026-06-1195%
ip:port104[.]168[.]62[.]5:54984botnet_cc2026-06-1150%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Nanocore RAT
let malicious_ips = dynamic(["104.168.62.5"]);
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.168.62.5"]);
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(["c0b18beb746f408a76371760e64ab37b350419da5292a6fe5b9b83bf7e225257", "87bc65dccd4cb91d55afc1afd257c23acd14570c", "a59b7602663fb130c5a85507fbbe29a2"]);
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

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