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

CVE-2026-6433: WordPress Custom css-js-php RCE Flaw

CVE-2026-6433 is a critical remote code execution vulnerability in the Custom css-js-php WordPress plugin that allows unauthenticated attackers to execute arbitrary PHP code. This article covers technical details, affected versions, and mitigation.

Published: May 18, 2026

CVE-2026-6433 Overview

CVE-2026-6433 affects the Custom css-js-php WordPress plugin through version 2.0.7. The plugin fails to sanitize user input before incorporating it into a SQL query, and the query result is then passed directly to PHP eval(). Unauthenticated attackers can leverage this flow to execute arbitrary PHP code on the host server. The vulnerability combines SQL Injection with Code Injection, producing a pre-authentication remote code execution path against any WordPress site running the affected plugin.

Critical Impact

Unauthenticated attackers can execute arbitrary PHP code on the WordPress server, leading to full site compromise and potential lateral movement into the underlying host.

Affected Products

  • Custom css-js-php WordPress plugin versions through 2.0.7
  • WordPress installations with the plugin enabled
  • Any hosting environment exposing the affected WordPress instance to the network

Discovery Timeline

  • 2026-05-11 - CVE-2026-6433 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-6433

Vulnerability Analysis

The Custom css-js-php plugin accepts attacker-controlled input and concatenates it into a SQL statement without proper sanitization or parameterization. This first stage represents a SQL Injection flaw [CWE-89]. The plugin then takes the value returned from the SQL query and passes it directly to PHP eval(), which evaluates the string as PHP source code. This second stage represents a Code Injection flaw [CWE-94].

Because the input flows from an unauthenticated request into both the SQL layer and the eval() sink, attackers do not need credentials or user interaction. A single crafted HTTP request can plant attacker-controlled data in the database response path and trigger PHP execution.

Successful exploitation yields code execution under the web server user. Attackers can drop webshells, harvest database credentials from wp-config.php, modify plugin or theme files, create administrator accounts, and pivot to other tenants on shared hosting.

Root Cause

The root cause is dual: missing input sanitization on a SQL query parameter, and the use of eval() on data influenced by untrusted input. Either issue alone would be a defect; together they form an unauthenticated remote code execution chain.

Attack Vector

The attack vector is network-based. An attacker sends an HTTP request to the vulnerable plugin endpoint with a crafted payload designed to manipulate the SQL query and place PHP code into the value that the plugin subsequently evaluates. No authentication or user interaction is required. Technical specifics are documented in the WPScan Vulnerability Report.

Detection Methods for CVE-2026-6433

Indicators of Compromise

  • Unexpected PHP files in the WordPress wp-content/uploads, plugin, or theme directories following requests to Custom css-js-php endpoints
  • New administrator accounts in wp_users that were not created by site operators
  • Outbound connections from the PHP-FPM or web server process to unfamiliar IP addresses immediately after plugin endpoint access
  • Web server logs showing requests to plugin URLs containing SQL meta-characters such as UNION SELECT, quotes, or PHP tags

Detection Strategies

  • Inspect HTTP access logs for requests targeting Custom css-js-php plugin paths combined with SQL syntax or <?php markers in parameters
  • Monitor PHP process telemetry for spawning of shells (sh, bash), curl, or wget from the web server user context
  • Hash plugin and theme files and alert on modifications outside of administrator-initiated updates

Monitoring Recommendations

  • Forward web server, PHP error, and WordPress audit logs to a central analytics platform for correlation
  • Track database query patterns from the WordPress application user and alert on anomalous SELECT clauses originating from plugin code paths
  • Enable file integrity monitoring on the WordPress installation root

How to Mitigate CVE-2026-6433

Immediate Actions Required

  • Disable and remove the Custom css-js-php plugin if a patched version is not available for your installation
  • Rotate WordPress administrator passwords, database credentials, and any API keys stored in wp-config.php
  • Review user accounts and scheduled tasks (wp_optionscron) for unauthorized entries
  • Restore from a known-good backup if indicators of compromise are present

Patch Information

No fixed version is identified in the available advisory data. The plugin is reported vulnerable through version 2.0.7. Monitor the WPScan Vulnerability Report for vendor updates and apply any released patch as soon as it becomes available.

Workarounds

  • Remove the plugin from the WordPress installation until a verified patch is released
  • Block external access to plugin endpoints at the web application firewall using rules that filter SQL meta-characters and PHP tags in request parameters
  • Restrict the WordPress database user to the minimum privileges required, limiting the impact of injected queries
bash
# Configuration example: disable the plugin via WP-CLI
wp plugin deactivate custom-css-js-php
wp plugin delete custom-css-js-php

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechWordpress

  • SeverityHIGH

  • CVSS Score7.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • Technical References
  • WPScan Vulnerability Report
  • Related CVEs
  • CVE-2026-6271: Career Section WordPress Plugin RCE Flaw

  • CVE-2020-37169: Ultimate Member WordPress Plugin RCE Flaw

  • CVE-2026-3425: RTMKit Addons for Elementor RCE Flaw

  • CVE-2021-47933: WordPress MStore API RCE 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