A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2024-10958

CVE-2024-10958: WP Photo Album Plus RCE Vulnerability

CVE-2024-10958 is a remote code execution vulnerability in WP Photo Album Plus WordPress plugin that enables unauthenticated attackers to execute arbitrary shortcodes. This guide covers technical details, affected versions, and fixes.

Published: June 2, 2026

CVE-2024-10958 Overview

CVE-2024-10958 affects the WP Photo Album Plus plugin for WordPress through version 8.8.08.007. The plugin exposes the getshortcodedrenderedfenodelay AJAX action without proper input validation. Unauthenticated attackers can pass arbitrary shortcode strings to this endpoint, which the plugin then passes directly to WordPress's do_shortcode function. This results in arbitrary shortcode execution against any vulnerable WordPress site running the plugin. The flaw is classified under [CWE-94] (Improper Control of Generation of Code).

Critical Impact

Unauthenticated remote attackers can execute arbitrary WordPress shortcodes, enabling content manipulation, information disclosure, and potential abuse of other plugins' shortcode handlers.

Affected Products

  • WP Photo Album Plus plugin for WordPress, all versions up to and including 8.8.08.007
  • WordPress sites running the vulnerable wppa-ajax.php handler
  • Sites combining WP Photo Album Plus with other shortcode-providing plugins

Discovery Timeline

  • 2024-11-10 - CVE-2024-10958 published to NVD
  • 2024-11-14 - Last updated in NVD database

Technical Details for CVE-2024-10958

Vulnerability Analysis

The vulnerability resides in the wppa-ajax.php file of the WP Photo Album Plus plugin. The AJAX action getshortcodedrenderedfenodelay is registered for both authenticated and unauthenticated requests through wp_ajax_nopriv_. The handler accepts a user-supplied parameter and passes it directly into WordPress's do_shortcode function without sanitization or capability checks.

WordPress's do_shortcode parses and executes any registered shortcode in the supplied string. Because shortcodes can be registered by any installed plugin or theme, an attacker can invoke shortcodes from unrelated components. This expands the impact beyond the photo album plugin itself to any shortcode handler available on the site.

The EPSS score of approximately 55.7% places this issue in the top 2% of vulnerabilities most likely to be exploited, reflecting both ease of exploitation and broad plugin deployment.

Root Cause

The root cause is missing input validation and missing authorization. The handler does not verify the caller's identity, does not enforce a nonce, and does not restrict which shortcodes can be rendered. Any string reaching the parameter is treated as trusted shortcode markup.

Attack Vector

Exploitation requires only a network-reachable WordPress site running the vulnerable plugin. An attacker sends an HTTP POST request to /wp-admin/admin-ajax.php with action=getshortcodedrenderedfenodelay and a crafted shortcode payload. The server processes the shortcode and returns the rendered output to the attacker. No authentication, user interaction, or special privileges are needed. See the WordPress Plugin Source Code for the affected handler and the Wordfence Vulnerability Report for additional analysis.

Detection Methods for CVE-2024-10958

Indicators of Compromise

  • POST requests to /wp-admin/admin-ajax.php containing action=getshortcodedrenderedfenodelay from unauthenticated sources.
  • Unexpected shortcode execution patterns in WordPress debug or access logs referencing plugin shortcodes the site does not normally render externally.
  • Outbound network connections initiated by PHP workers immediately following AJAX requests to the vulnerable endpoint.

Detection Strategies

  • Inspect web server logs for the string getshortcodedrenderedfenodelay in query strings or POST bodies, especially from anonymous clients.
  • Deploy WordPress security plugins or web application firewall (WAF) rules that flag AJAX actions invoking do_shortcode without an authenticated session.
  • Correlate spikes in admin-ajax.php traffic with the installed plugin version using the wppa:wp_photo_album_plus component identifier.

Monitoring Recommendations

  • Forward WordPress access logs and PHP error logs to a central SIEM for correlation across hosts.
  • Alert on repeated unauthenticated requests to admin-ajax.php that include shortcode delimiters such as [ and ] in parameters.
  • Track outbound HTTP requests from web servers to detect shortcodes that trigger remote content fetches.

How to Mitigate CVE-2024-10958

Immediate Actions Required

  • Update WP Photo Album Plus to a version newer than 8.8.08.007 that includes the fix from changeset 3184852.
  • Audit admin-ajax.php logs for prior exploitation attempts referencing getshortcodedrenderedfenodelay.
  • Review installed plugins and themes for shortcodes that perform sensitive actions such as data export or remote requests.

Patch Information

The vendor addressed the issue in the WP Photo Album Plus plugin. Refer to the WordPress Plugin Changeset for the corrective code change and to the WordPress Developer Resources for current plugin releases.

Workarounds

  • Deactivate and remove the WP Photo Album Plus plugin until patching is possible.
  • Add WAF rules blocking unauthenticated POST requests where action=getshortcodedrenderedfenodelay.
  • Restrict access to /wp-admin/admin-ajax.php from untrusted networks where feasible without breaking site functionality.
bash
# Configuration example: nginx rule to block the vulnerable AJAX action
location = /wp-admin/admin-ajax.php {
    if ($arg_action = "getshortcodedrenderedfenodelay") { return 403; }
    if ($request_body ~* "action=getshortcodedrenderedfenodelay") { return 403; }
}

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechWppa Wp Photo Album Plus

  • SeverityHIGH

  • CVSS Score7.3

  • EPSS Probability55.66%

  • 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
  • CWE References
  • CWE-94
  • Technical References
  • WordPress Plugin Source Code

  • WordPress Developer Resources

  • Wordfence Vulnerability Report
  • Vendor Resources
  • WordPress Plugin Changeset
  • Latest CVEs
  • CVE-2024-8261: Prolizyazilim OBS Auth Bypass Vulnerability

  • CVE-2024-13068: LimonDesk Auth Bypass Vulnerability

  • CVE-2025-53679: Fortinet FortiSandbox RCE Vulnerability

  • CVE-2026-9446: Simple POS Inventory System SQLi 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