← Back to SOC feed Coverage →

ThreatFox: Shim RAT IOCs

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

Hunt Hypothesis

This hunt identifies the presence of Shim RAT, a remote access trojan, by matching known indicators of compromise to detect unauthorized remote control capabilities within the environment. Proactively hunting for these IOCs in Azure Sentinel is critical because Shim RAT enables persistent access and lateral movement, allowing adversaries to exfiltrate data or deploy additional payloads before traditional detection mechanisms trigger.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
sha256_hash94ffe61fb9619a00d8c1066dc8728df2af733f0b9ca8783a93ecbe1e52e59562payload2026-09-2495%
sha1_hashdd63f54137cd8c2ba7bb43cb6a45db5b2238698cpayload2026-09-2495%
md5_hashe629a420112f2bcb593f5467a362a91apayload2026-09-2495%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Shim RAT
let malicious_hashes = dynamic(["94ffe61fb9619a00d8c1066dc8728df2af733f0b9ca8783a93ecbe1e52e59562", "dd63f54137cd8c2ba7bb43cb6a45db5b2238698c", "e629a420112f2bcb593f5467a362a91a"]);
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.shimrat/