A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection Platforms. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Read More
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-2955

CVE-2026-2955: WordPress AIWU Plugin XSS Vulnerability

CVE-2026-2955 is a stored XSS vulnerability in the AI Chatbot & Workflow Automation by AIWU plugin for WordPress affecting versions up to 1.4.14. This article covers technical details, affected versions, and mitigation steps.

Published: May 21, 2026

CVE-2026-2955 Overview

CVE-2026-2955 is a Stored Cross-Site Scripting (XSS) vulnerability in the AI Chatbot & Workflow Automation by AIWU plugin for WordPress. The flaw affects all versions up to and including 1.4.14. The plugin fails to sanitize the X-Forwarded-For HTTP header before storing and rendering its value. Unauthenticated attackers can inject arbitrary web scripts that execute when users access an injected page. Practical exploitation is constrained by a 20-character storage limit on the stored value. The vulnerability is categorized under [CWE-79] (Improper Neutralization of Input During Web Page Generation).

Critical Impact

Unauthenticated attackers can inject persistent JavaScript payloads through the X-Forwarded-For header, executing scripts in the browsers of subsequent visitors. The 20-character storage limit restricts payload complexity but does not eliminate risk.

Affected Products

  • AI Chatbot & Workflow Automation by AIWU plugin for WordPress
  • Versions up to and including 1.4.14
  • Plugin slug: ai-copilot-content-generator

Discovery Timeline

  • 2026-05-20 - CVE-2026-2955 published to NVD
  • 2026-05-20 - Last updated in NVD database

Technical Details for CVE-2026-2955

Vulnerability Analysis

The vulnerability resides in how the AIWU plugin processes the X-Forwarded-For HTTP header. The plugin reads the header value, stores it in persistent backend storage, and later renders it in web pages without applying input sanitization or output escaping. This pattern matches the standard Stored XSS class defined by [CWE-79].

Because the X-Forwarded-For header is attacker-controlled and the request requires no authentication, anyone reaching the WordPress site can submit a crafted header value. The stored payload then executes in the browser context of any user who later loads a page that renders the value. Exploitation is constrained by a 20-character storage limit, which restricts payloads to short tags or fragments rather than full inline scripts.

Root Cause

The root cause is insufficient input sanitization combined with missing output escaping. The plugin treats the HTTP header as trusted input and writes it directly into HTML output. WordPress provides helper functions such as sanitize_text_field() for input and esc_html() or esc_attr() for output, but the affected code paths do not apply them to the header value.

Attack Vector

An unauthenticated remote attacker sends an HTTP request to the WordPress site with a malicious X-Forwarded-For header value. The plugin persists the value. When a subsequent visitor or administrator loads a page that includes the stored value in its rendered output, the injected script executes in their browser. The 20-character cap forces attackers to use compact payloads, external script loading via short hosts, or HTML attribute injection rather than long inline scripts. Refer to the Wordfence Vulnerability Report for additional analysis.

Detection Methods for CVE-2026-2955

Indicators of Compromise

  • HTTP requests containing HTML tags, angle brackets, or JavaScript keywords inside the X-Forwarded-For header.
  • Unexpected <script>, <svg>, or event handler fragments stored in plugin database tables tied to the ai-copilot-content-generator slug.
  • Browser console errors or Content Security Policy violations reported when administrators visit plugin-rendered pages.

Detection Strategies

  • Inspect web server and WAF logs for non-IP-format values in the X-Forwarded-For header, especially those containing <, >, ", or javascript:.
  • Query the WordPress database for rows added by the AIWU plugin and search stored values for HTML or script syntax.
  • Run automated DOM scans against plugin pages to identify unsanitized header reflection.

Monitoring Recommendations

  • Alert on inbound HTTP headers that exceed expected IP-address formats for X-Forwarded-For.
  • Monitor plugin file changes and database write patterns from unauthenticated sessions.
  • Track outbound requests from administrator browsers to unfamiliar domains after visiting WordPress admin pages.

How to Mitigate CVE-2026-2955

Immediate Actions Required

  • Update the AI Chatbot & Workflow Automation by AIWU plugin to a version newer than 1.4.14 once available.
  • Audit plugin-managed database tables for previously stored malicious header values and remove any injected payloads.
  • Force password resets for administrator accounts that may have visited compromised pages.

Patch Information

The fix is tracked in the WordPress plugin repository under WordPress Plugin Update changeset 3505998. Administrators should upgrade to the patched release and confirm the plugin version in the WordPress admin dashboard after deployment.

Workarounds

  • Configure the upstream reverse proxy or WAF to strip or normalize the X-Forwarded-For header to valid IP-address syntax before requests reach WordPress.
  • Deploy a WAF rule that blocks HTTP requests containing HTML metacharacters in X-Forwarded-For.
  • Disable the AIWU plugin until the patched version is installed if the reverse proxy cannot enforce header normalization.
bash
# Example nginx rule to reject non-IP X-Forwarded-For values
if ($http_x_forwarded_for ~* "[<>\"']") {
    return 400;
}

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.06%

  • 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 Plugin Update

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

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

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

  • CVE-2026-5776: Email Encoder 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