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

CVE-2025-14804: WordPress File Manager Path Traversal Flaw

CVE-2025-14804 is a path traversal vulnerability in the Frontend File Manager Plugin for WordPress that allows authenticated users to delete arbitrary files on the server. This article covers technical details, affected versions, impact, and mitigation.

Updated: January 22, 2026

CVE-2025-14804 Overview

The Frontend File Manager Plugin for WordPress versions prior to 23.5 contains an arbitrary file deletion vulnerability that allows authenticated users to delete files from the server without proper authorization. The vulnerability exists due to insufficient validation of a path parameter and lack of ownership verification, enabling users with minimal privileges (such as subscribers) to remove critical files from the web server.

Critical Impact

Authenticated users with low-level privileges can delete arbitrary files on the server, potentially leading to complete site takeover, denial of service, or removal of security controls.

Affected Products

  • Frontend File Manager Plugin for WordPress (versions before 23.5)

Discovery Timeline

  • 2026-01-07 - CVE-2025-14804 published to NVD
  • 2026-01-08 - Last updated in NVD database

Technical Details for CVE-2025-14804

Vulnerability Analysis

This vulnerability is classified as Path Traversal combined with Broken Access Control. The Frontend File Manager Plugin fails to properly sanitize user-supplied path parameters and does not verify file ownership before processing deletion requests. This architectural flaw enables any authenticated WordPress user, regardless of their role or permission level, to manipulate the file path parameter and delete arbitrary files on the server.

The lack of input validation on the path parameter allows attackers to use directory traversal sequences to escape the intended upload directory and target sensitive system files. Additionally, the absence of ownership checks means users can delete files they did not upload and have no legitimate access to.

Root Cause

The root cause of this vulnerability lies in two critical security oversights in the plugin's file deletion functionality:

  1. Improper Input Validation: The plugin does not sanitize or validate the path parameter passed to the file deletion function, allowing directory traversal characters (e.g., ../) to be processed.

  2. Missing Authorization Checks: The plugin fails to verify that the requesting user has ownership or appropriate permissions for the file being deleted. Any authenticated user, including those with the lowest subscriber role, can invoke the deletion functionality.

Attack Vector

The attack is network-based and requires only low-privilege authentication to exploit. An attacker with a valid WordPress subscriber account can craft malicious requests to the vulnerable endpoint, manipulating the path parameter to target files outside the intended directory structure.

Potential attack scenarios include:

  • Deleting the wp-config.php file to cause a denial of service or force WordPress into setup mode
  • Removing security plugins or .htaccess files to weaken server defenses
  • Deleting backup files to prevent recovery after a subsequent attack
  • Removing log files to cover tracks of malicious activity

The vulnerability requires no user interaction and can be exploited directly through HTTP requests to the affected endpoint.

Detection Methods for CVE-2025-14804

Indicators of Compromise

  • Unexpected file deletions in WordPress core directories or uploads folder
  • Presence of directory traversal patterns (../) in web server access logs
  • Missing wp-config.php, .htaccess, or other critical configuration files
  • Unusual activity from low-privilege WordPress user accounts
  • POST requests to Frontend File Manager endpoints with suspicious path parameters

Detection Strategies

  • Monitor web server logs for requests containing path traversal sequences targeting the Frontend File Manager plugin endpoints
  • Implement file integrity monitoring (FIM) to detect unauthorized deletions of critical WordPress files
  • Configure WordPress security plugins to alert on subscriber-level users accessing file management functions
  • Review WordPress user activity logs for file operations performed by accounts with minimal privileges

Monitoring Recommendations

  • Enable detailed access logging for the wp-content/plugins/frontend-file-manager/ directory
  • Set up real-time alerts for deletion of critical files such as wp-config.php, .htaccess, and plugin files
  • Monitor for unusual patterns of file system changes, particularly from web server processes
  • Implement SentinelOne Singularity Platform for comprehensive endpoint detection and response capabilities

How to Mitigate CVE-2025-14804

Immediate Actions Required

  • Update Frontend File Manager Plugin to version 23.5 or later immediately
  • Review WordPress user accounts and remove unnecessary subscriber or low-privilege accounts
  • Audit file system for any unexpected deletions or modifications
  • Consider temporarily disabling the plugin if an immediate update is not possible
  • Implement additional access controls at the web server level to restrict file operations

Patch Information

The vulnerability is addressed in Frontend File Manager Plugin version 23.5 and later. Site administrators should update to the latest version through the WordPress plugin dashboard or by downloading the patched version directly from the WordPress plugin repository. For detailed information about this vulnerability, refer to the WPScan Vulnerability Report.

Workarounds

  • Restrict plugin access to only trusted administrator accounts by modifying plugin permissions
  • Implement web application firewall (WAF) rules to block requests containing directory traversal patterns
  • Use file system permissions to make critical files immutable or read-only at the operating system level
  • Disable the file deletion functionality within the plugin settings if available
  • Monitor and restrict the capabilities of subscriber-level WordPress accounts
bash
# Protect critical WordPress files with restrictive permissions
chmod 400 wp-config.php
chattr +i wp-config.php  # Make file immutable (Linux)

# Block directory traversal in .htaccess
RewriteEngine On
RewriteCond %{QUERY_STRING} (\.\./|\.\.) [NC]
RewriteRule .* - [F,L]

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechWordpress

  • SeverityHIGH

  • CVSS Score7.7

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:N/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • WPScan Vulnerability Report
  • Related CVEs
  • CVE-2026-3243: Advanced Members ACF Path Traversal Flaw

  • CVE-2026-5436: MW WP Form Path Traversal Vulnerability

  • CVE-2026-3666: wpForo Forum Path Traversal Vulnerability

  • CVE-2026-4350: Perfmatters WordPress Path Traversal 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