Skip to main content
COSMICBYTEZLABS
NewsSecurityHOWTOsToolsTraining
StudyProjectsNewsletterHire MeAbout
Subscribe

Press Enter to search or Esc to close

News
Security
HOWTOs
Tools
Training
Study
Projects
Newsletter
Hire Me
About
RSS Feed
Reading List
Subscribe

Stay in the Loop

Get the latest security alerts, tutorials, and tech insights delivered to your inbox.

Subscribe NowFree forever. No spam.
COSMICBYTEZLABS

Your trusted source for IT intelligence, cybersecurity insights, and hands-on technical guides.

2376+ Articles
158+ Guides

CONTENT

  • Latest News
  • Security Alerts
  • HOWTOs
  • Checklists
  • Projects
  • Exam Prep

RESOURCES

  • Search
  • Browse Tags
  • Newsletter Archive
  • Reading List
  • RSS Feed

COMPANY

  • About Us
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CosmicBytez Labs. All rights reserved.

System Status: Operational
  1. Home
  2. Security
  3. CVE-2026-14484: WordPress RapiSafe Plugin Arbitrary File Deletion
CVE-2026-14484: WordPress RapiSafe Plugin Arbitrary File Deletion

Critical Security Alert

This vulnerability is actively being exploited. Immediate action is recommended.

SECURITYCRITICALCVE-2026-14484

CVE-2026-14484: WordPress RapiSafe Plugin Arbitrary File Deletion

Critical unauthenticated arbitrary file deletion in WordPress RapiSafe plugin v1.0.4 and below allows attackers to delete any file on the server.

Dylan H.

Security Team

August 15, 2026
3 min read

Affected Products

  • RapiSafe – Secure Multi File Upload for Contact Form 7 <= 1.0.4

Executive Summary

A critical unauthenticated arbitrary file deletion vulnerability has been disclosed in the RapiSafe – Secure Multi File Upload for Contact Form 7 WordPress plugin. Tracked as CVE-2026-14484 with a CVSS score of 9.1 (Critical), the flaw exists in all versions up to and including 1.0.4 and allows any unauthenticated attacker to delete arbitrary files on the server — including wp-config.php, which would effectively destroy the WordPress installation.


Vulnerability Overview

AttributeValue
CVE IDCVE-2026-14484
CVSS Score9.1 (Critical)
TypeArbitrary File Deletion
Attack VectorNetwork
AuthenticationNone required
Affected PluginRapiSafe – Secure Multi File Upload for Contact Form 7
Affected VersionsAll versions <= 1.0.4
Patch AvailableCheck plugin repository for updated version

Technical Details

The vulnerability resides in the handleAjaxRemoveUpload function of the RapiSafe plugin. This AJAX handler is registered on wp_ajax_nopriv_*, meaning it is accessible to unauthenticated users. The function is responsible for removing uploaded files before a contact form is submitted, but it performs insufficient file path validation.

Because no sanitization or restriction is applied to the file path parameter, an attacker can supply a crafted path using directory traversal sequences (e.g., ../../) to escape the upload directory and target any file readable or writable by the web server process. Deleting wp-config.php is the most impactful attack, as it causes WordPress to enter installation mode and can expose database credentials from server backups.

Attack Flow

1. Attacker identifies a WordPress site running RapiSafe plugin <= 1.0.4
2. Crafts an AJAX request to the handleAjaxRemoveUpload endpoint
3. Supplies a path-traversal string pointing to a target file (e.g. wp-config.php)
4. Server deletes the targeted file without authentication or path validation
5. Site may become unavailable or enter re-installation mode

Impact

  • Site takeover via re-installation: Deleting wp-config.php causes WordPress to believe it is not configured, prompting re-installation. An attacker completing re-installation gains full admin access.
  • Data destruction: Any file writable by the web server process — uploads, themes, plugins, or core files — can be permanently deleted.
  • Denial of service: Deletion of critical files can render the site inoperable.

Affected Versions

PluginAffected VersionsStatus
RapiSafe – Secure Multi File Upload for Contact Form 7<= 1.0.4Patch available

Remediation

  1. Update immediately: Install the latest version of the RapiSafe plugin from the WordPress plugin repository.
  2. If no patch is available: Deactivate and remove the plugin until a patched version is released.
  3. Audit file permissions: Ensure the web server process does not have write access to files outside the wp-content/uploads directory where possible.
  4. Review server logs: Check for unexpected AJAX requests to wp_ajax_nopriv_* endpoints targeting file removal handlers.
  5. Restore from backup: If exploitation is suspected, restore wp-config.php and other critical files from a known-good backup.

Detection

Look for HTTP POST requests in web server access logs targeting WordPress admin-ajax with the action matching the plugin's removal handler, particularly those containing directory traversal patterns (../, ..%2F, %2e%2e%2f) in parameters.


References

  • NVD — CVE-2026-14484
  • WordPress Plugin Repository — RapiSafe
#CVE-2026-14484#WordPress#File Deletion#Path Traversal#Contact Form 7#Critical

Related Articles

CVE-2026-3141: WordPress FormGent Plugin Unauthorized File Deletion (CVSS 9.1)

A critical unauthenticated file deletion vulnerability in the FormGent WordPress plugin allows attackers to delete arbitrary files without authentication, potentially leading to full site compromise.

2 min read

CVE-2026-9725: Critical WordPress WooCommerce Plugin File Deletion

A CVSS 9.1 critical unauthenticated arbitrary file deletion vulnerability in the Printcart Web to Print Product Designer for WooCommerce plugin affects...

4 min read

CVE-2026-57331: Critical Arbitrary File Deletion in Paid Videochat Turnkey Site

A CVSS 9.9 critical vulnerability in the Paid Videochat Turnkey Site WordPress plugin allows authenticated performer-role users to delete arbitrary files...

4 min read
Back to all Security Alerts