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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-1572

CVE-2026-1572: Livemesh Addons for Elementor XSS Flaw

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

Published: April 16, 2026

CVE-2026-1572 Overview

The Livemesh Addons for Elementor plugin for WordPress contains a combination of missing authorization checks and stored Cross-Site Scripting (XSS) vulnerabilities affecting all versions up to and including 9.0. The vulnerability exists in the AJAX handler lae_admin_ajax() which lacks proper authorization checks, combined with insufficient output escaping on multiple checkbox settings fields. This allows authenticated attackers with Subscriber-level access or higher to inject malicious scripts into the plugin's settings page.

Critical Impact

Authenticated attackers can inject arbitrary web scripts that execute whenever an administrator accesses the plugin settings page, potentially leading to account takeover, data theft, or further site compromise.

Affected Products

  • Livemesh Addons for Elementor plugin versions up to and including 9.0
  • WordPress installations using the vulnerable plugin versions
  • Sites with user registration enabled (Subscriber-level access required)

Discovery Timeline

  • April 16, 2026 - CVE CVE-2026-1572 published to NVD
  • April 16, 2026 - Last updated in NVD database

Technical Details for CVE-2026-1572

Vulnerability Analysis

This vulnerability combines two distinct security weaknesses: broken access control (CWE-79) and stored Cross-Site Scripting. The lae_admin_ajax() function processes AJAX requests without verifying whether the requesting user has administrative privileges. While nonce verification may be present, it only confirms the request originated from a logged-in user—not that the user is authorized to modify plugin settings.

The second component involves insufficient output escaping on checkbox settings fields. When administrators view the settings page, injected content is rendered without proper sanitization, executing arbitrary JavaScript in the context of the administrator's session.

Root Cause

The root cause stems from two security failures in the plugin architecture. First, the AJAX handler at admin-ajax.php processes settings modifications without proper capability checks (such as current_user_can('manage_options')). Second, the settings rendering code at settings.php fails to escape checkbox field values before outputting them to the HTML page.

The nonce used for CSRF protection can be obtained by attackers through the plugin's improper access control on settings pages, which inadvertently exposes the nonce to users with Subscriber-level access who should not have visibility into these admin interfaces.

Attack Vector

The attack requires network access and low-privilege authentication (Subscriber-level). An attacker must first obtain a valid nonce, which is possible due to the improper access control that leaks nonces to unauthorized users. Once the nonce is obtained, the attacker can craft AJAX requests to the lae_admin_ajax() endpoint to inject malicious JavaScript payloads into checkbox settings fields.

When an administrator subsequently visits the plugin settings page, the stored XSS payload executes in their browser context. This can lead to session hijacking, creation of rogue administrator accounts, installation of malicious plugins, or exfiltration of sensitive site data.

The vulnerability is particularly concerning because it affects sites that allow user registration, which is common for membership sites, e-commerce stores, and community platforms using WordPress.

Detection Methods for CVE-2026-1572

Indicators of Compromise

  • Unexpected JavaScript code or HTML tags present in plugin settings values
  • AJAX requests to WordPress admin-ajax.php with action parameter targeting lae_admin_ajax from non-administrator users
  • Suspicious user accounts with Subscriber role making repeated requests to plugin settings endpoints
  • Unauthorized modifications to Livemesh Addons for Elementor configuration options

Detection Strategies

  • Monitor WordPress admin-ajax.php access logs for requests from low-privilege users attempting to access plugin settings endpoints
  • Implement Web Application Firewall (WAF) rules to detect XSS payloads in POST data targeting the vulnerable AJAX handler
  • Review database entries in wp_options table for the plugin's settings, checking for suspicious JavaScript or script tags
  • Deploy endpoint detection to identify anomalous behavior patterns from authenticated WordPress users

Monitoring Recommendations

  • Enable detailed logging for WordPress AJAX requests including user ID and capability level
  • Configure alerts for settings changes initiated by non-administrator users
  • Implement Content Security Policy headers to mitigate XSS impact if exploitation occurs
  • Regularly audit user roles and remove unnecessary Subscriber accounts

How to Mitigate CVE-2026-1572

Immediate Actions Required

  • Update Livemesh Addons for Elementor to a patched version beyond 9.0 when available
  • Audit existing plugin settings for any suspicious JavaScript or HTML content
  • Review user accounts with Subscriber role or higher and remove any unauthorized or suspicious accounts
  • Temporarily disable user registration if not strictly required until patch is applied

Patch Information

Check the Wordfence Vulnerability Report for the latest patch status and remediation guidance. The vulnerability affects versions up to and including 9.0, so ensure you update to a version that addresses both the authorization bypass and output escaping issues. Review the WordPress Plugin Code to verify the fix has been implemented in newer versions.

Workarounds

  • Restrict access to wp-admin for Subscriber-level users using a security plugin or .htaccess rules
  • Implement capability checks at the server level using custom code or security plugins to block unauthorized AJAX requests
  • Use a Web Application Firewall to filter requests containing XSS payloads targeting the vulnerable endpoint
  • Disable user registration temporarily until an official patch is available
bash
# Add to .htaccess to restrict admin-ajax.php access for specific actions
# Note: This is a temporary workaround and may affect other functionality
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} admin-ajax\.php
RewriteCond %{QUERY_STRING} action=lae_admin_ajax [OR]
RewriteCond %{HTTP:X-Requested-With} !^XMLHttpRequest$
RewriteRule .* - [F,L]
</IfModule>

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score6.4

  • EPSS Probability0.02%

  • 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 Code Review

  • WordPress Code Review

  • WordPress Settings Code

  • WordPress Plugin Code

  • WordPress Code Review

  • WordPress Code Review

  • WordPress Settings Code

  • WordPress Plugin Code

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-7448: LatePoint WordPress Plugin XSS Vulnerability

  • CVE-2026-7332: LatePoint WordPress Plugin XSS Vulnerability

  • CVE-2026-7457: WordPress LatePoint Plugin XSS Vulnerability

  • CVE-2026-6672: SliceWP Affiliates Plugin XSS Vulnerability
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