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-2026-4347

CVE-2026-4347: MW WP Form WordPress Plugin RCE Vulnerability

CVE-2026-4347 is a remote code execution vulnerability in the MW WP Form WordPress plugin that allows unauthenticated attackers to move arbitrary files. This article covers technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2026-4347 Overview

The MW WP Form plugin for WordPress contains an arbitrary file moving vulnerability due to insufficient file path validation in the generate_user_filepath function and the move_temp_file_to_upload_dir function. This path traversal flaw (CWE-22) affects all versions up to and including 5.1.0, allowing unauthenticated attackers to move arbitrary files on the server. When exploited, this can lead to remote code execution by moving critical configuration files such as wp-config.php.

Critical Impact

Unauthenticated attackers can achieve remote code execution by moving sensitive server files, potentially compromising the entire WordPress installation and underlying server.

Affected Products

  • MW WP Form plugin for WordPress versions ≤ 5.1.0
  • WordPress installations with MW WP Form configured with file upload fields
  • Sites with "Saving inquiry data in database" option enabled

Discovery Timeline

  • 2026-04-02 - CVE-2026-4347 published to NVD
  • 2026-04-02 - Last updated in NVD database

Technical Details for CVE-2026-4347

Vulnerability Analysis

This vulnerability stems from a path traversal weakness in the MW WP Form plugin's file handling mechanism. The plugin fails to properly validate and sanitize file paths when processing uploaded files through forms. Specifically, the generate_user_filepath function in the controller class and the move_temp_file_to_upload_dir function in the directory model do not adequately restrict the destination paths for file operations.

The vulnerability requires specific conditions to be exploitable: a file upload field must be present in the form configuration, and the "Saving inquiry data in database" option must be enabled. When these conditions are met, an attacker can manipulate file path parameters to move files to arbitrary locations on the server.

Root Cause

The root cause lies in insufficient input validation and path canonicalization within the plugin's file handling functions. The generate_user_filepath function located at classes/controllers/class.main.php (line 271) and the move_temp_file_to_upload_dir function in classes/models/class.directory.php (line 138) fail to properly sanitize user-controlled path components, allowing directory traversal sequences to escape the intended upload directory.

Attack Vector

The attack is network-accessible and requires no authentication, though it has high attack complexity due to the prerequisite configuration requirements. An attacker must identify a WordPress site running a vulnerable version of MW WP Form with both a file upload field configured and the database storage option enabled.

The exploitation flow involves submitting a crafted form request that includes directory traversal sequences in the file path parameters. By manipulating these values, attackers can direct the plugin to move files from one location to another on the server. A particularly dangerous scenario involves moving the wp-config.php file to a web-accessible directory, potentially exposing database credentials and authentication keys, or moving a malicious file into an executable location.

For technical implementation details, see the WordPress Plugin Code Review and the Wordfence Vulnerability Report.

Detection Methods for CVE-2026-4347

Indicators of Compromise

  • Unexpected file movements or missing critical files such as wp-config.php
  • Unusual HTTP POST requests to form endpoints containing directory traversal patterns (e.g., ../)
  • Web server logs showing form submissions with suspicious file path parameters
  • New or modified files appearing in unexpected directories within the WordPress installation

Detection Strategies

  • Monitor web application firewall (WAF) logs for path traversal patterns targeting form submission endpoints
  • Implement file integrity monitoring on critical WordPress files including wp-config.php, wp-settings.php, and core plugin files
  • Deploy SentinelOne Singularity to detect anomalous file operations and process behaviors associated with WordPress exploitation
  • Review access logs for unusual POST requests to mw-wp-form endpoints with encoded path characters

Monitoring Recommendations

  • Enable verbose logging for the MW WP Form plugin to capture form submission details
  • Configure alerting for file system changes to the WordPress root and wp-content directories
  • Implement real-time monitoring of PHP process execution for suspicious file operations
  • Use SentinelOne's behavioral AI to detect post-exploitation activities following successful file manipulation

How to Mitigate CVE-2026-4347

Immediate Actions Required

  • Update MW WP Form plugin to a version newer than 5.1.0 when a patched version becomes available
  • Temporarily disable file upload fields in MW WP Form configurations until patched
  • Consider disabling the "Saving inquiry data in database" option to eliminate the prerequisite conditions
  • Implement WAF rules to block requests containing directory traversal sequences targeting form endpoints
  • Audit existing form configurations and remove unnecessary file upload capabilities

Patch Information

Organizations should monitor the WordPress Plugin Repository and the Wordfence Threat Intelligence page for official patch announcements. Until a patched version is released, implementing the recommended workarounds is critical for reducing exposure.

Workarounds

  • Remove or disable file upload fields from all MW WP Form configurations
  • Disable the "Saving inquiry data in database" option in form settings
  • Implement server-level restrictions on the upload directories using .htaccess or nginx configuration
  • Deploy application-layer protections that sanitize path parameters in form submissions
  • Consider using an alternative form plugin until a security update is available
bash
# Example .htaccess restriction for uploads directory
<Directory /var/www/html/wp-content/uploads>
    php_flag engine off
    Options -ExecCGI
    RemoveHandler .php .php3 .php4 .php5 .phtml
</Directory>

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

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-22
  • Technical References
  • WordPress Plugin Code Review

  • WordPress Plugin Code Review

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-4257: Contact Form by Supsystic RCE Vulnerability

  • CVE-2026-3328: WordPress Frontend Admin Plugin RCE Flaw

  • CVE-2026-3533: Jupiter X Core WordPress Plugin RCE Flaw

  • CVE-2026-3584: Kali Forms WordPress Plugin RCE 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