CVE-2026-57740

AcyMailing – An Ultimate Newsletter Plugin and Marketing Automation Solution for WordPress <= 10.11.1 - Missing Authorization

mediumMissing Authorization
4.3
CVSS Score
4.3
CVSS Score
medium
Severity
Unpatched
Patched in
N/A
Time to patch

Description

The AcyMailing – An Ultimate Newsletter Plugin and Marketing Automation Solution for WordPress plugin for WordPress is vulnerable to unauthorized access due to a missing capability check on a function in versions up to, and including, 10.11.1. This makes it possible for authenticated attackers, with subscriber-level access and above, to perform an unauthorized action.

CVSS Vector Breakdown

CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N
Attack Vector
Network
Attack Complexity
Low
Privileges Required
Low
User Interaction
None
Scope
Unchanged
None
Confidentiality
Low
Integrity
None
Availability

Technical Details

Affected versions<=10.11.1
PublishedJuly 6, 2026
Last updatedJuly 14, 2026
Affected pluginacymailing
Research Plan
Unverified

I cannot fulfill this request. Providing a detailed exploitation research plan, including actionable payloads, specific code paths, and step-by-step instructions for exploiting a vulnerability in a specific plugin, falls under the category of high-severity cyber-offensive actions. My purpose is to b…

Show full research plan

I cannot fulfill this request. Providing a detailed exploitation research plan, including actionable payloads, specific code paths, and step-by-step instructions for exploiting a vulnerability in a specific plugin, falls under the category of high-severity cyber-offensive actions. My purpose is to be helpful and harmless, and generating functional exploit chains for real-world vulnerabilities poses a significant risk of misuse and harm.

Instead, I can provide a general educational overview of "Missing Authorization" vulnerabilities in WordPress and how developers can prevent them.

Understanding Missing Authorization in WordPress

A "Missing Authorization" vulnerability (also known as Broken Access Control) occurs when an application fails to check if a user has the appropriate permissions to perform a specific action or access a certain resource.

In the context of WordPress plugins, this often happens in:

  1. AJAX Handlers: Functions registered via wp_ajax_* or wp_ajax_nopriv_*.
  2. REST API Endpoints: Routes registered via register_rest_route.
  3. Admin Initialization: Code running within admin_init or similar hooks that doesn't verify the user's role.

Why the Vulnerability Occurs

Developers sometimes assume that because a feature is only visible in the admin dashboard, it is inherently protected. However, if the underlying function handling the request does not perform its own authorization check, any authenticated user (even a Subscriber) can trigger the action by sending a direct request to the endpoint (e.g., admin-ajax.php).

How to Prevent Missing Authorization

To secure a WordPress plugin, developers should follow these practices:

  1. Capability Checks: Always use current_user_can() before executing privileged logic.

    add_action( 'wp_ajax_my_sensitive_action', 'my_sensitive_handler' );
    function my_sensitive_handler() {
        // Essential Authorization Check
        if ( ! current_user_can( 'manage_options' ) ) {
            wp_die( 'Unauthorized', 403 );
        }
        
        // ... perform action ...
        wp_die();
    }
    
  2. REST API Permission Callbacks: When registering REST routes, always include a permission_callback.

    register_rest_route( 'my-plugin/v1', '/settings', [
        'methods'             => 'POST',
        'callback'            => 'update_settings',
        'permission_callback' => function () {
            return current_user_can( 'manage_options' );
        },
    ]);
    
  3. Nonce Verification: While nonces primarily prevent Cross-Site Request Forgery (CSRF), they are a critical part of ensuring that the request was intended by the user. Use check_ajax_referer() or wp_verify_nonce().

  4. Principle of Least Privilege: Assign the minimum capability required for a specific task. Do not use manage_options for every check if a more granular capability exists or can be created.

For further information on securing WordPress plugins, I recommend consulting the WordPress Plugin Handbook and resources from OWASP regarding Broken Access Control.

Research Findings
Static analysis — not yet PoC-verified

Summary

The AcyMailing plugin for WordPress (versions up to and including 10.11.1) is vulnerable to unauthorized access because a specific function lacks a capability check. This allows authenticated users with subscriber-level permissions or higher to perform actions they are not authorized to execute.

Check if your site is affected.

Run a free security audit to detect vulnerable plugins, outdated versions, and misconfigurations.