Skip to main content
COSMICBYTEZLABS
NewsSecurityHOWTOsToolsTraining
StudyProjectsNewsletterHire MeAbout
Subscribe

Press Enter to search or Esc to close

News
Security
HOWTOs
Tools
Training
Study
Projects
Newsletter
Hire Me
About
RSS Feed
Reading List
Subscribe

Stay in the Loop

Get the latest security alerts, tutorials, and tech insights delivered to your inbox.

Subscribe NowFree forever. No spam.
COSMICBYTEZLABS

Your trusted source for IT intelligence, cybersecurity insights, and hands-on technical guides.

2670+ Articles
165+ Guides

CONTENT

  • Latest News
  • Security Alerts
  • HOWTOs
  • Checklists
  • Projects
  • Exam Prep

RESOURCES

  • Search
  • Browse Tags
  • Newsletter Archive
  • Reading List
  • RSS Feed

COMPANY

  • About Us
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CosmicBytez Labs. All rights reserved.

System Status: Operational
  1. Home
  2. Security
  3. AI Website Builder WordPress Plugin: Unauthenticated RCE via Missing Authorization
AI Website Builder WordPress Plugin: Unauthenticated RCE via Missing Authorization

Critical Security Alert

This vulnerability is actively being exploited. Immediate action is recommended.

SECURITYCRITICALCVE-2026-82923

AI Website Builder WordPress Plugin: Unauthenticated RCE via Missing Authorization

CVE-2026-82923 lets unauthenticated attackers write arbitrary files, install plugins, and wipe content on sites running the GitHub build of AI Website Builder.

Dylan H.

Security Team

September 5, 2026
4 min read

Affected Products

  • AI Website Builder (GitHub build) v1.0.0 and earlier

Executive Summary

CVE-2026-82923 is a critical missing authorization flaw in the AI Website Builder WordPress plugin's GitHub-distributed build. The plugin's REST API routes perform no authorization or nonce check whatsoever, allowing any unauthenticated visitor to install and activate arbitrary plugins and themes, import remote content from an attacker-controlled URL, write attacker-chosen files into the uploads directory, and delete existing site content and media.

CVSS Score: 9.8 (Critical) — CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

On any host that executes PHP from the uploads directory, the arbitrary file-write capability is a direct path to remote code execution. No credentials, prior session, or user interaction are required — an attacker only needs network access to the site.


Vulnerability Overview

AttributeValue
CVE IDCVE-2026-82923
CVSS Score9.8 (Critical)
CWECWE-862 — Missing Authorization
Affected ComponentAI Website Builder plugin REST API routes
Affected Versions1.0.0 and earlier (GitHub build only)
AssignerWPScan
Reserved2026-08-31
Published2026-09-04

Note the scope: the vulnerability is specific to the GitHub-distributed build of AI Website Builder. The official WordPress.org repository release of the plugin is unaffected by this advisory.


Technical Details

The plugin exposes several REST API endpoints intended for site setup and content management. None of these routes validate the caller's identity or check a WordPress nonce before executing privileged actions. As a result, an unauthenticated attacker who can reach the site over the network can send crafted requests directly to these routes and have the plugin perform, on their behalf:

  • Plugin and theme installation/activation — pulling arbitrary code onto the site and enabling it
  • Remote content import — importing content from a URL the attacker controls, which can be used to seed malicious pages or scripts
  • Arbitrary file write to the uploads directory — the attacker chooses both the filename and contents
  • Deletion of site content and media — a straightforward denial-of-service / defacement path

The most severe consequence is the arbitrary file write. WordPress installations that allow PHP execution inside wp-content/uploads/ (a common misconfiguration, though not the platform default) turn this file write directly into unauthenticated remote code execution — the attacker simply writes a PHP web shell to a predictable path and requests it.

Because none of these routes require a nonce or authentication header, exploitation is trivial to automate: a single unauthenticated HTTP request against a REST route is sufficient to trigger each capability.


Impact of Successful Exploitation

ImpactDescription
Remote Code ExecutionFile write to uploads + PHP execution on uploads = full server-side code execution
Full Site TakeoverArbitrary plugin/theme installation gives an attacker persistent, code-level control
Content DestructionAttacker can delete existing site content and media outright
Malicious Content InjectionRemote import functionality can seed the site with attacker-controlled pages
No Authentication BarrierAny visitor with network access can trigger every capability above

Patch Status

No patched version of the plugin is currently available. There is no fixed release to upgrade to as of this advisory.


Immediate Remediation

  1. Uninstall the plugin immediately on any WordPress installation running the GitHub build of AI Website Builder — do not wait for a patch.
  2. Manually verify removal of any must-use plugin files or configuration the plugin may have dropped outside the normal plugin directory.
  3. Block the plugin's REST API routes at the WAF or web-server level as an interim measure if immediate removal isn't possible.
  4. Audit the uploads directory and site content for unauthorized files, especially PHP files, and for unexpected content changes or deletions.
  5. Disable PHP execution in the uploads directory (wp-content/uploads/) as a general hardening step — this blunts the RCE impact of this and similar file-write vulnerabilities regardless of the affected plugin.

Detection Indicators

IndicatorDescription
Unexpected PHP files in wp-content/uploads/Strong signal of exploitation via the file-write primitive
Unfamiliar plugins or themes suddenly installed/activatedSign the plugin-install route was abused
Unexplained content deletions or media lossSign the content-deletion route was abused
REST API access log entries hitting AI Website Builder routes from unrecognized IPs, without authenticationExploitation attempt, successful or not

References

  • IONIX Threat Center — CVE-2026-82923
  • NIST NVD — CVE-2026-82923
  • THREATINT — CVE-2026-82923
#CVE-2026-82923#WordPress#Missing Authorization#RCE#CWE-862

Related Articles

CVE-2026-14365: TrueBooker WordPress Plugin Authorization Bypass Enables Unauthenticated Password Change

A second critical flaw in the TrueBooker Appointment Booking WordPress plugin allows unauthenticated attackers to change the password of any user, including administrators, due to missing authorization checks. CVSS 9.8.

5 min read

CVE-2026-15397: Missing Authorization in Subscriptions for WooCommerce Plugin

A missing authorization vulnerability in the Subscriptions for WooCommerce plugin allows authenticated users with minimal privileges to perform unauthorized actions on WordPress sites running versions up to 2.0.0.

4 min read

CVE-2025-10656: WooCommerce Plugin Missing Authorization Allows Unauthenticated Admin Account Creation

A critical missing authorization vulnerability in the Spreadsheet Price Changer for WooCommerce plugin allows unauthenticated attackers to create admin accounts on affected WordPress sites, scoring a near-perfect CVSS 9.8.

4 min read
Back to all Security Alerts