← Back to SOC feed Coverage →

ThreatFox: EvilExtractor IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEvents
iocthreatfoxwin-evilextractor
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-08-25T23:00:00Z · Confidence: high

Hunt Hypothesis

This detection rule identifies adversary activity involving the EvilExtractor malware by monitoring for specific indicators of compromise such as malicious file hashes and network connections. Proactively hunting for these IOCs in Azure Sentinel is critical to rapidly detect early-stage ransomware or data exfiltration campaigns before they escalate into widespread incidents across the enterprise environment.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
sha256_hash63f3064a8023989933b7d294af76cd5a583eeea38aedfa464cd2ea2cf3a4ed73payload2026-08-2595%
sha1_hashbb5cf9a62dab446da7ebb7650213748dc51037b3payload2026-08-2595%
md5_hashe384e7389a371c96e5d31effce1242aepayload2026-08-2595%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - EvilExtractor
let malicious_hashes = dynamic(["63f3064a8023989933b7d294af76cd5a583eeea38aedfa464cd2ea2cf3a4ed73", "bb5cf9a62dab446da7ebb7650213748dc51037b3", "e384e7389a371c96e5d31effce1242ae"]);
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

Here are 4 specific false positive scenarios for the ThreatFox: EvilExtractor IOCs detection rule, including targeted filters and exclusions suitable for an enterprise environment:

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