CVE-2025-30944

7.5 HIGH

📋 TL;DR

This CVE describes a missing authorization vulnerability in the Tablesome Table Premium WordPress plugin that allows attackers to access functionality not properly constrained by access control lists. It affects all WordPress sites running Tablesome Table Premium version 1.1.23 or earlier. Attackers can exploit this to perform unauthorized actions that should require proper authentication.

💻 Affected Systems

Products:
  • Tablesome Table Premium WordPress Plugin
Versions: n/a through <= 1.1.23
Operating Systems: All operating systems running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Affects all WordPress installations with the vulnerable plugin version installed and activated.

⚠️ Manual Verification Required

This CVE does not have specific version information in our database, so automatic vulnerability detection cannot determine if your system is affected.

Why? The CVE database entry doesn't specify which versions are vulnerable (no version ranges provided by the vendor/NVD).

🔒 Custom verification scripts are available for registered users. Sign up free to download automated test scripts.

Recommended Actions:
  1. Review the CVE details at NVD
  2. Check vendor security advisories for your specific version
  3. Test if the vulnerability is exploitable in your environment
  4. Consider updating to the latest version as a precaution

⚠️ Risk & Real-World Impact

🔴

Worst Case

Attackers could modify or delete table data, inject malicious content, or gain administrative privileges on the WordPress site, potentially leading to complete site compromise.

🟠

Likely Case

Unauthorized users accessing and manipulating table data they shouldn't have access to, potentially exposing sensitive information or disrupting business operations.

🟢

If Mitigated

With proper network segmentation and least privilege access controls, impact would be limited to the specific WordPress instance and contained within the affected plugin's scope.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

Missing authorization vulnerabilities typically require minimal technical skill to exploit once the attack vector is identified.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.1.24 or later

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/tablesome-premium/vulnerability/wordpress-tablesome-table-premium-1-1-23-broken-access-control-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find Tablesome Table Premium. 4. Click 'Update Now' if update available. 5. If no update appears, manually download version 1.1.24+ from WordPress.org and replace plugin files.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the Tablesome Table Premium plugin until patched

wp plugin deactivate tablesome-premium

Restrict Access

linux

Use web application firewall rules to restrict access to plugin endpoints

# Example nginx location block:
location ~* /wp-content/plugins/tablesome-premium/ {
    deny all;
}

🧯 If You Can't Patch

  • Implement strict network access controls to limit who can access the WordPress admin interface and plugin endpoints.
  • Enable detailed logging and monitoring for unauthorized access attempts to Tablesome plugin functionality.

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for Tablesome Table Premium version. If version is 1.1.23 or earlier, you are vulnerable.

Check Version:

wp plugin get tablesome-premium --field=version

Verify Fix Applied:

After updating, verify Tablesome Table Premium version shows 1.1.24 or later in WordPress admin plugins page.

📡 Detection & Monitoring

Log Indicators:

  • Unusual access patterns to /wp-content/plugins/tablesome-premium/ endpoints
  • Unauthorized users accessing admin functions
  • Failed authorization attempts for Tablesome functionality

Network Indicators:

  • HTTP requests to Tablesome plugin endpoints from unauthorized IP addresses
  • Unusual POST requests to plugin admin functions

SIEM Query:

source="wordpress.log" AND ("tablesome-premium" OR "tablesome") AND (response_code=403 OR "unauthorized" OR "permission denied")

🔗 References

📤 Share & Export