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-2025-8105

CVE-2025-8105: Soledad WordPress Theme RCE Vulnerability

CVE-2025-8105 is a remote code execution flaw in the Soledad WordPress theme that allows unauthenticated attackers to execute arbitrary shortcodes. This article covers the technical details, affected versions, and mitigation.

Published: May 11, 2026

CVE-2025-8105 Overview

CVE-2025-8105 is an arbitrary shortcode execution vulnerability affecting the Soledad theme for WordPress in all versions up to and including 8.6.7. The flaw exists because the theme calls do_shortcode on user-supplied input without proper validation. Unauthenticated attackers can send crafted requests over the network to execute arbitrary WordPress shortcodes on a vulnerable site. The issue is classified under CWE-94 (Improper Control of Generation of Code).

Critical Impact

Unauthenticated remote attackers can invoke arbitrary shortcodes, potentially abusing privileged shortcodes from the theme or other installed plugins to disclose data, render attacker content, or trigger unintended server-side actions.

Affected Products

  • Soledad WordPress theme versions <= 8.6.7
  • WordPress sites distributed via ThemeForest Soledad listing
  • Any WordPress deployment using Soledad together with shortcode-enabled plugins

Discovery Timeline

  • 2025-08-16 - CVE-2025-8105 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-8105

Vulnerability Analysis

The Soledad theme exposes an action handler that passes request-supplied data to WordPress's do_shortcode function without validating or restricting the shortcode name or attributes. Because the handler is reachable without authentication, any visitor can submit a payload that causes the WordPress shortcode parser to execute registered shortcodes on the attacker's behalf.

WordPress shortcodes are server-side handlers registered by themes and plugins. Several common plugins register shortcodes that read database records, render private content, send email, or interact with other site features. Allowing arbitrary invocation collapses the trust boundary that normally restricts shortcode execution to authorized post authors and editors.

The impact depends on which shortcodes are registered on a given site, which is why the CVSS impact subscores are partial across confidentiality, integrity, and availability rather than full. The EPSS probability is 0.697% at the 72nd percentile, indicating elevated likelihood of exploit activity for an internet-facing WordPress component.

Root Cause

The root cause is missing input validation before a call to do_shortcode. The vulnerable action does not constrain the shortcode tag to a fixed allowlist, does not verify a nonce, and does not require an authenticated capability check. This combination converts a benign rendering helper into an unauthenticated code generation primitive [CWE-94].

Attack Vector

Exploitation requires only a network request to the WordPress site, typically against the admin-ajax.php endpoint or a similar action route exposed by the theme. The attacker supplies a shortcode string referencing any shortcode tag registered in the WordPress runtime. The server parses the input and executes the corresponding shortcode handler, returning its output to the attacker. No user interaction or prior session is required.

A detailed write-up of the flaw is available in the Wordfence Vulnerability Report. No public proof-of-concept code has been verified at the time of writing.

Detection Methods for CVE-2025-8105

Indicators of Compromise

  • Unauthenticated POST requests to admin-ajax.php with action parameters tied to Soledad and payloads containing [ and ] shortcode delimiters
  • Bursts of identical AJAX requests from a single source IP testing different shortcode tags
  • HTTP responses returning content that maps to internal shortcode output (form fields, user lists, file paths) for unauthenticated callers
  • New or unexpected outbound HTTP calls originating from php-fpm or the web server process correlating with inbound theme requests

Detection Strategies

  • Review web server access logs for unauthenticated requests to theme action handlers containing URL-encoded %5B and %5D characters indicative of shortcode payloads
  • Monitor WordPress debug logs and PHP error logs for shortcode handlers executing without an authenticated user context
  • Compare the installed Soledad theme version against 8.6.7 and flag any host at or below that version as exposed

Monitoring Recommendations

  • Enable a Web Application Firewall (WAF) ruleset that inspects POST bodies and query strings for shortcode syntax targeting Soledad action endpoints
  • Forward WordPress and web server logs to a centralized analytics platform and alert on anomalous AJAX action volume per source IP
  • Track file integrity for wp-content/themes/soledad/ to detect tampering following exploitation attempts

How to Mitigate CVE-2025-8105

Immediate Actions Required

  • Update the Soledad theme to a version newer than 8.6.7 as published in the ThemeForest Update Changelog
  • Audit the list of registered shortcodes on the site and remove or restrict any that expose sensitive data or perform privileged actions
  • Restrict access to admin-ajax.php and theme action endpoints behind a WAF until the patched theme version is deployed
  • Review access logs for prior exploitation attempts and rotate any credentials or tokens that could have been disclosed through shortcode output

Patch Information

The vendor has released an updated Soledad theme version that adds validation before invoking do_shortcode. Customers should obtain the latest build through their ThemeForest account and follow the upgrade steps in the ThemeForest Update Changelog. Confirm the active theme version in the WordPress admin under Appearance → Themes after upgrade.

Workarounds

  • Deploy WAF signatures that block unauthenticated POST requests containing shortcode delimiters to Soledad-specific action names
  • Temporarily disable the Soledad theme and switch to a default WordPress theme on sites that cannot be patched immediately
  • Remove unused shortcode-providing plugins to reduce the attack surface available through the vulnerable handler
bash
# Example: block shortcode payloads at the web tier with an nginx rule
location = /wp-admin/admin-ajax.php {
    if ($request_method = POST) {
        set $block 0;
        if ($request_body ~* "\[/?[a-z0-9_-]+(\s|\])") { set $block 1; }
        if ($arg_action ~* "soledad") { set $block "${block}1"; }
        if ($block = "11") { return 403; }
    }
    include fastcgi_params;
    fastcgi_pass php_upstream;
}

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

  • 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
  • ThemeForest Update Changelog

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-4882: WordPress URAF Plugin RCE Vulnerability

  • CVE-2026-7647: Profile Builder Pro WordPress RCE Flaw

  • CVE-2026-2052: WordPress Widget Options RCE Vulnerability

  • CVE-2026-5294: Geeky Bot WordPress Plugin 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