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
    • 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-2026-1719

CVE-2026-1719: Gravity Bookings Premium SQLi Vulnerability

CVE-2026-1719 is a SQL injection vulnerability in the Gravity Bookings Premium plugin for WordPress that allows unauthenticated attackers to extract sensitive database information. This article covers technical details.

Published: May 7, 2026

CVE-2026-1719 Overview

CVE-2026-1719 is a SQL Injection vulnerability affecting the Gravity Bookings Premium plugin for WordPress in all versions up to and including 2.5.9. The flaw stems from insufficient escaping on a user-supplied parameter combined with a lack of proper preparation on an existing SQL query. Unauthenticated attackers can append additional SQL queries to the existing query and extract sensitive information from the WordPress database. The vulnerability is classified under [CWE-89] (Improper Neutralization of Special Elements used in an SQL Command). It is exploitable remotely over the network without authentication or user interaction.

Critical Impact

Unauthenticated remote attackers can extract sensitive data such as user credentials, session tokens, and personally identifiable information from WordPress databases hosting the affected plugin.

Affected Products

  • Gravity Bookings Premium plugin for WordPress, versions through 2.5.9
  • WordPress installations running the Gravity Bookings Premium plugin
  • Any site exposing booking functionality provided by the affected plugin versions

Discovery Timeline

  • 2026-05-06 - CVE-2026-1719 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-1719

Vulnerability Analysis

The Gravity Bookings Premium plugin builds a SQL query using a user-supplied parameter without applying proper escaping or query preparation. WordPress provides the $wpdb->prepare() method specifically to safely parameterize SQL statements, but the affected code path concatenates untrusted input directly into the query string. This allows an attacker to break out of the intended query context and append arbitrary SQL clauses such as UNION SELECT statements. The result is unauthenticated read access to any data the plugin's database user can reach, which on a typical WordPress installation includes the entire wp_users and wp_usermeta tables.

Root Cause

The root cause is twofold: the parameter is not escaped using esc_sql() or sanitized through type coercion, and the resulting query is executed without $wpdb->prepare() placeholders. Either control alone could have prevented exploitation. Their absence allows the input to be parsed as SQL syntax rather than as a literal value.

Attack Vector

An unauthenticated remote attacker sends a crafted HTTP request to a vulnerable endpoint exposed by the plugin. The malicious payload is placed in the affected parameter and embeds SQL syntax such as boolean operators, UNION clauses, or time-based blind injection primitives. The server executes the concatenated query and returns data through the response body, error messages, or measurable timing differences. No user interaction or privileges are required.

No verified public exploit code is available at the time of publication. See the Wordfence Vulnerability Report for additional technical context.

Detection Methods for CVE-2026-1719

Indicators of Compromise

  • HTTP requests to Gravity Bookings plugin endpoints containing SQL meta-characters such as ', ", --, UNION, SELECT, or SLEEP(
  • Anomalous spikes in WordPress database query duration or rows returned to plugin endpoints
  • Web server access logs showing repeated requests to the same plugin endpoint with varying parameter values consistent with automated SQLi tooling
  • Outbound queries against wp_users or wp_options originating from the plugin's request handlers

Detection Strategies

  • Deploy a WordPress-aware web application firewall (WAF) ruleset that flags SQL injection patterns targeting /wp-admin/admin-ajax.php and Gravity Bookings REST routes
  • Enable WordPress database query logging and alert on queries containing operator patterns like UNION SELECT, OR 1=1, or stacked statements originating from the plugin
  • Correlate web access logs with database slow-query logs to surface time-based blind injection attempts

Monitoring Recommendations

  • Continuously monitor plugin inventory and version data across WordPress fleets to identify hosts running Gravity Bookings Premium 2.5.9 or earlier
  • Track failed authentication events following suspicious database queries, which may indicate credential extraction and reuse
  • Review CDN and reverse proxy logs for high-volume parameter fuzzing against booking-related endpoints

How to Mitigate CVE-2026-1719

Immediate Actions Required

  • Identify all WordPress instances running Gravity Bookings Premium and inventory their installed versions
  • Update the plugin to a version newer than 2.5.9 once the vendor releases a patched build, as referenced in the Wordfence advisory
  • Rotate WordPress administrator passwords, API keys, and secret salts in wp-config.php if exploitation is suspected
  • Restrict database user privileges so the WordPress account cannot read tables outside its required scope

Patch Information

Refer to the vendor's site at Gravity Booking Homepage and the Wordfence Vulnerability Report for the fixed release. Apply the upgrade through the WordPress plugin management console or via WP-CLI as soon as the patched version is available.

Workarounds

  • Temporarily deactivate the Gravity Bookings Premium plugin until a patched version is installed
  • Place a WAF in front of the WordPress site with a virtual patch rule blocking SQL meta-characters in plugin parameters
  • Restrict access to booking endpoints via IP allow-listing or HTTP authentication where business requirements permit
bash
# Configuration example: WP-CLI inventory and update workflow
wp plugin list --field=name,version | grep -i gravity-bookings
wp plugin deactivate gravity-bookings-premium
wp plugin update gravity-bookings-premium
wp plugin activate gravity-bookings-premium

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechWordpress

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-89
  • Technical References
  • Gravity Booking Homepage

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-4348: BetterDocs Pro WordPress SQLi Vulnerability

  • CVE-2026-6457: Geo Mashup WordPress Plugin SQLi Flaw

  • CVE-2026-4060: Geo Mashup WordPress Plugin SQLi Flaw

  • CVE-2026-4062: Geo Mashup WordPress Plugin SQLi 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