← Back to SOC feed Coverage →

ThreatFox: Ave Maria IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEvents
iocthreatfoxwin-ave_maria
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-06-29T23:00:00Z · Confidence: high

Hunt Hypothesis

This hunt hypothesis targets adversary behavior involving the execution or communication of known Ave Maria indicators of compromise (IOCs) to detect potential post-exploitation activities within the environment. The SOC team should proactively hunt for these specific IOCs in Azure Sentinel to identify early-stage infections and validate the efficacy of existing threat intelligence feeds against this high-severity campaign.

IOC Summary

Malware Family: Ave Maria Total IOCs: 7 IOC Types: sha1_hash, sha256_hash, md5_hash, ip:port

TypeValueThreat TypeFirst SeenConfidence
md5_hashb1341da78ca16f4d04cb56d05c63a821payload2026-06-2995%
md5_hash14b7d8e98b8cd97f8f302bab2b4dea27payload2026-06-2995%
sha256_hash0911748a95f6a362d1ed8d6fcd1a7889167520cdd506522658d84a69c9a088abpayload2026-06-2995%
sha1_hash2a43e2b7dea9979a803c300b5b9638f5d4ae2f64payload2026-06-2995%
sha256_hash83a2d5361b91b0ac26ff7c5f161dd3008de6922c5df7f8c0af80b1dea105480dpayload2026-06-2995%
sha1_hashaf09bf91db9bb8dfaa56f1d2e3d4fab97e6fdf72payload2026-06-2995%
ip:port217[.]60[.]195[.]56:5201botnet_cc2026-06-29100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Ave Maria
let malicious_ips = dynamic(["217.60.195.56"]);
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(["217.60.195.56"]);
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 - Ave Maria
let malicious_hashes = dynamic(["b1341da78ca16f4d04cb56d05c63a821", "14b7d8e98b8cd97f8f302bab2b4dea27", "0911748a95f6a362d1ed8d6fcd1a7889167520cdd506522658d84a69c9a088ab", "2a43e2b7dea9979a803c300b5b9638f5d4ae2f64", "83a2d5361b91b0ac26ff7c5f161dd3008de6922c5df7f8c0af80b1dea105480d", "af09bf91db9bb8dfaa56f1d2e3d4fab97e6fdf72"]);
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 specific false positive scenarios for the ThreatFox: Ave Maria IOCs detection rule, tailored for an enterprise environment:

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