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

CVE-2026-2626: Divi Booster WordPress Plugin CSRF Vulnerability

CVE-2026-2626 is a CSRF flaw in Divi Booster WordPress plugin before 5.0.2 that allows unauthenticated attackers to modify options and potentially achieve PHP Object Injection. This article covers technical details, affected versions, impact, and mitigation steps.

Published: March 13, 2026

CVE-2026-2626 Overview

CVE-2026-2626 is a high-severity vulnerability affecting the Divi Booster WordPress plugin before version 5.0.2. The vulnerability exists due to missing authorization and CSRF (Cross-Site Request Forgery) checks in one of the plugin's fixing functions. This security flaw allows unauthenticated users to modify stored plugin options. More critically, due to the use of unserialize() on user-controlled data, this vulnerability can be chained with a PHP gadget chain to achieve PHP Object Injection, potentially leading to remote code execution.

Critical Impact

Unauthenticated attackers can modify plugin settings and potentially achieve PHP Object Injection through unsafe deserialization, which may lead to remote code execution on affected WordPress installations.

Affected Products

  • Divi Booster WordPress plugin versions prior to 5.0.2

Discovery Timeline

  • 2026-03-11 - CVE-2026-2626 published to NVD
  • 2026-03-11 - Last updated in NVD database

Technical Details for CVE-2026-2626

Vulnerability Analysis

This vulnerability combines two distinct security weaknesses that create a severe attack chain. The primary issue is the absence of proper authorization checks and CSRF protection in a plugin function responsible for modifying configuration options. Without these security controls, any unauthenticated user can invoke this function and alter the plugin's stored settings.

The secondary and more dangerous aspect involves the use of PHP's unserialize() function on data that can be influenced by attackers. When untrusted data is passed to unserialize(), an attacker can craft malicious serialized objects that, when deserialized, trigger a chain of method calls (known as a gadget chain) present in the application or its dependencies. This technique, known as PHP Object Injection, can lead to arbitrary code execution, file manipulation, or other severe security impacts depending on available gadget chains.

The network-accessible nature of this vulnerability means attackers can exploit it remotely without requiring any prior authentication or user interaction, though exploitation complexity is elevated due to the need for a suitable gadget chain.

Root Cause

The root cause is twofold: first, the plugin fails to implement proper capability checks using WordPress functions like current_user_can() and lacks nonce verification for CSRF protection. Second, the plugin uses the unsafe unserialize() function on data that can be controlled by attackers instead of using safer alternatives like json_decode() or maybe_unserialize() with proper validation.

Attack Vector

The attack is network-based (CWE-352: Cross-Site Request Forgery). An attacker can send crafted HTTP requests to the vulnerable endpoint without authentication. The exploitation flow involves:

  1. Identifying the vulnerable fixing function endpoint in the Divi Booster plugin
  2. Crafting a malicious request to modify plugin options
  3. Injecting a serialized PHP object payload designed to exploit available gadget chains
  4. Achieving code execution when the malicious serialized data is deserialized

The vulnerability requires no privileges and no user interaction, though the high attack complexity reflects the need for a compatible PHP gadget chain to achieve full code execution. For detailed technical information, refer to the WPScan Vulnerability Report.

Detection Methods for CVE-2026-2626

Indicators of Compromise

  • Unexpected changes to Divi Booster plugin options or settings in the WordPress database
  • Suspicious POST requests to Divi Booster plugin endpoints from unauthenticated sources
  • Serialized PHP object strings appearing in plugin option values, particularly those containing unusual class names
  • Web server logs showing requests to plugin AJAX handlers without proper nonce parameters

Detection Strategies

  • Monitor WordPress wp_options table for unexpected modifications to Divi Booster-related entries
  • Implement Web Application Firewall (WAF) rules to detect serialized PHP objects in request parameters
  • Review Apache/Nginx access logs for POST requests targeting the Divi Booster plugin from external IPs
  • Deploy file integrity monitoring to detect unauthorized PHP file modifications that may result from successful exploitation

Monitoring Recommendations

  • Enable WordPress audit logging to track option changes and plugin configuration modifications
  • Configure SIEM alerts for patterns indicative of PHP object injection attempts (e.g., O: prefix in POST data)
  • Monitor for new or modified PHP files in the WordPress installation, especially in plugin and upload directories
  • Implement real-time alerting for unauthorized administrative actions in WordPress

How to Mitigate CVE-2026-2626

Immediate Actions Required

  • Update the Divi Booster plugin to version 5.0.2 or later immediately
  • Audit the wp_options table for any suspicious or unexpected Divi Booster configuration changes
  • Review server logs for evidence of exploitation attempts prior to patching
  • If exploitation is suspected, perform a full malware scan and consider restoring from a known-clean backup

Patch Information

The vulnerability has been addressed in Divi Booster version 5.0.2. Site administrators should update to this version or later through the WordPress plugin update mechanism. For additional details and verification, consult the WPScan Vulnerability Report.

Workarounds

  • If immediate patching is not possible, temporarily disable the Divi Booster plugin until the update can be applied
  • Implement WAF rules to block requests containing serialized PHP objects to WordPress plugin endpoints
  • Restrict access to WordPress administrative endpoints at the web server level using IP allowlisting
  • Enable WordPress application-level firewalls such as Wordfence or Sucuri with rules to detect object injection attempts

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechWordpress

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-352
  • Technical References
  • WPScan Vulnerability Report
  • Related CVEs
  • CVE-2026-4401: Download Monitor WordPress Plugin CSRF Flaw

  • CVE-2026-4141: WordPress Quran Translations CSRF Vulnerability

  • CVE-2026-0811: Advanced Contact Form 7 DB CSRF Vulnerability

  • CVE-2026-3191: Minify HTML WordPress Plugin CSRF 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