Atomic Edge analysis of CVE-2026-12110:
This vulnerability allows authenticated SQL injection in the Taskbuilder plugin for WordPress, versions 5.0.8 and earlier. The flaw exists in the wppm_get_task_list AJAX handler, which lacks both nonce verification and capability checks. An attacker with subscriber-level access can inject arbitrary SQL via the ‘task_search’ parameter.
Root Cause: The vulnerable code is in /wp-content/plugins/taskbuilder/includes/admin/tasks/wppm_tasks_list.php, lines 203-230. The $search_tag variable, sanitized via sanitize_text_field(wp_unslash($_POST[‘task_search’])), is used directly in a SQL query without parameterized queries or proper escaping. The query builds a LIKE clause with user input: “user.display_name LIKE ‘$search_tag_text'”. This allows an authenticated attacker to break out of the string context and append arbitrary SQL. The AJAX action ‘wppm_get_task_list’ (handled in wppm_edit_project_creator.php AJAX handler) does not perform any capability check or nonce verification.
Exploitation: An attacker sends a POST request to /wp-admin/admin-ajax.php with action=wppm_get_task_list and task_search containing a SQL injection payload. Because the query uses unescaped concatenation, a payload such as ‘ OR 1=1 — – can extract data. The attacker can target the wp_users table to harvest usernames and password hashes. The lack of authentication checks allows any authenticated user, including subscribers, to trigger the vulnerable handler.
Patch Analysis: The patch removes the vulnerable LIKE clause entirely, replacing “user.display_name LIKE ‘$search_tag_text'” with a join condition that does not use user input. The $search_tag_text variable is set to an empty string when $search_tag is empty, and the payload is no longer concatenated into the SQL string. The patch also changes other escaping calls (esc_sql to absint) to ensure integer parameters are handled safely, but the core fix is removing the dynamically constructed LIKE clause.
Impact: Successful exploitation allows an attacker to extract sensitive information from the WordPress database, including user credentials (password hashes), private posts, and other data accessible to the SQL user. The attacker can also perform time-based or boolean-based blind injection to enumerate tables and columns. The CVSS score of 6.5 reflects the authenticated requirement and the high impact on confidentiality.







