CVE-2026-12094
Deferred Deferred - Pending Action

Unauthenticated Data Deletion in Advanced Contact Form 7 - Compact DB Plugin

Vulnerability report for CVE-2026-12094, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-06-24

Last updated on: 2026-06-24

Assigner: Wordfence

Description

The Advanced Contact Form 7 - Compact DB plugin for WordPress is vulnerable to unauthorized deletion of data due to a missing capability check on the cf7cdb_ajax_delete_user() function in versions up to, and including, 1.0.0. The handler is registered against both `wp_ajax_cf7cdb_delete` and `wp_ajax_nopriv_cf7cdb_delete`, and it performs no nonce verification, no capability check, and no ownership check before invoking `$wpdb->delete()` against the `wp_cf7cdb_data` table with an attacker-supplied integer ID. This makes it possible for unauthenticated attackers to delete arbitrary contact form submission entries stored by the plugin by iterating sequential primary-key IDs.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-06-24
Last Modified
2026-06-24
Generated
2026-07-14
AI Q&A
2026-06-24
EPSS Evaluated
2026-07-13
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
advanced_contact_form_7_compact_db plugin to 1.0.0 (inc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-862 The product does not perform an authorization check when an actor attempts to access a resource or perform an action.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Compliance Impact

The vulnerability allows unauthenticated attackers to delete arbitrary contact form submission entries stored by the plugin. This unauthorized deletion of data could impact data integrity and availability, which are important aspects of compliance with standards like GDPR and HIPAA.

However, there is no direct information provided about specific compliance impacts or regulatory violations caused by this vulnerability.

Executive Summary

The Advanced Contact Form 7 - Compact DB plugin for WordPress has a vulnerability that allows unauthorized deletion of data. This happens because the function cf7cdb_ajax_delete_user() does not check if the user has permission to delete data, does not verify a security nonce, and does not check if the user owns the data before deleting it.

The function is accessible to both authenticated and unauthenticated users via AJAX actions, and it deletes entries from the plugin's data table based on an attacker-supplied ID. This means an attacker can delete arbitrary contact form submission entries by guessing or iterating through the IDs.

Impact Analysis

This vulnerability can lead to the unauthorized deletion of contact form submission data stored by the plugin. An attacker can remove important user-submitted information without any authentication or permission.

The impact is data integrity loss, which could disrupt business operations, cause loss of important user feedback or inquiries, and potentially harm trust in the website.

Detection Guidance

This vulnerability involves unauthorized deletion of data via the cf7cdb_ajax_delete_user() function in the Advanced Contact Form 7 - Compact DB plugin for WordPress. Detection would involve monitoring for suspicious HTTP requests targeting the AJAX actions wp_ajax_cf7cdb_delete and wp_ajax_nopriv_cf7cdb_delete.

You can detect exploitation attempts by searching your web server logs for POST requests to admin-ajax.php with the action parameter set to cf7cdb_delete.

  • Example command to search Apache logs: grep 'admin-ajax.php' /var/log/apache2/access.log | grep 'action=cf7cdb_delete'
  • Example command to search Nginx logs: grep 'admin-ajax.php' /var/log/nginx/access.log | grep 'action=cf7cdb_delete'

Additionally, monitoring for unexpected deletions in the wp_cf7cdb_data database table may help detect exploitation.

Mitigation Strategies

To mitigate this vulnerability, immediately update the Advanced Contact Form 7 - Compact DB plugin to a version that includes proper capability checks and nonce verification, if such an update is available.

If an update is not yet available, consider temporarily disabling or removing the plugin to prevent exploitation.

Additionally, restrict access to admin-ajax.php or implement web application firewall (WAF) rules to block unauthorized requests to the cf7cdb_delete action.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-12094. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart