CVE-2026-12417: SignUp & SignIn <= 1.0.0 - Unauthenticated Privilege Escalation via Weak Password Reset Validation via 'reset_activation_code' Leading to Account Takeover
The SignUp & SignIn plugin for WordPress is vulnerable to Authentication Bypass via Weak Password Reset Validation leading to Account Takeover in versions up to, and including, 1.0.0. This is due to the pravelchangepassword() AJAX handler — registered via wpajaxnoprivpravelchangepassword and therefore accessible to unauthenticated users — performing no nonce verification, no capability check, and only a loose equality check between an attacker-supplied resetactivationcode POST parameter and the target user's forgotemail user meta value; when a user has never initiated a password reset, getusermeta() returns an empty string that trivially satisfies this check against an omitted or empty attacker-supplied code. This makes it possible for unauthenticated attackers to change the password of any WordPress user, including administrators, by sending a crafted POST request to admin-ajax.php with action=pravelchangepassword, resetuserid set to the target account's user ID, and newpasswordcustom set to an attacker-chosen password. Successful exploitation allows the attacker to authenticate with the newly set password and fully take over the targeted account, achieving administrator-level privilege escalation on the affected site.
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
WordPress SignUp & SignIn pluginto a version that resolves this vulnerability.Fixed in 1.0.0 - Configuration
Fix the unauthenticated AJAX password-reset flow by updating the pravel_change_password() handler (registered via wp_ajax_nopriv_pravel_change_password) to verify a nonce and perform proper capability/authentication checks, and replace the loose equality check between the attacker-supplied reset_activation_code POST parameter and the target user's forgot_email user meta value.
SignUp & SignIn (WordPress plugin) AJAX handler wp_ajax_nopriv_pravel_change_password / pravel_change_password() = Require nonce verification and capability/authentication checks; do not perform weak reset_activation_code==forgot_email meta comparison
Event History
Frequently Asked Questions
What is the severity of CVE-2026-12417?
CVE-2026-12417 has a critical severity rating of 9.8.
How do I fix CVE-2026-12417?
To fix CVE-2026-12417, update the SignUp & SignIn plugin to version 1.0.1 or later.
What kind of vulnerability is CVE-2026-12417?
CVE-2026-12417 is an unauthenticated privilege escalation vulnerability that allows account takeover.
Which versions of SignUp & SignIn are affected by CVE-2026-12417?
CVE-2026-12417 affects all versions of SignUp & SignIn up to and including 1.0.0.
What causes CVE-2026-12417?
CVE-2026-12417 is caused by weak password reset validation in the `pravel_change_password()` AJAX handler.