Close Menu
NCIJ Network NCIJ Network
    What's Hot

    Nvidia’s $500 billion AI infrastructure push leaves crypto compute further behind

    August 11, 2026

    Voyager 2 was running out of power. NASA just bought it more time

    August 11, 2026

    Permian Basin Community Seeks Fix for Radium in Its Drinking Water

    August 11, 2026
    Facebook X (Twitter) Instagram
    Trending
    • Nvidia’s $500 billion AI infrastructure push leaves crypto compute further behind
    • Voyager 2 was running out of power. NASA just bought it more time
    • Permian Basin Community Seeks Fix for Radium in Its Drinking Water
    • Expro scores ‘major’ North Sea plug and abandonment win in UK waters
    • Is There Anyone Who Can Respond to My FOIA Requests? — ProPublica
    • MPs shouldn’t face abuse. Neither should their staff – but here’s what we deal with every day | Estelle Warhurst
    • Did Albert Einstein marry one of his cousins?
    • Trump hidden in catering truck in secret plane swap over Iran threat, reports say
    • About
      • Our Team
      • Editorial Policy
      • Editorial Independence
      • International Support
    • Trust & Standards
      • AI Usage Policy
      • Conflict of Interest Policy
      • Corrections Policy
      • Ethics Policy
      • Fact-Checking Policy
      • Source Protection
    • Get Involved
      • Guide for Sources
      • Support Independent Journalism
    • Legal
      • Cookie Policy
      • Privacy Policy
      • Terms of Use
    Facebook X (Twitter) Instagram
    NCIJ Network NCIJ Network
    Tuesday, August 11
    • Home
    • World
    • Ai
    • Business
    • Politics
    • Health
    • Crypto
    • Science
    • Technology
    • Cybersecurity
    • Defense & Security
    • Economy
    • Energy
    • Europe
    • More
      • Fact Check
      • Investigations
      • Opinion & Analysis
      • Environment
    NCIJ Network NCIJ Network
    Home»Cybersecurity

    BdThemes Supply Chain Attack Poisons JSON to Create Rogue WordPress Admins

    NCIJ NETWNCIJ NETWORKBy NCIJ NETWNCIJ NETWORKAugust 11, 2026 Cybersecurity No Comments5 Mins Read
    Share
    Facebook Twitter LinkedIn Pinterest Email

    Ravie LakshmananAug 11, 2026Supply Chain Attack / Vulnerability

    Cybersecurity researchers have warned of a supply chain compromise impacting WordPress plugin vendor BdThemes, prompting the content management systems (CMS) platform’s plugins team to temporarily disable their downloads.

    “Unlike traditional software supply chain attacks, zero source code files were modified within the official WordPress.org repository,” Wordfence researcher Paolo Tresso said. “Instead, threat actors poisoned a static remote JSON data stream fetched by an administrative promotional banner component.”

    The list of affected plugins is below –

    • Element Pack Addons for Elementor – Elementor Widgets, Elementor Templates, Elementor Addons [bdthemes-element-pack-lite] – 100,000+ active installs
    • Live Copy Paste for Elementor – Cross Domain Copy Paste & Page Duplicator [live-copy-paste] – 6,000+ active installs
    • Pixel Gallery Addons for Elementor – Easy Grid, Creative Gallery, Drag and Drop Grid, Custom Grid Layout, Portfolio Gallery [pixel-gallery] – N/A
    • Prime Slider Addons for Elementor – Widgets, Templates & Elementor Addons [bdthemes-prime-slider-lite] – N/A
    • Smart Admin Assistant – Dashboard and Site Enhancements [smart-admin-assistant] – N/A
    • Ultimate Post Kit Addons for Elementor [ultimate-post-kit] – N/A
    • Ultimate Store Kit – Addon For WooCommerce, EDD and Elementor [ultimate-store-kit] – 6,000+ active installs

    Users visiting the listings for each of the aforementioned plugins on the WordPress plugins directory are displayed the message that they have been closed as of either August 7 or 8, 2026, and are not available for download pending a “full review.”

    Cybersecurity

    The issue, per the WordPress security company, is rooted in an internal component called Biggopti that’s shipped along with the plugins. The system is designed to pull promotional banners from their API server and render them in the WordPress admin dashboard by fetching relevant JSON files from a DigitalOcean Spaces bucket.

    The library has been found vulnerable to a cross-site scripting (XSS) flaw in the JSON response parsing code via the “display_id” parameter from the Sigmative API due to insufficient client-side escaping. As a result, an attacker who can compromise the API can inject arbitrary web scripts in pages that get executed every time a user accesses those pages.

    Because the script runs on every “wp-admin” page load, the injected code gets activated silently in the browser of any logged-in administrator. The vulnerability is rated 5.4 on the CVSS scoring system, indicating medium severity.

    The change is said to have been first introduced on March 1, 2026, in “bdthemes-prime-slider-lite” before being applied to others. The attack is notable because it’s entirely driven via the API and requires no plugin updates or files to be modified on disk.

    “Rogue actors obtained write access to that bucket, replacing the legitimate JSON responses with crafted payloads to exploit that vulnerability,” Wordfence said. “The XSS fires inside every logged-in admin’s browser, silently, on every wp-admin page load. From there, the injected script creates rogue administrator accounts, uploads a web shell plugin, and phones home to a command-and-control (C2) server.”

    The main payload is delivered to the plugins using the “api-data-all-records” API endpoint. A JavaScript file named “w2.js,” the payload performs the following actions –

    • Contacts the C2 server (“ia-cdn[.]com/fz/c”) with the victim website’s origin to fetch targeting instructions. The execution is aborted if the C2 server returns a “skip” or “done” status.
    • Creates a new rogue administrator via the WordPress REST API.
    • Downloads a fake plugin ZIP from the C2 server and installs it via the standard plugin upload form, resulting in the deployment of a PHP web shell (“emer-run.php”).
    • Invokes the web shell to install two persistence modules into the Must-Use plugins (“mu-plugins“) directory: one is a “magic-login backdoor” that allows unauthenticated administrative entry via a URL parameter (?_wplogin=)by targeting the site’s longest-registered administrator and the other is an anti-analysis stealth module that hooks into WordPress database queries to conceal the presence of the rogue user accounts from the administrative user list and display the total user count by excluding them.

    An alternate payload (“x.js”) found hosted on the plugin developer’s infrastructure is served to victims using the “api-data-records” API endpoint. It’s designed to generate “deterministic” administrative credentials that are mathematically derived from the victim website’s hostname.

    Cybersecurity

    “This algorithm produces predictable usernames (bd_ followed by a 6-character base36 hash) and passwords (Bd@26! followed by the hash and x), pairing them with an @wordpress.org email address,” Wordfence said. “Because the credentials are deterministic, threat actors do not need to store compromised site lists centrally, and incident responders can compute the exact username and password to hunt for on suspected domains.”

    The generated credentials are then leveraged to create a malicious administrator user, and the results of the attack are then exfiltrated back to the C2 server.

    The C2 server used in the campaign is assessed to be related to two other software supply chain attacks involving Advanced Responsive Video Embedder (CVE-2026-18072) and OptinMonster in recent months. In the two cases, the WordPress plugins were backdoored to grant full administrative access to unauthenticated attackers either via a single hard-coded token or a hidden administrator account and a concealed plugin that were created and installed only when a site admin logged in.

    This indicates that the end goal of the campaign is to establish covert administrative persistence and remote code execution across WordPress environments.

    “The fact that malicious JSON records and the secondary x.js payload were uploaded directly into the vendor’s own bucket indicates a severe upstream compromise of BdThemes’ cloud storage credentials or internal infrastructure,” Wordfence said.

    The development comes days after WordPress addressed a pre-authentication reflected XSS flaw (CVE-2026-64638 aka XSS2Shell, CVSS score: 8.9) that can be exploited to achieve PHP code execution on the server when a logged-in administrator interacts with an attacker-controlled page.

    admins attack BdThemes chain create JSON Poisons rogue supply WordPress
    NCIJ NETWNCIJ NETWORK
    • Website

    Keep Reading

    New StormEncryptor ransomware used by former Medusa affiliate

    Putin used North Korean ballistic missiles in lethal attack on Ukraine, Zelenskyy says – POLITICO

    Hackers Breach Polish Power Plant Controls via Private Cellular Network and Shut Turbine

    Mozilla Issues New Firefox GPG Key Following Exposure

    New Jersey, Alabama Join States Targeted in Water Cyberattacks

    OpenAI releases ChatGPT 5.6 Cyber, but it’s only for approved users

    Add A Comment
    Leave A Reply Cancel Reply

    Editors Picks

    Nvidia’s $500 billion AI infrastructure push leaves crypto compute further behind

    August 11, 2026

    Voyager 2 was running out of power. NASA just bought it more time

    August 11, 2026

    Permian Basin Community Seeks Fix for Radium in Its Drinking Water

    August 11, 2026

    Expro scores ‘major’ North Sea plug and abandonment win in UK waters

    August 11, 2026
    Latest Posts

    Harbour Energy’s US arm advances repair plan after riser leak at Gulf of America oil & gas asset

    July 24, 2026

    Beavers restored a volcano-scarred river. Now it’s at risk again

    July 24, 2026

    China’s Tianwen-1 captures interstellar comet 3I/ATLAS near Mars

    July 24, 2026

    Subscribe to News

    Get the latest sports news from NewsSite about world, sports and politics.

    NCIJ Network is an independent digital news platform delivering trusted investigative journalism, European and global news, in-depth analysis, and fact-based reporting with accuracy, transparency, and integrity.

    Facebook X (Twitter) Instagram Pinterest YouTube

    Nvidia’s $500 billion AI infrastructure push leaves crypto compute further behind

    August 11, 2026

    Voyager 2 was running out of power. NASA just bought it more time

    August 11, 2026

    Permian Basin Community Seeks Fix for Radium in Its Drinking Water

    August 11, 2026

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    Type above and press Enter to search. Press Esc to cancel.