The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-4301

CVE-2026-4301: WordPress Rate Star Review Auth Bypass Flaw

CVE-2026-4301 is an authorization bypass vulnerability in the Rate Star Review Vote WordPress plugin that allows authenticated attackers to modify arbitrary posts and pages. This article covers technical details, affected versions, and fixes.

Published: May 18, 2026

CVE-2026-4301 Overview

CVE-2026-4301 is a Missing Authorization vulnerability [CWE-862] in the Rate Star Review Vote - AJAX Reviews, Votes, Star Ratings plugin for WordPress, affecting all versions up to and including 1.6.4. The flaw resides in the vwrsr_review() AJAX handler, which lacks capability checks and nonce verification. Authenticated attackers with Subscriber-level access or higher can manipulate the rating_id GET parameter to overwrite arbitrary posts and pages. The attack modifies post title, content, author, post type, and metadata, enabling full post content takeover across the WordPress site.

Critical Impact

Subscriber-level authenticated attackers can take over and overwrite arbitrary WordPress posts and pages, including those owned by administrators.

Affected Products

  • Rate Star Review Vote - AJAX Reviews, Votes, Star Ratings plugin for WordPress
  • All plugin versions up to and including 1.6.4
  • WordPress sites with this plugin installed and user registration enabled

Discovery Timeline

  • 2026-05-12 - CVE-2026-4301 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-4301

Vulnerability Analysis

The vulnerability stems from inadequate access control in the vwrsr_review() AJAX handler registered by the plugin. The function relies solely on an is_user_logged_in() check, omitting both current_user_can() capability verification and wp_verify_nonce() request validation. This allows any authenticated user, including the lowest-privileged Subscriber role, to invoke the handler with arbitrary parameters.

When the form parameter is set to update, the handler accepts a user-supplied rating_id GET parameter. It treats this value as the target post ID and passes it directly to wp_update_post() without ownership validation. The resulting update overwrites the target post's title, content, author (set to the attacker's user ID), post_type (changed to the plugin's review custom post type), and post status.

At lines 758-763 of rate-star-review.php, update_post_meta() is additionally invoked against the attacker-controlled post ID, allowing modification of arbitrary post metadata.

Root Cause

The root cause is Missing Authorization [CWE-862]. The plugin treats authentication as equivalent to authorization, failing to verify that the requesting user has permission to edit the targeted post. WordPress requires explicit capability checks such as edit_post for state-changing operations on arbitrary content.

Attack Vector

An attacker registers or uses an existing Subscriber-level account. The attacker sends an authenticated AJAX request to admin-ajax.php with action=vwrsr_review, form=update, and rating_id set to the target post or page ID. The plugin processes the request and overwrites the target content with attacker-supplied values. No user interaction from the victim is required.

References to the vulnerable code paths are available in the WordPress Plugin Code Line 730, Line 754, and Line 758 trac entries.

Detection Methods for CVE-2026-4301

Indicators of Compromise

  • POST or GET requests to /wp-admin/admin-ajax.php containing action=vwrsr_review combined with form=update and a rating_id parameter referencing non-review post IDs.
  • WordPress posts or pages whose post_type has unexpectedly changed to review or whose post_author no longer matches the original creator.
  • Unexpected entries in wp_postmeta for posts that are not part of the review plugin's intended workflow.

Detection Strategies

  • Monitor WordPress audit logs for wp_update_post events originating from Subscriber-level accounts targeting posts they do not own.
  • Inspect web server access logs for query strings containing vwrsr_review paired with numeric rating_id values that map to published pages or core posts.
  • Compare current post titles, content hashes, and authors against backup snapshots to identify unauthorized rewrites.

Monitoring Recommendations

  • Enable verbose logging on admin-ajax.php requests and alert on high-volume calls to the vwrsr_review action from a single account.
  • Track changes to post_type and post_author fields in the wp_posts table using database triggers or a security plugin.
  • Review the Wordfence Vulnerability Report for additional detection guidance and signature data.

How to Mitigate CVE-2026-4301

Immediate Actions Required

  • Update the Rate Star Review Vote plugin to a version newer than 1.6.4 once a patched release is published by the vendor.
  • If no patched version is available, deactivate and remove the plugin from all affected WordPress sites.
  • Audit user accounts and remove unused Subscriber-level accounts, and disable open user registration if not required.
  • Restore any modified posts or pages from a known-good backup and reset affected post authors.

Patch Information

At the time of publication, no fixed version is identified in the NVD record. Administrators should monitor the plugin page on WordPress.org and the Wordfence Vulnerability Report for patch availability. Until a fix ships, removal of the plugin is the most reliable remediation.

Workarounds

  • Block requests to admin-ajax.php where the action parameter equals vwrsr_review at the web application firewall (WAF) layer.
  • Restrict the wp-admin directory using HTTP authentication or IP allowlisting for non-administrative users.
  • Disable new user registration in WordPress settings to reduce the pool of potential Subscriber-level attackers.
bash
# Example WAF rule (ModSecurity) to block exploitation attempts
SecRule ARGS:action "@streq vwrsr_review" \
    "id:1002026,\
    phase:2,\
    deny,\
    status:403,\
    chain,\
    msg:'CVE-2026-4301 Rate Star Review unauthorized update attempt'"
    SecRule ARGS:form "@streq update"

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-862
  • Technical References
  • WordPress Plugin Code Line 730

  • WordPress Plugin Code Line 754

  • WordPress Plugin Code Line 758

  • WordPress Plugin Trunk Line 730

  • WordPress Plugin Trunk Line 754

  • WordPress Plugin Trunk Line 758

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2025-15369: Xpro Addons Auth Bypass Vulnerability

  • CVE-2026-8610: WordPress TypeSquare Plugin Auth Bypass

  • CVE-2026-8681: WordPress Essential Chat Support Bypass

  • CVE-2025-4202: Multicollab WordPress Auth Bypass Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English