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

CVE-2025-14037: WordPress Product Feeds Path Traversal

CVE-2025-14037 is a path traversal flaw in Invelity Product Feeds for WordPress allowing authenticated admins to delete arbitrary files via crafted requests. This article covers technical details, affected versions, and mitigations.

Published: March 27, 2026

CVE-2025-14037 Overview

CVE-2025-14037 is a path traversal vulnerability affecting the Invelity Product Feeds plugin for WordPress. The vulnerability allows authenticated attackers with administrator-level privileges to delete arbitrary files on the server through specially crafted requests containing path traversal sequences. Exploitation requires social engineering—specifically tricking an administrator into clicking a malicious link, indicating a Cross-Site Request Forgery (CSRF) component to the attack chain.

Critical Impact

Successful exploitation enables attackers to delete critical system files, potentially leading to complete website compromise, denial of service, or privilege escalation by removing security configurations.

Affected Products

  • Invelity Product Feeds plugin for WordPress versions up to and including 1.2.6

Discovery Timeline

  • 2026-03-21 - CVE-2025-14037 published to NVD
  • 2026-03-23 - Last updated in NVD database

Technical Details for CVE-2025-14037

Vulnerability Analysis

This vulnerability exists due to insufficient input validation and sanitization within the createManageFeedPage function of the Invelity Product Feeds WordPress plugin. The function processes user-supplied file paths without properly validating or sanitizing path traversal sequences such as ../ or ..\\. While the vulnerability requires administrator-level authentication, the attack surface is expanded through a CSRF weakness—attackers can craft malicious links that, when clicked by an authenticated administrator, trigger the arbitrary file deletion.

The impact extends beyond simple data loss. By strategically deleting files such as wp-config.php, .htaccess, or security plugin configurations, an attacker could render the site inoperable, bypass security controls, or create conditions favorable for further exploitation.

Root Cause

The root cause is missing validation and sanitization of user-supplied input in the createManageFeedPage function located in classPluginSettingsManageFeedPage.php. The function accepts file path parameters without checking for path traversal sequences, allowing attackers to navigate outside the intended directory structure and target arbitrary files on the server filesystem.

Attack Vector

The attack is network-based and requires authenticated administrator access combined with user interaction (clicking a malicious link). An attacker must craft a specially formatted URL containing path traversal sequences and convince an authenticated WordPress administrator to click it. The vulnerable function processes the request and deletes the specified file without proper authorization checks or CSRF token validation.

The attack flow involves constructing a malicious request targeting the vulnerable createManageFeedPage function with path traversal sequences embedded in the file path parameter. For example, a path like ../../../../wp-config.php would traverse from the plugin directory up to the WordPress root and target the main configuration file for deletion. Technical details and the vulnerable code can be reviewed in the WordPress Plugin Code Review.

Detection Methods for CVE-2025-14037

Indicators of Compromise

  • Unexpected deletion of WordPress core files, configuration files, or plugin/theme files
  • Web server error logs showing requests to the Invelity Product Feeds plugin admin pages with unusual path parameters containing ../ sequences
  • Missing wp-config.php, .htaccess, or other critical files without explanation
  • Administrator access logs showing requests to plugin settings pages from unfamiliar referrers or IP addresses

Detection Strategies

  • Monitor web application firewall (WAF) logs for path traversal patterns in requests targeting WordPress plugin endpoints
  • Implement file integrity monitoring (FIM) to detect unauthorized file deletions in WordPress directories
  • Review HTTP access logs for requests containing encoded or unencoded path traversal sequences (../, %2e%2e%2f, ..%5c)
  • Configure alerting for any file deletion operations originating from the Invelity Product Feeds plugin directory

Monitoring Recommendations

  • Enable comprehensive logging for WordPress admin actions and plugin activity
  • Deploy endpoint detection and response (EDR) solutions to monitor filesystem changes on web servers
  • Implement real-time alerting for deletion of critical WordPress files such as wp-config.php and .htaccess
  • Use SentinelOne Singularity Platform to detect and respond to suspicious file operations on WordPress hosting infrastructure

How to Mitigate CVE-2025-14037

Immediate Actions Required

  • Update the Invelity Product Feeds plugin to a patched version if available
  • Temporarily disable the Invelity Product Feeds plugin if no patch is available
  • Implement Web Application Firewall (WAF) rules to block path traversal sequences in requests to WordPress admin endpoints
  • Review recent administrator activity logs for suspicious link clicks or unusual plugin interactions
  • Verify integrity of critical WordPress files using checksums or file integrity monitoring tools

Patch Information

Security updates should be obtained through the official WordPress plugin repository. Monitor the Wordfence Vulnerability Advisory for patch availability and additional remediation guidance.

Workarounds

  • Restrict access to WordPress admin panel by IP address using .htaccess or server-level firewall rules
  • Implement additional CSRF protection using security plugins such as Wordfence or Sucuri
  • Remove or disable the Invelity Product Feeds plugin until a security patch is released
  • Deploy a WAF rule to specifically block requests containing path traversal patterns targeting the plugin's admin pages
bash
# .htaccess example to restrict admin access by IP
<Files "wp-admin/*">
    Order Deny,Allow
    Deny from all
    Allow from 192.168.1.100
    Allow from 10.0.0.0/8
</Files>

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 Score8.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:N/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-352
  • Technical References
  • WordPress Plugin Code Review

  • Wordfence Vulnerability Advisory
  • Related CVEs
  • CVE-2025-15433: Shared Files Plugin Path Traversal Flaw

  • CVE-2026-4758: WP Job Portal Path Traversal Vulnerability

  • CVE-2026-3339: WordPress Keep Backup Plugin Path Traversal

  • CVE-2026-4373: JetFormBuilder Path Traversal Vulnerability
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