Skip to content
Security

Critical Unauthenticated Authentication Bypass Vulnerability Patched in UpdraftPlus WordPress Plugin

A critical unauthenticated authentication bypass vulnerability in UpdraftPlus was patched in June 2026. This flaw allows attackers to execute arbitrary commands as administrators on sites connected to UpdraftCentral, risking full site compromise. Immediate plugin updates and firewall protections are essential.

Critical Unauthenticated Authentication Bypass Vulnerability Patched in UpdraftPlus WordPress Plugin
Photo: Markus Spiske on Pexels

Some links on this page are affiliate links. We may earn a commission when you click through and make a purchase, at no additional cost to you.

On June 2nd, 2026, a critical unauthenticated authentication bypass vulnerability was disclosed in UpdraftPlus, one of the most widely used WordPress backup and migration plugins, with over 3 million active installations. This security flaw allows attackers to execute arbitrary Remote Procedure Calls (RPC) as the site administrator on sites connected to UpdraftCentral, potentially leading to full site compromise.

  • UpdraftPlus versions ≤ 1.26.4 (free) and ≤ 2.26.5 (premium) contain a critical authentication bypass vulnerability exploitable only on sites linked to UpdraftCentral.
  • The flaw lets unauthenticated attackers forge RPC requests, enabling actions like activating malicious plugins and executing arbitrary PHP code.
  • Wordfence issued a firewall rule for premium users on June 3, 2026, and free users on July 3, 2026, to mitigate exploit attempts.
  • The UpdraftPlus development team released a patched version on June 5, 2026, following responsible disclosure via Wordfence’s Bug Bounty program.
  • Site operators must update UpdraftPlus immediately and confirm no unauthorized RPC activity has occurred.

What Happened

Researcher vtim reported a critical vulnerability in UpdraftPlus through the Wordfence Bug Bounty Program. The issue arises from the plugin’s integration with UpdraftCentral—a remote site management dashboard used to control multiple WordPress sites from a central interface. When a site is connected to UpdraftCentral, UpdraftPlus registers an unauthenticated RPC listener on every page load.

This listener accepts POST requests containing a serialized udrpc_message, which it decrypts and executes with administrator privileges. The vulnerability lies in insufficient validation of the encrypted message’s signature and a flawed decryption process. Specifically, the plugin’s decrypt_message() function fails to properly check the RSA decryption result. If the encrypted key is malformed, the RSA decrypt method returns false, which is then treated as an all-zero AES key. This predictable key allows attackers to forge arbitrary RPC commands without possessing the site’s private keys.

Exploiting this flaw, attackers can perform sensitive actions like uploading and activating malicious plugins, leading to arbitrary PHP code execution and complete compromise of the WordPress site.

Wordfence promptly created firewall rules to block exploitation attempts, releasing them to premium users on June 3 and to free users 30 days later. The UpdraftPlus team responded quickly, acknowledging the report on June 4 and issuing a patched release on June 5, 2026.

Why This Matters

UpdraftPlus is a core component in many WordPress production environments, trusted for backups, migration, and remote site management. The scale of its deployment means vulnerabilities here have outsized impact. While the vulnerability only affects sites connected to UpdraftCentral, this is a common setup for agencies and developers managing large numbers of client sites remotely.

The technical root cause is a classic cryptographic validation failure compounded by insecure fallback behavior. The plugin’s failure to verify the RSA decryption output allows attackers to bypass authentication completely. This is not a minor logic flaw but a fundamental breakdown in trust boundaries that underpin secure remote command execution.

For agencies managing multiple WordPress sites via UpdraftCentral, this vulnerability represents a serious operational risk. An attacker gaining admin-level access remotely can deploy backdoors, steal data, or pivot to other infrastructure. Since the RPC listener activates on every page load, the attack surface is broad.

The incident also highlights the importance of defense-in-depth in WordPress security. Even if a plugin is widely trusted, any integration exposing unauthenticated endpoints demands rigorous cryptographic and access validation. Plugins must never assume remote requests are benign, especially when they can execute privileged operations.

From a business perspective, delayed patching or ignoring such vulnerabilities risks brand damage and client trust, especially for agencies relying on UpdraftPlus as a core backup and management tool. The rapid response from Wordfence and UpdraftPlus is commendable but underscores the need for continuous vulnerability research and swift incident response in the WordPress ecosystem.

What This Means for WordPress Users

All site operators and agencies using UpdraftPlus integrated with UpdraftCentral must update to the latest patched versions immediately—1.26.5 or higher for the free plugin and 2.26.6 or higher for the premium edition. This is non-negotiable because the vulnerability allows unauthenticated attackers to gain full administrative control.

Sites that have never connected to UpdraftCentral are not vulnerable, reducing the risk scope somewhat. However, many professional WordPress environments use this centralized management for efficiency, so the impact remains significant.

Administrators should also audit recent activity for signs of compromise, such as unexpected plugin installations or modifications. Given the nature of the flaw, attackers could have deployed persistent backdoors or malware.

For agencies managing multiple client sites, ensuring all clients’ UpdraftPlus plugins are updated is critical. Automating updates and integrating firewall rules that block RPC exploitation attempts, such as those available via Wordfence, can add an important security layer.

Finally, this vulnerability reinforces the importance of vetting plugins for cryptographic soundness and secure remote communication methods, particularly when plugins expose privileged APIs or management interfaces.

Frequently Asked Questions

Q: Which UpdraftPlus versions are affected by this vulnerability?
A: The free UpdraftPlus plugin versions up to and including 1.26.4 and the premium versions up to and including 2.26.5 are affected.
Q: How do I know if my site is vulnerable?
A: Your site is vulnerable only if it has been connected to UpdraftCentral for remote management. If you never enabled or used UpdraftCentral, your risk is minimal.
Q: What immediate actions should I take?
A: Update UpdraftPlus to the latest patched version immediately. Also, review your site for any unauthorized changes or plugin installations.
Q: Can Wordfence protect my site from this exploit?
A: Yes. Wordfence released a firewall rule on June 3, 2026, for premium users and July 3, 2026, for free users, which can block exploit attempts targeting this vulnerability.
Q: What does this vulnerability teach us about WordPress plugin security?
A: It underscores the critical need for secure cryptographic practices and rigorous validation in plugins, especially those exposing remote management APIs with administrative privileges.