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.







