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

CVE-2026-5478: Everest Forms Path Traversal Vulnerability

CVE-2026-5478 is a path traversal vulnerability in Everest Forms plugin for WordPress allowing arbitrary file read and deletion. Attackers can compromise sites by accessing wp-config.php. This article covers technical details, impact, and mitigation.

Updated: May 14, 2026

CVE-2026-5478 Overview

CVE-2026-5478 is a path traversal vulnerability [CWE-22] in the Everest Forms plugin for WordPress affecting all versions up to and including 3.4.4. The plugin trusts attacker-controlled old_files data from public form submissions as legitimate server-side upload state. It then converts attacker-supplied URLs into local filesystem paths using regex-based string replacement without canonicalization or directory boundary enforcement. Unauthenticated attackers can read arbitrary local files such as wp-config.php by injecting path-traversal payloads into the old_files upload field parameter. The same resolved path is later passed to unlink() during post-email cleanup, causing the targeted file to be deleted after exfiltration.

Critical Impact

Unauthenticated attackers can read and delete arbitrary files on the host, exposing database credentials and authentication salts from wp-config.php and enabling denial of service through deletion of critical files.

Affected Products

  • Everest Forms plugin for WordPress, all versions through 3.4.4
  • WordPress sites running forms with a file-upload or image-upload field
  • WordPress sites where the affected form has entry storage disabled

Discovery Timeline

  • 2026-04-20 - CVE-2026-5478 published to NVD
  • 2026-04-22 - Last updated in NVD database

Technical Details for CVE-2026-5478

Vulnerability Analysis

The vulnerability resides in the file upload handling logic within class-evf-form-fields-upload.php. The plugin reconstructs the server-side upload state from the old_files parameter submitted with the public form. Because this parameter is attacker-controlled, an unauthenticated user can supply arbitrary URL-like strings that the plugin maps to local filesystem paths.

The mapping step uses regex-based string replacement to translate a URL into a path. It does not call a canonicalization routine such as realpath() and does not enforce that the result remains inside the WordPress uploads directory. Sequences such as ../ survive the transformation and resolve outside the intended directory.

The resolved path is attached to the notification email sent by the form, which is the file-read primitive. The same path is then passed to unlink() in the post-email cleanup routine, which is the file-deletion primitive. Exploitation requires that the targeted form contain an upload field and that entry storage be disabled.

Root Cause

The root cause is improper limitation of a pathname to a restricted directory. The plugin treats client-submitted state as authoritative and performs URL-to-path translation through string substitution rather than validating the final path against an allow-listed base directory.

Attack Vector

An unauthenticated attacker submits a form that contains an upload field, injecting a path-traversal payload into the old_files parameter. The plugin resolves the payload to a target file such as /var/www/html/wp-config.php, attaches it to the outbound notification email, and then deletes the file from disk during cleanup.

No authenticated exploit code is required. See the Wordfence Vulnerability Report and the WordPress Code Review at line 1306 for the affected code paths.

Detection Methods for CVE-2026-5478

Indicators of Compromise

  • POST requests to /wp-admin/admin-ajax.php or form submission endpoints containing old_files parameter values with ../ sequences or absolute paths.
  • Unexpected outbound mail from the WordPress host with attachments matching sensitive filenames such as wp-config.php, .htaccess, or files outside wp-content/uploads/.
  • Missing or zero-byte wp-config.php or other core files following form submission activity.

Detection Strategies

  • Inspect web server access logs for form-submission requests containing old_files parameters with path-traversal characters or unexpected URL hosts.
  • Monitor mail transfer agent logs for outbound messages generated by Everest Forms with attachments referencing paths outside the uploads directory.
  • Enable WordPress audit logging on file integrity for core files such as wp-config.php, wp-load.php, and .htaccess.

Monitoring Recommendations

  • Centralize WordPress, web server, and MTA logs into a SIEM such as Singularity Data Lake to correlate form submissions with subsequent file deletions and outbound mail.
  • Alert on unlink() events targeting paths outside the WordPress uploads directory through endpoint telemetry.
  • Track creation of new admin users or modifications following any suspected wp-config.php disclosure, since stolen authentication salts enable session forgery.

How to Mitigate CVE-2026-5478

Immediate Actions Required

  • Update the Everest Forms plugin to the version released in changeset 3507814 or later.
  • Rotate all WordPress secrets in wp-config.php, including AUTH_KEY, SECURE_AUTH_KEY, LOGGED_IN_KEY, NONCE_KEY, and the corresponding salts.
  • Rotate database credentials and audit user accounts for unauthorized additions or privilege changes.
  • Restore any files deleted by exploitation from a known-good backup.

Patch Information

The vendor has released a fix in the WordPress plugin repository. Review the WordPress Change Log for the corrected upload handling logic and update through the WordPress admin Plugins page or via WP-CLI with wp plugin update everest-forms.

Workarounds

  • Deactivate the Everest Forms plugin until the patched version is deployed.
  • Remove or disable forms that contain file-upload or image-upload fields, since the vulnerability requires this field type.
  • Enable entry storage on affected forms, which is a documented prerequisite that disables the vulnerable code path.
  • Restrict access to form submission endpoints with a web application firewall rule that blocks old_files parameters containing ../, ..\, or absolute filesystem paths.
bash
# Update Everest Forms using WP-CLI
wp plugin update everest-forms
wp plugin status everest-forms

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.02%

  • 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 Code Review

  • WordPress Code Review

  • WordPress Code Review

  • WordPress Change Log

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-6381: WP Maps Path Traversal Vulnerability

  • CVE-2018-25324: Simple Fields WordPress Path Traversal

  • CVE-2021-47977: WordPress Anti-Malware Path Traversal Flaw

  • CVE-2021-47979: WordPress Backup Plugin File Deletion Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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