← 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-07-13T23:00:01Z · Confidence: high

Hunt Hypothesis

This hunt targets adversary behavior involving the execution of known NjRAT malware indicators to identify potential remote access and command-and-control activities within the network. Proactively hunting for these specific IOCs in Azure Sentinel is critical because NjRAT’s high severity classification suggests a significant risk of lateral movement and data exfiltration that may evade standard signature-based defenses without dedicated investigation.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port178[.]80[.]40[.]237:1177botnet_cc2026-07-13100%
md5_hash8043b87976309cfaf0ccff63f629b9b6payload2026-07-1395%
sha256_hash475774774c013c3a5d6db3ccdb025504c7151999a63097bf98476578d0533f5bpayload2026-07-1395%
sha1_hash116e43d5451e060b48a892e46a6f83e0374bde3fpayload2026-07-1395%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - NjRAT
let malicious_ips = dynamic(["178.80.40.237"]);
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(["178.80.40.237"]);
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(["8043b87976309cfaf0ccff63f629b9b6", "475774774c013c3a5d6db3ccdb025504c7151999a63097bf98476578d0533f5b", "116e43d5451e060b48a892e46a6f83e0374bde3f"]);
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 four 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/