← Back to SOC feed Coverage →

ThreatFox: magecart IOCs

ioc-hunt HIGH ThreatFox
DnsEventsUrlClickEvents
iocjs-magecartthreatfox
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-30T11:00:00Z · Confidence: high

Hunt Hypothesis

This detection targets adversary behavior involving MageCart supply chain compromises by identifying specific indicators of compromise within Azure Sentinel logs. Proactive hunting is critical to rapidly identify and contain potential data exfiltration or payment card skimming attacks before they escalate into widespread customer data breaches.

IOC Summary

Malware Family: magecart Total IOCs: 2 IOC Types: domain, url

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://backupper.propayload_delivery2026-06-30100%
domaincloud.api-middle-connect.comcc_skimming2026-06-30100%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - magecart
let malicious_domains = dynamic(["cloud.api-middle-connect.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - magecart
let malicious_urls = dynamic(["https://backupper.pro"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are specific false positive scenarios for the ThreatFox: MageCart IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:

Original source: https://threatfox.abuse.ch/browse/malware/js.magecart/