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

CVE-2025-13486: WordPress ACF Extended Plugin RCE Flaw

CVE-2025-13486 is a remote code execution vulnerability in the Advanced Custom Fields: Extended WordPress plugin that lets unauthenticated attackers execute arbitrary code. This article covers technical details, affected versions, impact, and mitigation.

Published: March 11, 2026

CVE-2025-13486 Overview

The Advanced Custom Fields: Extended (ACF Extended) plugin for WordPress contains a critical Remote Code Execution (RCE) vulnerability affecting versions 0.9.0.5 through 0.9.1.1. The vulnerability exists in the prepare_form() function, which improperly accepts user-supplied input and passes it directly to PHP's call_user_func_array() function. This dangerous code pattern allows unauthenticated attackers to execute arbitrary code on the server, potentially leading to complete site compromise including backdoor injection and creation of malicious administrative accounts.

Critical Impact

Unauthenticated attackers can achieve full remote code execution on vulnerable WordPress installations, enabling complete server compromise, data theft, and persistent backdoor access.

Affected Products

  • Advanced Custom Fields: Extended plugin version 0.9.0.5
  • Advanced Custom Fields: Extended plugin version 0.9.1.0
  • Advanced Custom Fields: Extended plugin version 0.9.1.1

Discovery Timeline

  • December 3, 2025 - CVE-2025-13486 published to NVD
  • December 4, 2025 - Last updated in NVD database

Technical Details for CVE-2025-13486

Vulnerability Analysis

This vulnerability falls under CWE-94 (Improper Control of Generation of Code, or Code Injection). The core issue stems from the prepare_form() function within the ACF Extended plugin accepting user-controlled input without proper validation or sanitization. This input is subsequently passed to PHP's call_user_func_array() function, a dangerous pattern that allows attackers to invoke arbitrary PHP functions with attacker-controlled arguments.

The call_user_func_array() function in PHP is designed to call a callback function with parameters provided as an array. When user input can influence either the callback function name or the parameters, attackers can execute virtually any PHP function available in the runtime environment. This can include system command execution functions like system(), exec(), passthru(), or file manipulation functions.

Since the vulnerability requires no authentication, any remote attacker with network access to the WordPress installation can exploit this flaw. The exploitation does not require any user interaction, making it particularly dangerous for internet-facing WordPress sites using the affected plugin versions.

Root Cause

The root cause is insufficient input validation in the prepare_form() function combined with the unsafe use of call_user_func_array(). The function accepts external input that directly influences the callback function or its parameters, creating a code injection pathway. Proper security controls would require strict allowlisting of permitted callbacks and thorough sanitization of all user-supplied data before use in dynamic function calls.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can craft malicious HTTP requests to the vulnerable WordPress endpoint, manipulating the input parameters processed by prepare_form(). By controlling the function name or arguments passed to call_user_func_array(), the attacker can:

  1. Execute arbitrary PHP functions on the server
  2. Run system commands to establish reverse shells
  3. Write malicious files to the web root for persistent access
  4. Create new WordPress administrator accounts
  5. Modify existing files to inject backdoors
  6. Exfiltrate sensitive data including database credentials

The vulnerability mechanism centers on the prepare_form() function accepting user input and passing it to call_user_func_array() without proper validation. This allows attackers to specify arbitrary PHP callbacks with controlled arguments. For technical details on the specific code changes, refer to the WordPress ACF Extended Changeset.

Detection Methods for CVE-2025-13486

Indicators of Compromise

  • Unexpected PHP files in WordPress directories, particularly in wp-content/plugins/ or wp-content/uploads/
  • Newly created administrator accounts not authorized by site owners
  • Unusual outbound network connections from the web server
  • Modified core WordPress or plugin files with injected code
  • Web server access logs showing suspicious POST requests to ACF Extended endpoints

Detection Strategies

  • Monitor web server logs for unusual POST requests targeting ACF Extended plugin endpoints with abnormal parameter patterns
  • Implement file integrity monitoring on WordPress installations to detect unauthorized file modifications
  • Deploy web application firewalls (WAF) with rules to detect PHP code injection attempts
  • Review WordPress user accounts for unauthorized administrator creation
  • Scan for known webshell signatures in the WordPress installation directory

Monitoring Recommendations

  • Enable verbose logging on WordPress and web server components to capture detailed request data
  • Configure alerting for new user account creation, especially with administrator privileges
  • Monitor server resource utilization for anomalies indicating cryptomining or other malicious activity
  • Implement network-level monitoring for suspicious outbound connections from web servers

How to Mitigate CVE-2025-13486

Immediate Actions Required

  • Update Advanced Custom Fields: Extended plugin to the latest patched version immediately
  • If immediate patching is not possible, deactivate the ACF Extended plugin until a fix can be applied
  • Audit WordPress installations for signs of compromise including unauthorized users and modified files
  • Review web server logs for evidence of exploitation attempts
  • Consider temporarily restricting access to WordPress admin areas via IP allowlisting

Patch Information

The vulnerability has been addressed by the plugin maintainers. Security updates are tracked in the WordPress ACF Extended Changeset. Site administrators should update to the latest available version through the WordPress plugin update mechanism. Additional vulnerability details are available in the Wordfence Vulnerability Report.

Workarounds

  • Deactivate the ACF Extended plugin if updating is not immediately possible
  • Implement web application firewall (WAF) rules to block malicious requests targeting the vulnerable function
  • Restrict access to the WordPress site at the network level using IP-based access controls
  • Enable WordPress security plugins that can detect and block code injection attempts
bash
# Disable the vulnerable plugin via WP-CLI until patching
wp plugin deactivate acf-extended

# Verify no unauthorized admin accounts exist
wp user list --role=administrator --fields=ID,user_login,user_email

# Check for recently modified files in the plugin directory
find /path/to/wordpress/wp-content/plugins/ -mtime -7 -type f -name "*.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

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability75.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
  • CWE-94
  • Technical References
  • WordPress ACF Extended Changeset

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-1830: WordPress Quick Playground RCE Vulnerability

  • CVE-2026-3535: WordPress DSGVO Google Fonts RCE Flaw

  • CVE-2026-4808: WordPress DevApps Plugin RCE Vulnerability

  • CVE-2026-2942: ProSolution WP Client 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