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

CVE-2025-6463: Forminator Path Traversal Vulnerability

CVE-2025-6463 is a path traversal flaw in Incsub Forminator for WordPress that enables arbitrary file deletion, potentially leading to remote code execution. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-6463 Overview

CVE-2025-6463 is an arbitrary file deletion vulnerability affecting the Forminator Forms plugin for WordPress. The vulnerability exists in the entry_delete_upload_files function due to insufficient file path validation, allowing unauthenticated attackers to include arbitrary file paths in form submissions. When the form submission is later deleted—either manually by an administrator or automatically via plugin settings—the referenced file is deleted from the server. This vulnerability can be leveraged to achieve remote code execution by deleting critical WordPress files such as wp-config.php.

Critical Impact

Unauthenticated attackers can trigger deletion of arbitrary files on the WordPress server, potentially leading to complete site compromise and remote code execution.

Affected Products

  • Incsub Forminator (WordPress Plugin) versions up to and including 1.44.2
  • WordPress installations using the Forminator Forms plugin
  • Sites using Forminator for Contact Forms, Payment Forms, and Custom Form Builder functionality

Discovery Timeline

  • July 2, 2025 - CVE-2025-6463 published to NVD
  • July 7, 2025 - Last updated in NVD database

Technical Details for CVE-2025-6463

Vulnerability Analysis

This vulnerability falls under CWE-73 (External Control of File Name or Path), a class of file system vulnerabilities where attackers can manipulate file paths processed by an application. The flaw resides in the entry_delete_upload_files function within the Forminator plugin's form entry model class.

When users submit forms through Forminator, the plugin stores metadata about uploaded files. The vulnerable function fails to properly validate or sanitize the file paths stored in form submissions before attempting to delete them. This allows attackers to inject path traversal sequences or absolute file paths into the form data, pointing to arbitrary files on the server's file system.

The attack is particularly dangerous because it operates in two stages: first, the attacker submits a malicious form entry containing crafted file paths; second, the deletion occurs when the form entry is removed. This delayed execution means administrators may unknowingly trigger the file deletion when performing routine cleanup or when the plugin's auto-deletion feature activates based on configured retention settings.

Root Cause

The root cause of this vulnerability is the absence of proper input validation and path canonicalization in the entry_delete_upload_files function located in class-form-entry-model.php. The function accepts file path data from stored form entries without verifying that the paths correspond to legitimately uploaded files or that they remain within expected directories. This allows attackers to specify paths outside the intended upload directory, including critical system and WordPress configuration files.

Attack Vector

The attack vector is network-based and requires no authentication. An attacker can exploit this vulnerability by:

  1. Identifying a WordPress site using the vulnerable Forminator plugin
  2. Submitting a form with manipulated file upload metadata containing paths to critical files (e.g., ../../../wp-config.php)
  3. Waiting for the form submission to be deleted through either administrative action or automatic cleanup

The vulnerability gains additional severity because deleting wp-config.php forces WordPress into setup mode, allowing attackers to reconfigure the database connection and potentially achieve full remote code execution. The attack requires user interaction in the form of an administrator or automated process deleting the malicious form entry.

The vulnerability mechanism involves insufficient path validation in the form entry deletion handler. When form entries containing file upload references are deleted, the plugin attempts to remove associated files from the filesystem. However, the entry_delete_upload_files function does not verify that file paths are within expected boundaries, allowing attackers to craft submissions with arbitrary paths. For detailed technical analysis, see the WordPress Forminator Code Review and the Wordfence Vulnerability Report.

Detection Methods for CVE-2025-6463

Indicators of Compromise

  • Unexpected deletion of WordPress core files, especially wp-config.php, .htaccess, or index.php
  • Form submissions containing path traversal sequences (../) in file upload fields
  • WordPress site entering setup/installation mode without administrator action
  • Database connection errors following form entry deletions

Detection Strategies

  • Monitor file integrity of critical WordPress files using checksums or file integrity monitoring solutions
  • Review Forminator form entries for suspicious file path patterns before deletion
  • Implement web application firewall rules to detect path traversal attempts in form submissions
  • Audit plugin logs for unusual form submission patterns or file deletion activities

Monitoring Recommendations

  • Enable comprehensive logging for the Forminator plugin and WordPress file operations
  • Set up alerts for any modifications or deletions of wp-config.php and other critical files
  • Monitor for sudden WordPress installation prompts which may indicate wp-config.php deletion
  • Track form submission metadata for anomalous file path entries

How to Mitigate CVE-2025-6463

Immediate Actions Required

  • Update Forminator Forms plugin to a version newer than 1.44.2 immediately
  • Review and delete any suspicious form entries that may contain malicious file paths
  • Temporarily disable auto-deletion of form entries until the plugin is patched
  • Back up wp-config.php and other critical WordPress files

Patch Information

Incsub has released a security patch addressing this vulnerability. The fix implements proper file path validation in the entry_delete_upload_files function to ensure only legitimate uploaded files within expected directories can be deleted. Administrators should update to the latest available version of Forminator Forms through the WordPress plugin repository. The patch details can be reviewed at the WordPress Forminator Changeset.

Workarounds

  • Disable the Forminator plugin entirely until patching is possible if form functionality is not critical
  • Implement server-level file permissions to protect critical files from deletion by the web server process
  • Use a Web Application Firewall (WAF) to filter form submissions containing path traversal patterns
  • Manually review all form entries before deletion rather than relying on auto-delete functionality
bash
# Protect wp-config.php with restrictive permissions
chmod 440 wp-config.php
chown root:www-data wp-config.php

# Create immutable backup of critical files (Linux)
cp wp-config.php wp-config.php.backup
chattr +i wp-config.php.backup

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechIncsub Forminator

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.28%

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

  • Wordfence Vulnerability Report
  • Vendor Resources
  • WordPress Forminator Changeset
  • Related CVEs
  • CVE-2024-28890: Incsub Forminator File Upload Vulnerability

  • CVE-2023-4596: Incsub Forminator 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