← Back to SOC feed Coverage →

ThreatFox: NjRAT IOCs

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

Hunt Hypothesis

This hunt targets adversary behavior involving the deployment of NjRAT remote access trojan components by matching network and host artifacts against a curated set of eleven high-confidence indicators of compromise. Proactively hunting for these specific IOCs within Azure Sentinel is critical to identify early-stage lateral movement or command-and-control communications before they escalate into full-scale data exfiltration incidents.

IOC Summary

Malware Family: NjRAT Total IOCs: 11 IOC Types: sha1_hash, sha256_hash, md5_hash, ip:port

TypeValueThreat TypeFirst SeenConfidence
sha1_hash2f299b8f3839e4259a27f4b1d8af0d2473cfe7e0payload2026-06-2995%
md5_hash1e3fd12fee9d2fd27642ed24cff01338payload2026-06-2995%
sha256_hasha834cec6b236453ee671c23326b60763880a47c93ccc595d6e566ec5f81ade88payload2026-06-2995%
sha256_hash1086e2ec8e9274e1639f14084f27d3b47e606c37ccc2a1e4976db6633ef797d5payload2026-06-2995%
sha1_hash5bc1696dec9c0d82be4ff8910a7ae7c217e9e40epayload2026-06-2995%
md5_hash2f61cb4b14e0cf839a4a823eceea88e9payload2026-06-2995%
sha256_hash31c37ff61aa322192236c9672f09e3d97b6e6e09c5019077df7d0567d4c0b48bpayload2026-06-2995%
sha1_hash33e85ae9412fa870e5d6de31502e7d48c64ce224payload2026-06-2995%
md5_hash744e1221f6467d0b7e73a10f52e6cd6cpayload2026-06-2995%
ip:port3[.]127[.]181[.]115:19587botnet_cc2026-06-29100%
ip:port155[.]117[.]183[.]181:2017botnet_cc2026-06-29100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - NjRAT
let malicious_ips = dynamic(["3.127.181.115", "155.117.183.181"]);
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(["3.127.181.115", "155.117.183.181"]);
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 - NjRAT
let malicious_hashes = dynamic(["2f299b8f3839e4259a27f4b1d8af0d2473cfe7e0", "1e3fd12fee9d2fd27642ed24cff01338", "a834cec6b236453ee671c23326b60763880a47c93ccc595d6e566ec5f81ade88", "1086e2ec8e9274e1639f14084f27d3b47e606c37ccc2a1e4976db6633ef797d5", "5bc1696dec9c0d82be4ff8910a7ae7c217e9e40e", "2f61cb4b14e0cf839a4a823eceea88e9", "31c37ff61aa322192236c9672f09e3d97b6e6e09c5019077df7d0567d4c0b48b", "33e85ae9412fa870e5d6de31502e7d48c64ce224", "744e1221f6467d0b7e73a10f52e6cd6c"]);
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 4 specific false positive scenarios for the ThreatFox: NjRAT IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:

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