The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-1919

CVE-2026-1919: WordPress Booktics Auth Bypass Vulnerability

CVE-2026-1919 is an authentication bypass vulnerability in the WordPress Booktics plugin allowing unauthenticated attackers to access sensitive data. This article covers technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-1919 Overview

The Booking Calendar for Appointments and Service Businesses – Booktics plugin for WordPress contains a critical authorization vulnerability due to missing capability checks on multiple REST API endpoints. This vulnerability affects all versions up to and including 1.0.16, allowing unauthenticated attackers to access sensitive data through unprotected API endpoints.

Critical Impact

Unauthenticated attackers can query sensitive customer, appointment, order, and team member data through exposed REST API endpoints without any authentication or authorization checks.

Affected Products

  • Booktics WordPress Plugin versions ≤ 1.0.16
  • WordPress sites using the Booking Calendar for Appointments and Service Businesses plugin
  • All configurations with default REST API endpoint exposure

Discovery Timeline

  • 2026-03-10 - CVE CVE-2026-1919 published to NVD
  • 2026-03-11 - Last updated in NVD database

Technical Details for CVE-2026-1919

Vulnerability Analysis

This vulnerability is classified as CWE-306 (Missing Authentication for Critical Function), a broken access control issue that allows unauthorized data access. The Booktics plugin fails to implement proper capability checks on several REST API controller endpoints, enabling unauthenticated users to retrieve sensitive business and customer information.

The vulnerability spans multiple core components of the plugin, including the appointment controller, customer controller, order controller, and team member controller. Each of these controllers exposes REST API endpoints that handle sensitive data operations without verifying whether the requesting user has appropriate permissions.

For WordPress plugin development, proper capability checks using functions like current_user_can() should be implemented before processing any requests that access or modify sensitive data. The absence of these checks means that any external party can enumerate and extract data intended only for authenticated administrators.

Root Cause

The root cause is a missing authorization check (CWE-306) in the plugin's REST API endpoint handlers. The affected controllers process data requests without validating the user's capabilities or authentication status. This is a common vulnerability pattern in WordPress plugins where developers register REST routes but fail to implement the permission_callback parameter or implement it incorrectly.

Affected controller files include:

  • core/appointment/controllers/appointment-controller.php (line 549)
  • core/customer/controllers/customer-controller.php (line 229)
  • core/order/controllers/order-controller.php (line 889)
  • core/team-member/controllers/team-member-controller.php (line 235)

Attack Vector

The attack vector is network-based and requires no user interaction or authentication. An attacker can directly access the vulnerable REST API endpoints from any network location. The exploitation is straightforward:

  1. Attacker identifies a WordPress site running the Booktics plugin
  2. Attacker sends crafted HTTP requests to the exposed REST API endpoints
  3. The plugin processes these requests without authorization verification
  4. Sensitive data including customer information, appointments, orders, and team member details is returned to the attacker

The attack requires no privileges, no user interaction, and has low complexity. The vulnerable endpoints can be discovered through standard WordPress REST API enumeration techniques.

Detection Methods for CVE-2026-1919

Indicators of Compromise

  • Unusual volume of REST API requests to /wp-json/ endpoints containing booktics or related appointment/customer paths
  • Access logs showing unauthenticated requests to customer, appointment, order, or team-member controller endpoints
  • Multiple sequential API requests from unknown IP addresses querying plugin endpoints
  • Evidence of data enumeration patterns in access logs targeting the Booktics plugin

Detection Strategies

  • Monitor WordPress REST API access logs for requests to Booktics-related endpoints from unauthenticated sessions
  • Implement Web Application Firewall (WAF) rules to detect and alert on suspicious patterns targeting /wp-json/booktics/ endpoints
  • Review access logs for bulk data extraction attempts or rapid sequential API calls
  • Deploy WordPress security plugins that monitor and alert on unauthorized REST API access attempts

Monitoring Recommendations

  • Enable detailed logging for WordPress REST API requests, including authentication status
  • Configure alerts for high-frequency API requests to sensitive plugin endpoints
  • Implement rate limiting on REST API endpoints to slow potential data exfiltration
  • Regularly audit plugin endpoint permissions using WordPress security scanning tools

How to Mitigate CVE-2026-1919

Immediate Actions Required

  • Update the Booktics plugin to a version newer than 1.0.16 that includes the security fix
  • If immediate update is not possible, temporarily disable the Booktics plugin until patching is complete
  • Review access logs for signs of exploitation and potential data breach
  • Notify affected customers if evidence of unauthorized data access is discovered

Patch Information

The vulnerability has been addressed in WordPress Changeset #3477898. Site administrators should update to the latest version of the Booktics plugin immediately. The patch implements proper capability checks on the affected REST API endpoints to ensure only authorized users can access sensitive data.

For additional technical details and vulnerability analysis, refer to the Wordfence Vulnerability Analysis.

Workarounds

  • Implement a Web Application Firewall (WAF) rule to block unauthenticated access to Booktics REST API endpoints
  • Use WordPress .htaccess rules to restrict access to REST API endpoints from trusted IP addresses only
  • Temporarily disable the REST API for the Booktics plugin using a security plugin if update is not immediately possible
  • Consider using a WordPress security plugin that enforces authentication on all REST API requests
bash
# Temporary .htaccess restriction for Booktics REST API endpoints
# Add to WordPress root .htaccess file

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/wp-json/booktics/ [NC]
RewriteCond %{HTTP:Authorization} ^$
RewriteRule ^(.*)$ - [F,L]
</IfModule>

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-306
  • Technical References
  • WordPress Appointment Controller Code

  • WordPress Customer Controller Code

  • WordPress Order Controller Code

  • WordPress Team Member Controller Code

  • WordPress Changeset #3477898

  • Wordfence Vulnerability Analysis
  • Related CVEs
  • CVE-2026-2519: Bookly WordPress Plugin Auth Bypass Flaw

  • CVE-2026-4326: Vertex Addons Auth Bypass Vulnerability

  • CVE-2025-14944: Backup Migration Plugin Auth Bypass Flaw

  • CVE-2026-3646: WordPress LTL Plugin Auth Bypass Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English