The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-2029

CVE-2026-2029: Livemesh Addons Beaver Builder XSS Flaw

CVE-2026-2029 is a stored cross-site scripting vulnerability in the Livemesh Addons for Beaver Builder WordPress plugin that allows authenticated attackers to inject malicious scripts. This article covers technical details.

Published: February 27, 2026

CVE-2026-2029 Overview

The Livemesh Addons for Beaver Builder plugin for WordPress contains a Stored Cross-Site Scripting (XSS) vulnerability in the [labb_pricing_item] shortcode. The flaw exists in the title and value attributes due to insufficient input sanitization and improper output escaping. Specifically, the plugin uses htmlspecialchars_decode() after wp_kses_post(), which decodes HTML entities back into executable code after sanitization has already occurred. This vulnerability allows authenticated attackers with Contributor-level access or above to inject arbitrary web scripts into pages that execute whenever a user accesses the compromised content.

Critical Impact

Authenticated attackers can inject persistent malicious scripts that execute in the context of other users' browsers, potentially leading to session hijacking, credential theft, or further compromise of WordPress administrator accounts.

Affected Products

  • Livemesh Addons for Beaver Builder plugin for WordPress versions up to and including 3.9.2
  • WordPress installations using the vulnerable [labb_pricing_item] shortcode functionality
  • Beaver Builder page builder implementations with affected Livemesh addon versions

Discovery Timeline

  • February 26, 2026 - CVE-2026-2029 published to NVD
  • February 26, 2026 - Last updated in NVD database

Technical Details for CVE-2026-2029

Vulnerability Analysis

This Stored XSS vulnerability (CWE-79) occurs due to a flawed sanitization sequence in the Livemesh Addons plugin. The core issue stems from the improper ordering of security functions: the plugin applies wp_kses_post() for sanitization but then subsequently calls htmlspecialchars_decode(), which effectively reverses the sanitization by converting HTML entities back into their original characters.

The vulnerability is exploitable over the network and requires low attack complexity. An attacker needs only Contributor-level privileges on the WordPress site, with no user interaction required for initial exploitation. The scope is changed, meaning the vulnerability can impact resources beyond the vulnerable component itself—specifically, other users' browsers when they view pages containing injected scripts.

Root Cause

The root cause lies in the incorrect ordering of PHP sanitization functions within the labb-pricing-table.php module. The wp_kses_post() function is designed to filter content and encode potentially dangerous HTML characters. However, calling htmlspecialchars_decode() afterward negates this protection by decoding the escaped entities back into executable HTML and JavaScript code. This architectural flaw creates a bypass condition where malicious input that was properly sanitized becomes dangerous again before being rendered to users.

Attack Vector

An authenticated attacker with at least Contributor-level access can exploit this vulnerability by creating or editing content that uses the [labb_pricing_item] shortcode. By injecting malicious JavaScript payloads into the title or value attributes, the attacker can store persistent scripts that execute in visitors' browsers.

The attack flow involves crafting a shortcode attribute containing encoded XSS payloads. When the content is processed, wp_kses_post() sanitizes the input, but the subsequent htmlspecialchars_decode() call restores the malicious code. The payload is then stored in the database and executed every time the page is rendered.

For technical details on the vulnerable code paths, refer to the WordPress Plugin Trac at line 51 and line 59 of the pricing table module.

Detection Methods for CVE-2026-2029

Indicators of Compromise

  • Unexpected JavaScript code or event handlers within [labb_pricing_item] shortcode attributes in post content
  • Unusual script tags or encoded payloads in the title or value fields of pricing table items
  • Database entries containing suspicious HTML entities or JavaScript within the wp_posts table for content using Livemesh shortcodes
  • Browser console errors or unexpected network requests when viewing pages with pricing table modules

Detection Strategies

  • Implement WordPress security plugins that scan for stored XSS patterns in post content and shortcode attributes
  • Configure Web Application Firewalls (WAF) to detect and block common XSS payloads in POST requests to WordPress admin endpoints
  • Enable Content Security Policy (CSP) headers to detect inline script execution attempts through violation reports
  • Deploy SentinelOne Singularity for endpoint detection of malicious browser activity stemming from compromised WordPress pages

Monitoring Recommendations

  • Monitor WordPress audit logs for suspicious shortcode modifications by Contributor-level users
  • Track changes to pricing table content in the WordPress database for anomalous patterns
  • Implement real-time alerting for CSP violations that may indicate XSS exploitation attempts
  • Review server access logs for unusual POST requests to wp-admin/post.php containing potential payloads

How to Mitigate CVE-2026-2029

Immediate Actions Required

  • Update Livemesh Addons for Beaver Builder to a patched version (if available) that addresses the sanitization ordering issue
  • Audit all existing pricing table content for potentially malicious shortcode attributes
  • Temporarily restrict Contributor-level users from creating or editing content with pricing table shortcodes
  • Review and remove any suspicious scripts or encoded content from affected pages

Patch Information

Consult the Wordfence Vulnerability Report for the latest patch status and remediation guidance. Monitor the official WordPress plugin repository for updated versions of Livemesh Addons for Beaver Builder that resolve this vulnerability.

Workarounds

  • Disable the Livemesh Addons for Beaver Builder plugin until a patched version is available
  • Remove Contributor and Author role capabilities for creating or editing pages using pricing table modules
  • Implement a custom filter to sanitize shortcode output without the vulnerable htmlspecialchars_decode() call
  • Deploy a WAF rule to filter XSS payloads targeting the pricing table shortcode attributes
bash
# WordPress configuration - restrict shortcode capability
# Add to wp-config.php or theme functions.php

# Option 1: Remove shortcode entirely until patched
# add_shortcode('labb_pricing_item', '__return_empty_string');

# Option 2: Audit existing content for suspicious patterns
# Run from WordPress CLI:
wp db query "SELECT ID, post_title FROM wp_posts WHERE post_content LIKE '%[labb_pricing_item%' AND (post_content LIKE '%<script%' OR post_content LIKE '%javascript:%' OR post_content LIKE '%onerror%' OR post_content LIKE '%onload%')"

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechBeaver Builder

  • SeverityMEDIUM

  • CVSS Score6.4

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • WordPress Beaver Builder Module

  • WordPress Beaver Builder Module

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-1231: Beaver Builder WordPress XSS Vulnerability

  • CVE-2025-69319: Beaver Builder Code Injection Vulnerability

  • CVE-2026-22488: Beaver Builder Dashboard Auth Bypass Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English