Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-2025-12573

CVE-2025-12573: Bookingor WordPress Auth Bypass Flaw

CVE-2025-12573 is an authentication bypass flaw in Bookingor WordPress plugin through 1.0.12 that lets low-privileged users delete data. This post covers technical details, affected versions, impact, and mitigation.

Published: January 23, 2026

CVE-2025-12573 Overview

CVE-2025-12573 is a Broken Access Control vulnerability affecting the Bookingor WordPress plugin through version 1.0.12. The plugin exposes authenticated AJAX actions without implementing proper capability checks or nonce verification, allowing low-privileged authenticated users to delete plugin data without authorization.

Critical Impact

Authenticated attackers with minimal privileges (such as Subscriber role) can exploit this vulnerability to delete Bookingor plugin data, potentially disrupting booking functionality and causing data loss for affected WordPress sites.

Affected Products

  • Bookingor WordPress plugin through version 1.0.12

Discovery Timeline

  • 2026-01-20 - CVE-2025-12573 published to NVD
  • 2026-01-20 - Last updated in NVD database

Technical Details for CVE-2025-12573

Vulnerability Analysis

This vulnerability stems from improper access control implementation in the Bookingor WordPress plugin's AJAX action handlers. WordPress plugins commonly register AJAX endpoints to handle dynamic requests, but these endpoints must implement proper security measures including capability checks to verify user permissions and nonce validation to prevent cross-site request forgery attacks.

The Bookingor plugin fails to implement these critical security controls on its authenticated AJAX actions. This allows any authenticated user, regardless of their assigned WordPress role or capabilities, to invoke administrative functions—specifically data deletion operations—that should be restricted to administrators or users with appropriate permissions.

The impact is primarily focused on data integrity, as attackers can delete booking data without authorization. While confidentiality is not directly compromised, the ability to arbitrarily remove plugin data poses significant operational risks for sites relying on this plugin for booking management.

Root Cause

The root cause is missing authorization checks in the plugin's AJAX handler functions. WordPress provides built-in functions like current_user_can() for capability verification and wp_verify_nonce() for CSRF protection, but the Bookingor plugin neglects to use these security mechanisms before processing destructive operations.

Without these checks, the plugin treats any authenticated request as valid, regardless of whether the user should have permission to perform the requested action.

Attack Vector

The attack is network-based and requires low-privilege authentication. An attacker needs only a valid WordPress account with minimal permissions (such as a Subscriber role) to exploit this vulnerability. No user interaction is required beyond the attacker initiating the malicious request.

The attack flow involves:

  1. Attacker authenticates to the WordPress site with any user account
  2. Attacker crafts a request to the vulnerable AJAX endpoint
  3. The plugin processes the request without validating the user's capabilities
  4. Bookingor data is deleted without proper authorization

Technical details and proof of concept information can be found in the WPScan Vulnerability Report.

Detection Methods for CVE-2025-12573

Indicators of Compromise

  • Unexpected deletion of Bookingor booking records or configuration data
  • WordPress AJAX requests to Bookingor endpoints from low-privileged user accounts
  • Unusual activity patterns from authenticated users with Subscriber or Contributor roles
  • Database changes to Bookingor-related tables without corresponding administrative activity

Detection Strategies

  • Monitor WordPress admin-ajax.php requests for Bookingor-related actions from non-administrator accounts
  • Implement file integrity monitoring on the Bookingor plugin directory
  • Review WordPress user activity logs for suspicious patterns involving booking data modifications
  • Set up database auditing to track changes to Bookingor plugin tables

Monitoring Recommendations

  • Enable comprehensive WordPress logging that captures AJAX requests and associated user accounts
  • Configure alerts for data deletion events in booking-related database tables
  • Regularly audit user roles and permissions to identify potentially compromised accounts
  • Monitor for unusual authentication patterns that may indicate account compromise attempts

How to Mitigate CVE-2025-12573

Immediate Actions Required

  • Update the Bookingor WordPress plugin to a patched version when available
  • Review recent Bookingor data for signs of unauthorized deletion
  • Consider temporarily deactivating the plugin until a fix is released
  • Audit user accounts and remove unnecessary authenticated users to reduce attack surface

Patch Information

Check the WPScan Vulnerability Report for the latest information on available patches. Plugin updates should be applied through the WordPress dashboard or via WP-CLI once a fixed version is released.

Workarounds

  • Restrict WordPress user registrations to prevent unauthorized account creation
  • Implement a Web Application Firewall (WAF) rule to block or monitor suspicious AJAX requests to Bookingor endpoints
  • Use WordPress security plugins to add additional access control layers
  • Consider temporarily deactivating the Bookingor plugin if booking functionality is not critical
bash
# Deactivate the vulnerable plugin via WP-CLI until patched
wp plugin deactivate bookingor

# List users with authenticated access to identify potential attack surface
wp user list --fields=ID,user_login,user_email,role

# Check WordPress database for recent modifications to Bookingor tables
wp db query "SHOW TABLES LIKE '%bookingor%';"

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechBookingor

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • WPScan Vulnerability Report
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS Vulnerability
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