Skip to main content
COSMICBYTEZLABS
NewsSecurityHOWTOsToolsStudyTraining
ProjectsNewsletterHire MeAbout
Subscribe

Press Enter to search or Esc to close

News
Security
HOWTOs
Tools
Study
Training
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.

1310+ Articles
157+ 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. CVE-2026-7459: WordPress Simple History Plugin Account Takeover
CVE-2026-7459: WordPress Simple History Plugin Account Takeover
SECURITYHIGHCVE-2026-7459

CVE-2026-7459: WordPress Simple History Plugin Account Takeover

A broken authentication check in the Simple History WordPress plugin (versions up to 5.26.0) allows Subscriber-level users to take over any WordPress...

Dylan H.

Security Team

May 30, 2026
5 min read

Affected Products

  • Simple History plugin for WordPress <= 5.26.0

CVE-2026-7459: Simple History Plugin Account Takeover via Broken Auth

A broken authentication vulnerability has been disclosed in the Simple History WordPress plugin, tracked as CVE-2026-7459 with a CVSS v3.1 score of 7.5 (High). The flaw affects all plugin versions up to and including 5.26.0 and allows an authenticated attacker with as little as Subscriber-level access to take over any WordPress user account on the same site.

The vulnerability resides in the event reaction endpoints — specifically react_to_event() and unreact_to_event() — which fail to correctly validate user permissions before executing account-level operations via the get_items_permissions() check.


Vulnerability Overview

AttributeValue
CVE IDCVE-2026-7459
CVSS Score7.5 (High)
Affected PluginSimple History — Track, Log, and Audit WordPress Changes
Affected VersionsAll versions up to and including 5.26.0
Vulnerable Endpointsreact_to_event() / unreact_to_event()
Authentication RequiredYes — Subscriber level or higher
ExploitationAccount takeover of any site user
Patch AvailableUpdate to 5.26.1 or later

About Simple History

Simple History is a widely used WordPress audit log plugin that records user activity — logins, edits, plugin changes, and other administrative actions. It is popular among site administrators for compliance and incident response purposes. The plugin's event reaction feature, introduced to allow users to acknowledge or flag logged events, is the component containing this vulnerability.


Technical Details

The flaw exists because the react_to_event() and unreact_to_event() REST API endpoints register permission callbacks via get_items_permissions(), which does not correctly enforce that the authenticated user has sufficient rights to act on other users' accounts. Specifically:

  1. A Subscriber-level user (the lowest authenticated role in WordPress) can send a crafted REST API request to the event reaction endpoint
  2. The insufficient permission check allows the request to proceed without verifying that the actor has rights over the target account
  3. The endpoint's underlying logic can be abused to perform account-level operations on any user, including administrators

This class of vulnerability — where a REST endpoint registers a permissions callback that is either absent, always returns true, or checks only that the user is logged in — is a recurring pattern in WordPress plugin security disclosures.

Attack Preconditions

  • The attacker must have a valid WordPress account (Subscriber or higher) on the target site
  • The Simple History plugin must be installed and active
  • The target site must be running plugin version 5.26.0 or earlier

Exploitation Scenario

1. Attacker registers or obtains a Subscriber-level WordPress account
   (e.g., via open user registration, purchased access, or credential theft)
 
2. Attacker crafts a REST API request to:
   POST /wp-json/simple-history/v1/events/{event_id}/react
   Authorization: Subscriber session cookie
 
3. Due to missing permission check in get_items_permissions(),
   the request is processed successfully
 
4. Attacker leverages the account-level operation to take over
   a higher-privileged account (Editor, Administrator, etc.)
 
5. Full site compromise achieved via hijacked admin account

Affected Sites

WordPress sites running Simple History 5.26.0 or earlier with any of the following characteristics face elevated risk:

  • Open user registration enabled — attackers can self-register to obtain a Subscriber account
  • Multi-author or membership sites — where many users have authenticated access
  • E-commerce or community platforms — where Subscriber accounts are routinely granted to customers or members

Remediation

Update the Plugin

The fix is available in Simple History 5.26.1 and later. Update via the WordPress admin dashboard:

  1. Navigate to Plugins > Installed Plugins
  2. Locate Simple History and click Update Now
  3. Confirm the installed version is 5.26.1 or higher

Via WP-CLI:

wp plugin update simple-history
wp plugin get simple-history --field=version

Temporary Mitigations (Pre-Patch)

If immediate patching is not possible:

  • Disable the Simple History plugin until the update can be applied
  • Restrict user registration to prevent unauthenticated users from obtaining accounts
  • Review existing Subscriber-level accounts for unauthorized or suspicious entries
  • Enable a WAF with WordPress-specific rules (Wordfence, Cloudflare) to detect anomalous REST API requests

Detection

Monitor for unusual account modification activity in WordPress logs:

# Check for recent user role changes via WP-CLI
wp user list --format=table
 
# Review WordPress debug log for REST API anomalies
grep "simple-history.*react" /var/log/wordpress/debug.log
 
# Look for Subscriber accounts accessing admin-level functions
grep "subscriber" /var/log/nginx/access.log | grep "wp-json/simple-history"

Unexpected role escalations, password resets not initiated by the affected user, or unusual activity from Subscriber accounts should be investigated as potential exploitation indicators.


Impact Assessment

Impact AreaDescription
Account TakeoverAny site user can be targeted, including administrators
Site CompromiseAdmin takeover leads to full WordPress site control
Data ExposureAll site data, user records, and payment info accessible via hijacked admin
Privilege EscalationSubscriber-to-Admin escalation with no additional steps required
Exploitation BarrierLow — requires only a valid Subscriber account

Key Takeaways

  1. CVE-2026-7459 is a high-severity broken authentication flaw in Simple History WordPress plugin up to version 5.26.0
  2. A Subscriber-level account is sufficient to exploit the vulnerability and take over any WordPress user account
  3. The flaw is in the react_to_event() / unreact_to_event() REST endpoints due to an inadequate get_items_permissions() check
  4. Immediate action: update Simple History to version 5.26.1 or later; disable the plugin if patching cannot be done immediately
  5. Sites with open user registration are at highest risk and should prioritize remediation

Sources

  • CVE-2026-7459 — NIST NVD
  • Simple History Plugin — WordPress.org
#CVE-2026-7459#WordPress#Plugin Vulnerability#Account Takeover#Authentication Bypass#Vulnerability#NVD

Related Articles

WordPress Form Notify Plugin Auth Bypass via LINE OAuth

The Form Notify plugin for WordPress is vulnerable to authentication bypass in versions up to and including 1.1.10. Attackers can manipulate...

5 min read

CVE-2026-7458: Authentication Bypass via OTP Flaw in

A critical authentication bypass in the User Verification by PickPlugins plugin for WordPress allows unauthenticated attackers to bypass OTP verification...

4 min read

CVE-2026-8206: Kirki WordPress Plugin Critical Privilege Escalation via Account Takeover

The Kirki Freeform Page Builder plugin for WordPress (versions 6.0.0–6.0.6) allows unauthenticated attackers to take over any user account during password reset by accepting an arbitrary email address, enabling full privilege escalation. CVSS 9.8.

5 min read
Back to all Security Alerts