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-4811

CVE-2026-4811: WPB Floating Menu Plugin XSS Vulnerability

CVE-2026-4811 is a Stored Cross-Site Scripting flaw in WPB Floating Menu & Categories plugin for WordPress that allows Editor-level attackers to inject malicious scripts. This article covers technical details, affected versions, and mitigation.

Published: May 21, 2026

CVE-2026-4811 Overview

CVE-2026-4811 is a Stored Cross-Site Scripting (XSS) vulnerability affecting the WPB Floating Menu & Categories for WordPress – Sticky Side Menu with Icons plugin. The flaw exists in all versions up to and including 1.0.8. The plugin fails to properly sanitize input and escape output in the Icon CSS Class category field.

Authenticated attackers with Editor-level access or higher can inject arbitrary JavaScript that executes when users view affected pages. The vulnerability is categorized as [CWE-79] (Improper Neutralization of Input During Web Page Generation).

Critical Impact

Authenticated Editor-level attackers can inject persistent JavaScript payloads that execute in the browser context of any visitor accessing affected pages, enabling session theft and administrative actions.

Affected Products

  • WPB Floating Menu & Categories for WordPress – Sticky Side Menu with Icons plugin
  • All versions up to and including 1.0.8
  • WordPress installations using the vulnerable plugin

Discovery Timeline

  • 2026-05-21 - CVE-2026-4811 published to NVD
  • 2026-05-21 - Last updated in NVD database

Technical Details for CVE-2026-4811

Vulnerability Analysis

The vulnerability resides in the plugin's category icon administration interface. The Icon CSS Class field accepts attacker-supplied strings without applying sanitization functions such as sanitize_text_field() on input. The same value is later rendered into page markup without escaping through esc_attr() or esc_html().

This dual failure — missing input sanitization and missing output escaping — allows arbitrary HTML and JavaScript to be persisted in the WordPress database. When administrators or site visitors render pages containing the malicious category icon, the browser parses and executes the injected script.

The vulnerable code path is documented in the WordPress Plugin Source Code at line 41 of admin/category-icon.php.

Root Cause

The root cause is the absence of WordPress's standard sanitization and escaping APIs around the Icon CSS Class parameter. The plugin trusts authenticated user input from the category settings form and writes it directly to storage, then echoes it back into HTML attributes during page rendering.

Attack Vector

An attacker with Editor-level credentials or higher accesses the plugin's category configuration. The attacker submits a payload in the Icon CSS Class field that breaks out of the attribute context, for example by including quote characters followed by event handlers such as onmouseover or onerror. The payload is stored in the database. Each time a user loads a page that renders the floating menu, the injected script executes under the site's origin. Stolen session cookies, forced administrative actions via CSRF, or browser-based redirects to malware are typical post-exploitation outcomes. See the Wordfence Vulnerability Report for additional technical analysis.

Detection Methods for CVE-2026-4811

Indicators of Compromise

  • Unexpected <script> tags, javascript: URIs, or HTML event handlers stored within WordPress category metadata for the WPB Floating Menu plugin
  • Outbound HTTP requests from visitor browsers to unfamiliar domains shortly after rendering category-driven pages
  • New or modified administrator accounts created shortly after Editor-level logins

Detection Strategies

  • Query the WordPress database for category term meta rows associated with the plugin and inspect values for HTML tags, quote characters, or on* attribute names
  • Review web server access logs for POST requests to plugin administration endpoints under /wp-admin/ originating from Editor accounts
  • Monitor for browser Content Security Policy (CSP) violation reports triggered by inline scripts on pages using the floating menu

Monitoring Recommendations

  • Audit Editor and Administrator account activity, focusing on plugin configuration changes
  • Enable WordPress audit logging plugins to capture term and meta modifications
  • Alert on any modification to category-icon.php or related plugin files

How to Mitigate CVE-2026-4811

Immediate Actions Required

  • Update the WPB Floating Menu & Categories plugin to a version newer than 1.0.8 once a patched release is available
  • Review all existing category icon CSS class values and remove any entries containing HTML or script content
  • Restrict Editor-level access to trusted users and enforce strong authentication including multi-factor authentication

Patch Information

At the time of publication, the CVE record lists all versions up to and including 1.0.8 as vulnerable. Site operators should monitor the Wordfence Vulnerability Report and the WordPress plugin repository for an updated release that adds sanitize_text_field() on input and esc_attr() on output for the Icon CSS Class field.

Workarounds

  • Deactivate the WPB Floating Menu & Categories plugin until a patched version is released
  • Apply a Web Application Firewall (WAF) rule that blocks HTML tags and event handler attributes in POST parameters targeting the plugin's admin endpoints
  • Implement a strict Content Security Policy that disallows inline scripts and limits script sources to trusted origins
bash
# Example WordPress CLI command to deactivate the vulnerable plugin
wp plugin deactivate wpb-floating-menu-or-categories

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 Score4.9

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • WordPress Plugin Source Code

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-1543: Avada Builder WordPress XSS Vulnerability

  • CVE-2026-7613: WordPress Cost of Goods Plugin XSS Flaw

  • CVE-2026-5776: Email Encoder WordPress Plugin XSS Flaw

  • CVE-2026-6404: Anomify AI WordPress Plugin XSS Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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