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-2022-0739

CVE-2022-0739: BookingPress WordPress Plugin SQLi Flaw

CVE-2022-0739 is an unauthenticated SQL injection vulnerability in the BookingPress WordPress plugin that allows attackers to execute malicious SQL queries. This article covers technical details, affected versions, and mitigation.

Published: February 17, 2026

CVE-2022-0739 Overview

CVE-2022-0739 is a critical SQL Injection vulnerability affecting the BookingPress WordPress plugin. The vulnerability exists because the plugin fails to properly sanitize user-supplied POST data before it is used in a dynamically constructed SQL query via the bookingpress_front_get_category_services AJAX action. This AJAX endpoint is accessible to unauthenticated users, making this a severe security risk that allows remote attackers to execute arbitrary SQL commands against the WordPress database without requiring any authentication.

Critical Impact

Unauthenticated attackers can exploit this SQL Injection vulnerability to extract sensitive data from the WordPress database, including user credentials, personally identifiable information, and potentially gain full control of the affected WordPress installation.

Affected Products

  • BookingPress WordPress Plugin versions before 1.0.11
  • reputeinfosystems bookingpress

Discovery Timeline

  • 2022-03-21 - CVE-2022-0739 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2022-0739

Vulnerability Analysis

This SQL Injection vulnerability stems from insufficient input validation in the BookingPress WordPress plugin. The vulnerable code path involves the bookingpress_front_get_category_services AJAX action, which processes user-supplied POST data without adequate sanitization. Because WordPress AJAX handlers can be registered to accept requests from unauthenticated users, this endpoint becomes a direct attack vector accessible from the public internet.

The vulnerability allows attackers to manipulate SQL queries executed by the plugin, potentially leading to unauthorized data extraction, data modification, or even database destruction. Given the network-accessible nature of WordPress sites and the lack of authentication requirements for exploitation, this represents a significant risk to affected installations.

Root Cause

The root cause of CVE-2022-0739 is improper input sanitization (CWE-89: SQL Injection). The BookingPress plugin directly incorporates user-controlled POST parameters into SQL queries without using prepared statements or adequate escaping mechanisms. This classic SQL Injection pattern allows attackers to break out of the intended query structure and inject malicious SQL commands.

Attack Vector

The attack vector is network-based and requires no authentication. An attacker can craft malicious HTTP POST requests to the WordPress AJAX endpoint (/wp-admin/admin-ajax.php) with the action parameter set to bookingpress_front_get_category_services. By including specially crafted payloads in the POST data, the attacker can manipulate the underlying SQL query to extract sensitive information from the database using techniques such as UNION-based injection, blind SQL injection, or time-based inference attacks.

The vulnerability is exploited by sending malicious POST requests to the WordPress AJAX handler. Attackers inject SQL payloads through unsanitized parameters that are directly concatenated into database queries. This allows extraction of sensitive data including user credentials and administrative information. For detailed technical analysis, refer to the WPScan Vulnerability Report.

Detection Methods for CVE-2022-0739

Indicators of Compromise

  • Unusual or malformed HTTP POST requests to /wp-admin/admin-ajax.php with action bookingpress_front_get_category_services
  • SQL syntax or keywords appearing in POST parameters (e.g., UNION, SELECT, OR 1=1, --, single quotes)
  • Multiple rapid requests from the same IP address targeting the BookingPress AJAX endpoint
  • Database query logs showing unexpected queries or error messages related to SQL syntax

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block SQL Injection patterns in requests to WordPress AJAX endpoints
  • Monitor web server access logs for suspicious requests containing SQL keywords targeting admin-ajax.php
  • Deploy intrusion detection systems (IDS) with signatures for common SQL Injection attack patterns
  • Enable WordPress database query logging to identify anomalous or malicious queries

Monitoring Recommendations

  • Configure real-time alerting for requests containing SQL Injection patterns targeting the BookingPress plugin
  • Establish baseline traffic patterns and alert on unusual volumes of requests to AJAX endpoints
  • Monitor database performance metrics for anomalies that may indicate exploitation attempts
  • Review WordPress error logs for database-related errors that could indicate injection attempts

How to Mitigate CVE-2022-0739

Immediate Actions Required

  • Update the BookingPress WordPress plugin to version 1.0.11 or later immediately
  • Audit the WordPress database for signs of unauthorized access or data extraction
  • Review and rotate all user credentials, especially administrator accounts
  • Implement a Web Application Firewall to block SQL Injection attempts while patching

Patch Information

The vulnerability has been addressed in BookingPress version 1.0.11. The fix implements proper input sanitization and parameterized queries to prevent SQL Injection attacks. The patch details can be reviewed in the WordPress Plugin Change Log. Site administrators should update to the patched version immediately through the WordPress plugin update mechanism.

Workarounds

  • Temporarily disable the BookingPress plugin until it can be updated to the patched version
  • Implement WAF rules to filter and block requests containing SQL Injection patterns to the vulnerable AJAX endpoint
  • Restrict access to /wp-admin/admin-ajax.php at the web server level if BookingPress functionality is not required
  • Use a security plugin that provides SQL Injection protection for WordPress
bash
# Configuration example - WAF rule to block SQL injection patterns
# Example for ModSecurity (add to .htaccess or server config)
SecRule ARGS:action "@streq bookingpress_front_get_category_services" \
    "id:100001,phase:2,deny,status:403,msg:'Blocking vulnerable BookingPress endpoint',\
    chain"
SecRule ARGS "@detectSQLi" "t:none,t:urlDecodeUni"

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechReputeinfosystems Bookingpress

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability72.90%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-89
  • Technical References
  • WPScan Vulnerability Report
  • Vendor Resources
  • WordPress Plugin Change Log
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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