Atomic Edge analysis of CVE-2026-65499 (metadata-based):
This vulnerability affects the PeproDev Ultimate Invoice plugin for WordPress, version 2.2.6 and earlier. The plugin fails to enforce a capability check on a specific function, allowing unauthenticated users to perform an unauthorized action. The CVSS score is 5.3 (Medium), with the vector AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N, indicating low integrity impact without any confidentiality or availability impact.
The root cause, based on the CWE-862 (Missing Authorization) classification and the vulnerability description, is that the plugin registers an AJAX action or a similar callback (likely via add_action(‘wp_ajax_nopriv_…’) or a REST API route) without verifying that the requesting user has the required capability (e.g., edit_posts, manage_options, or a custom invoice capability). The description explicitly states that there is a missing capability check, which is confirmed from the metadata. Atomic Edge analysis infers that the vulnerable function is likely an AJAX handler, because WordPress plugins commonly expose administrative features through admin-ajax.php, and the nopriv prefix would make the endpoint accessible to unauthenticated users. No source code is available, so the exact function name and parameter structure are not confirmed.
Exploitation requires no authentication. An attacker sends a crafted HTTP request to /wp-admin/admin-ajax.php with the action parameter set to the vulnerable hook name. Because the plugin does not verify nonces or capabilities, the request does not need a valid nonce. The attacker would include the parameters the vulnerable function expects to trigger the unauthorized action. Atomic Edge research suggests that the action name likely follows a pattern such as pepro_ultimate_invoice_* or a similar slug-derived prefix, based on WordPress conventions, but the exact action name remains unconfirmed from metadata alone.
Remediation requires adding a capability check to the vulnerable function. The developer should verify that the current user has the appropriate permission before executing the action, for example by using current_user_can(). Additionally, the plugin should verify a nonce if the action is invoked from the WordPress admin area. If the function is intended to be public, the developer must implement proper access control to ensure it only performs actions that unauthenticated users are allowed to do. Since no patched version is available, users should disable or uninstall the plugin until an update is released.
The impact is limited to unauthorized actions that modify data or trigger plugin-specific operations, such as creating or updating invoices, altering plugin settings, or sending emails. The CVSS vector indicates a low integrity impact, meaning an attacker can modify data without affecting confidentiality or availability. There is no direct privilege escalation or data disclosure. However, if the vulnerable function can alter critical plugin data, the integrity impact could affect the reliability of the accounting or invoicing records.







