← Back to SOC feed Coverage →

ThreatFox: NjRAT IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEvents
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-09-08T11:00:00Z · Confidence: high

Hunt Hypothesis

This hypothesis targets the presence of known NjRAT indicators, a remote access trojan frequently used by threat actors to establish persistent, covert control over compromised endpoints. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify stealthy backdoors before they are leveraged for lateral movement or data exfiltration, reducing the dwell time of high-severity threats within the environment.

IOC Summary

Malware Family: NjRAT Total IOCs: 3 IOC Types: md5_hash, sha1_hash, sha256_hash

TypeValueThreat TypeFirst SeenConfidence
sha1_hash54f52128496ccc3cead33a43d9c858344d371be1payload2026-09-0895%
md5_hash8954631e8ffbb6b865e2353f3d847f0cpayload2026-09-0895%
sha256_hash976eb41511fdcb1b13af671b963aca873d1830854c94fa20ea117bdad34d4ce0payload2026-09-0895%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - NjRAT
let malicious_hashes = dynamic(["54f52128496ccc3cead33a43d9c858344d371be1", "8954631e8ffbb6b865e2353f3d847f0c", "976eb41511fdcb1b13af671b963aca873d1830854c94fa20ea117bdad34d4ce0"]);
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
DeviceFileEventsEnsure this data connector is enabled

References

False Positive Guidance

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