This hypothesis posits that adversaries are leveraging known Ave Maria indicators of compromise to establish persistence or execute initial reconnaissance within the Azure environment. Proactively hunting for these specific IOCs in Azure Sentinel is critical to rapidly identify and contain potential early-stage intrusions before they escalate into broader lateral movements.
Malware Family: Ave Maria Total IOCs: 2 IOC Types: ip:port, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 178[.]173[.]244[.]189:62435 | botnet_cc | 2026-07-09 | 75% |
| domain | morefunds.ddns.net | botnet_cc | 2026-07-09 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Ave Maria
let malicious_ips = dynamic(["178.173.244.189"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc
// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["178.173.244.189"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Ave Maria
let malicious_domains = dynamic(["morefunds.ddns.net"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios for the ThreatFox: Ave Maria IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scheduled Antivirus Definition Updates via WSUS/SCCM
ccSetSvc.exe, CCMExec.exe) and the destination port is 443/80 to the specific update domain.IT Admin Manual Remediation Scripts
svc-it-admin, domain\backup-service) and processes running under the PowerShell.exe or cmd.exe command line with arguments containing “remediation,” “patch,” or specific script paths located in secure administrative directories (e.g., C:\Scripts\Remediation).Third-Party Cloud SaaS Integration Syncs