CVE-2026-6803
Deferred Deferred - Pending Action

Missing Authorization in AIWU WordPress Plugin

Vulnerability report for CVE-2026-6803, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-07-11

Last updated on: 2026-07-15

Assigner: Wordfence

Description

The AI Chatbot & Workflow Automation by AIWU plugin for WordPress is vulnerable to Missing Authorization in all versions up to, and including, 1.4.12. This is due to missing capability checks and nonce verification on AJAX actions registered under both wp_ajax_ and wp_ajax_nopriv_ hooks, as the base controller's getPermissions() returns an empty array and neither removeGroup nor clear are added to getNoncedMethods(), causing the authorization gate to unconditionally return true for these actions. This makes it possible for unauthenticated attackers to delete specific records by ID or delete all records from any module's database table by unauthenticated attackers.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-07-11
Last Modified
2026-07-15
Generated
2026-07-31
AI Q&A
2026-07-11
EPSS Evaluated
2026-07-30
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
aiwu ai_chatbot_and_workflow_automation to 1.4.12 (inc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-862 The product does not perform an authorization check when an actor attempts to access a resource or perform an action.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

The AI Chatbot & Workflow Automation by AIWU plugin for WordPress has a Missing Authorization vulnerability in all versions up to and including 1.4.12. This occurs because the plugin lacks proper capability checks and nonce verification on certain AJAX actions. Specifically, the base controller's getPermissions() method returns an empty array, and critical methods like removeGroup and clear are not included in the getNoncedMethods() list. As a result, the authorization gate always returns true for these actions, allowing unauthenticated attackers to perform actions they should not be able to.

This vulnerability enables unauthenticated attackers to delete specific records by ID or delete all records from any module's database table via these AJAX actions.

Detection Guidance

This vulnerability involves missing authorization checks on AJAX actions in the AI Chatbot & Workflow Automation by AIWU WordPress plugin, allowing unauthenticated deletion of records. Detection can focus on monitoring or scanning for unauthorized AJAX requests targeting the vulnerable plugin's endpoints.

Specifically, you can look for suspicious HTTP POST requests to WordPress admin-ajax.php with parameters indicating calls to the 'removeGroup' or 'clear' actions without proper authentication.

Example commands to detect such activity might include using network monitoring tools like tcpdump or tshark to filter for these AJAX requests, or using curl to test the endpoints manually.

  • Using tcpdump to capture AJAX requests to admin-ajax.php: tcpdump -i any -A -s 0 'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)' | grep 'admin-ajax.php'
  • Using curl to test for unauthenticated access to vulnerable actions: curl -X POST 'http://yourwordpresssite.com/wp-admin/admin-ajax.php' -d 'action=removeGroup&id=1'
  • Check WordPress logs or web server logs for POST requests to admin-ajax.php with the vulnerable action names coming from unauthenticated sources.
Impact Analysis

This vulnerability can allow unauthenticated attackers to delete data from the plugin's database tables. Specifically, attackers can delete individual records by ID or remove all records from any module's database table. This can lead to data loss and disruption of the plugin's functionality.

Mitigation Strategies

To mitigate this vulnerability, you should update the AI Chatbot & Workflow Automation by AIWU plugin for WordPress to a version later than 1.4.12 where the missing authorization checks and nonce verifications are properly implemented.

If an immediate update is not possible, consider disabling or restricting access to the vulnerable AJAX actions (removeGroup and clear) to prevent unauthenticated deletion of records.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-6803. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart