← Back to SOC feed Coverage →

ThreatFox: Ghost RAT IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEvents
backdooriocthreatfoxwin-ghost_rat
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-21T23:00:01Z · Confidence: high

Hunt Hypothesis

This hypothesis targets the presence of known Ghost RAT indicators of compromise, which signal a remote access trojan capable of providing adversaries with persistent control over compromised endpoints. Proactively hunting for these IOCs in Azure Sentinel is critical to identify and isolate infected systems before the threat actor leverages the RAT for lateral movement or data exfiltration.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
sha1_hash2197b62c1c226bfe4030129622902c9838a345f8payload2026-09-2195%
md5_hash7cc1bd83d32e117bd0ef78d73647c144payload2026-09-2195%
sha256_hash7656ff1c8b9460450225453d8210d394579b0cd02bdad5f1e7be399cc6c06d34payload2026-09-2195%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Ghost RAT
let malicious_hashes = dynamic(["2197b62c1c226bfe4030129622902c9838a345f8", "7cc1bd83d32e117bd0ef78d73647c144", "7656ff1c8b9460450225453d8210d394579b0cd02bdad5f1e7be399cc6c06d34"]);
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.ghost_rat/