Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2023-5815

CVE-2023-5815: News & Blog Designer Pack RCE Vulnerability

CVE-2023-5815 is a remote code execution flaw in the News & Blog Designer Pack WordPress plugin that allows unauthenticated attackers to execute arbitrary PHP code. This post covers technical details, affected versions, and mitigation.

Published: January 27, 2026

CVE-2023-5815 Overview

CVE-2023-5815 is a critical Remote Code Execution (RCE) vulnerability affecting the News & Blog Designer Pack plugin for WordPress. This vulnerability allows unauthenticated attackers to execute arbitrary PHP code through Local File Inclusion (LFI) in all versions up to and including 3.4.1. The flaw exists in the bdp_get_more_post function, which is accessible via a nopriv AJAX endpoint, meaning no authentication is required to exploit it.

Critical Impact

Unauthenticated attackers can achieve complete server compromise through remote code execution, potentially gaining full control of the WordPress installation and underlying server infrastructure.

Affected Products

  • Infornweb News & Blog Designer Pack versions up to and including 3.4.1
  • WordPress installations using the Blog Designer Pack plugin (blog-designer-pack)
  • Vulnerable Docker configurations running affected versions may be at higher risk for PHP file creation attacks

Discovery Timeline

  • 2023-11-22 - CVE-2023-5815 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-5815

Vulnerability Analysis

This vulnerability combines two dangerous programming practices that, when chained together, enable unauthenticated remote code execution. The vulnerable bdp_get_more_post function is registered as a WordPress AJAX handler that can be accessed without authentication (via wp_ajax_nopriv_ hook), exposing it to any remote attacker.

The exploitation chain requires two conditions: first, the unsafe use of PHP's extract() function on user-controlled POST data, which allows attackers to overwrite internal variables; second, the subsequent passing of attacker-controlled values to PHP's include() function, enabling arbitrary file inclusion. On systems with writable directories or certain Docker configurations, attackers may be able to create malicious PHP files and then include them to achieve full code execution.

Root Cause

The root cause is the unsafe implementation of the extract() function on untrusted user input from the POST variable. The extract() function in PHP imports variables from an array into the current symbol table, and when used on user-controlled data without proper filtering, it allows attackers to overwrite any variable in scope. This variable overwrite capability is then weaponized because the function passes the manipulated values directly to an include() statement, creating a Local File Inclusion vulnerability that can be escalated to Remote Code Execution.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can send a specially crafted POST request to the WordPress AJAX endpoint targeting the bdp_get_more_post action. By manipulating the POST parameters, the attacker can inject malicious values that get extracted into the function's variable scope. These manipulated variables are then used in an include() call, allowing the attacker to include arbitrary PHP files.

On vulnerable Docker configurations, as documented in external research on PHP file inclusion techniques, an attacker may leverage writable locations or PEAR command execution (pearcmd.php) to first create a malicious PHP file on the system and then include it to achieve code execution. This attack methodology is particularly effective in containerized environments where certain PHP configurations may be more permissive.

Detection Methods for CVE-2023-5815

Indicators of Compromise

  • Unusual POST requests to /wp-admin/admin-ajax.php with action=bdp_get_more_post parameter
  • Web server logs showing access patterns targeting AJAX endpoints with suspicious file path patterns in POST data
  • Unexpected PHP files appearing in web-accessible or writable directories
  • Evidence of pearcmd.php access or PEAR-related file operations in logs

Detection Strategies

  • Monitor WordPress AJAX endpoints for requests to the bdp_get_more_post action from unauthenticated sessions
  • Implement web application firewall (WAF) rules to detect LFI patterns including path traversal sequences and PHP file references in POST data
  • Deploy file integrity monitoring on WordPress installations to detect unauthorized file creation or modification
  • Review web server access logs for POST requests with abnormal payload sizes or patterns targeting admin-ajax.php

Monitoring Recommendations

  • Enable detailed logging for WordPress AJAX requests and review for anomalous patterns
  • Implement real-time alerting for failed or successful file inclusion attempts using security monitoring tools
  • Monitor for process spawning from PHP workers that may indicate successful code execution
  • Deploy endpoint detection solutions to identify post-exploitation activities such as web shell deployment or reverse shell connections

How to Mitigate CVE-2023-5815

Immediate Actions Required

  • Update the News & Blog Designer Pack plugin to version 3.4.2 or later immediately
  • Audit WordPress installations for the presence of vulnerable plugin versions using wp plugin list or similar tools
  • Review web server logs for evidence of exploitation attempts against the bdp_get_more_post AJAX action
  • Consider temporarily disabling the plugin if immediate updates are not feasible

Patch Information

The vendor has released a security patch addressing this vulnerability. The fix can be reviewed in the WordPress Plugin Changeset. Users should update to version 3.4.2 or later through the WordPress admin dashboard or by downloading the updated plugin from the WordPress Plugin Directory. Additional vulnerability intelligence is available from Wordfence.

Workarounds

  • Implement WAF rules to block POST requests containing path traversal patterns or PHP file references targeting the vulnerable AJAX endpoint
  • Restrict access to admin-ajax.php for specific sensitive actions if the plugin cannot be immediately updated
  • Apply PHP configuration hardening by disabling dangerous functions and restricting open_basedir to limit file inclusion scope
  • In Docker environments, ensure proper file system permissions and consider read-only mounting for PHP directories
bash
# Configuration example - Apache .htaccess rule to block suspicious AJAX requests
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_METHOD} POST
    RewriteCond %{REQUEST_URI} admin-ajax\.php
    RewriteCond %{QUERY_STRING} action=bdp_get_more_post [NC,OR]
    RewriteCond %{HTTP:Content-Type} bdp_get_more_post [NC]
    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
  • TypeRCE

  • Vendor/TechInfornweb News Blog Designer Pack

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability43.25%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-Other
  • Technical References
  • WordPress Blog Designer Pack

  • Leave Songs Penetration Exploit

  • Wordfence Vulnerability Intelligence
  • Vendor Resources
  • WordPress Plugin Changeset
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected 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