This rule detects the presence of known Magecart indicators of compromise, which signal that an adversary has injected malicious scripts into web assets to intercept and exfiltrate sensitive payment card data. Proactively hunting for these IOCs in Azure Sentinel is critical to identify supply chain compromises or unauthorized code injections before they successfully capture customer financial information during transaction processing.
Malware Family: magecart Total IOCs: 4 IOC Types: url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://casagrooming.com.co/ | payload_delivery | 2026-09-16 | 100% |
| url | hxxps://sohoul-alkarak.com/ | payload_delivery | 2026-09-16 | 100% |
| url | hxxps://gesundheitsnachweis24.de/ | payload_delivery | 2026-09-16 | 100% |
| url | hxxps://sarialarm.com/ | payload_delivery | 2026-09-16 | 100% |
// Hunt for access to known malicious URLs
// Source: ThreatFox - magecart
let malicious_urls = dynamic(["https://casagrooming.com.co/", "https://sohoul-alkarak.com/", "https://gesundheitsnachweis24.de/", "https://sarialarm.com/"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
UrlClickEvents | Ensure this data connector is enabled |
Legitimate Third-Party Script Updates (e.g., Stripe, PayPal, or Braintree SDKs)
js.stripe.com, www.paypal.com) and exclude alerts where the script source matches the official vendor documentation.Customer Support/Debugging Tools (e.g., Hotjar, FullStory, or Segment)
*.hotjar.com, *.segment.io, *.fullstory.com) and verify that the script injection point is within the <head> or <body> of the main page rather than a hidden iframe or shadow DOM.A/B Testing and Personalization Engines (e.g., Optimizely, VWO, or Adobe Target)