← Back to SOC feed Coverage →

ThreatFox: vSkimmer IOCs

ioc-hunt HIGH ThreatFox
DnsEventsUrlClickEvents
iocthreatfoxwin-vskimmer
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-09-22T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets the presence of vSkimmer indicators of compromise, a known web skimmer used by adversaries to intercept and exfiltrate sensitive payment data from compromised web applications. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify potential skimmer deployments early, mitigating the risk of financial fraud and data theft before attackers can successfully capture customer credentials.

IOC Summary

Malware Family: vSkimmer Total IOCs: 10 IOC Types: domain, url

TypeValueThreat TypeFirst SeenConfidence
domaintrainli.comcc_skimming2026-09-2250%
urlhxxps://static-js.com/js/jmj.jspayload_delivery2026-09-2250%
urlhxxps://static-js.com/js/cg.jspayload_delivery2026-09-2250%
urlhxxps://static-js.com/js/gf.jspayload_delivery2026-09-2250%
urlhxxps://static-js.com/js/zens.jspayload_delivery2026-09-2250%
urlhxxps://static-js.com/js/dl.jspayload_delivery2026-09-2250%
urlhxxps://static-js.com/js/dp.jspayload_delivery2026-09-2250%
urlhxxps://static-js.com/js/stager.jspayload_delivery2026-09-2250%
urlhxxps://static-js.com/js/tst.jspayload_delivery2026-09-2250%
domainmbs-standoffs.comcc_skimming2026-09-2250%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - vSkimmer
let malicious_domains = dynamic(["trainli.com", "mbs-standoffs.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 - vSkimmer
let malicious_urls = dynamic(["https://static-js.com/js/jmj.js", "https://static-js.com/js/cg.js", "https://static-js.com/js/gf.js", "https://static-js.com/js/zens.js", "https://static-js.com/js/dl.js", "https://static-js.com/js/dp.js", "https://static-js.com/js/stager.js", "https://static-js.com/js/tst.js"]);
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


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