← Back to SOC feed Coverage →

ThreatFox: GovRAT IOCs

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

Hunt Hypothesis

This hunt targets the presence of known GovRAT indicators of compromise, which are frequently leveraged by threat actors to establish persistent remote access and execute command-and-control operations within enterprise networks. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify compromised endpoints early, mitigating the risk of lateral movement and data exfiltration before the adversary can fully establish a foothold in the environment.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
sha256_hash2a0e7f4e5f72631fbf592d6d1797f512f6c6eda2509aeb8e91f60c237d283720payload2026-09-0795%
sha1_hash413e51015c071ec5b8632c81f64ba833ed6be15apayload2026-09-0795%
md5_hash62d70cdf6d752d0e01c8bffcb46a7643payload2026-09-0795%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - GovRAT
let malicious_hashes = dynamic(["2a0e7f4e5f72631fbf592d6d1797f512f6c6eda2509aeb8e91f60c237d283720", "413e51015c071ec5b8632c81f64ba833ed6be15a", "62d70cdf6d752d0e01c8bffcb46a7643"]);
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.govrat/