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-0909

CVE-2026-0909: WP ULike Plugin Auth Bypass Vulnerability

CVE-2026-0909 is an authentication bypass flaw in the WP ULike plugin for WordPress, allowing authenticated attackers to delete arbitrary log entries. This article covers technical details, affected versions, and mitigation.

Published: February 6, 2026

CVE-2026-0909 Overview

The WP ULike plugin for WordPress contains an Insecure Direct Object Reference (IDOR) vulnerability in all versions up to and including 4.8.3.1. The flaw exists in the wp_ulike_delete_history_api AJAX action, which fails to verify that the log entry being deleted belongs to the current user. This authorization bypass allows authenticated attackers with Subscriber-level access or above to delete arbitrary log entries belonging to other users by manipulating the id parameter.

Critical Impact

Authenticated attackers with minimal privileges can delete arbitrary user log entries, potentially disrupting site analytics, removing voting/engagement history, and undermining data integrity across the WordPress installation.

Affected Products

  • WP ULike plugin for WordPress versions up to and including 4.8.3.1
  • WordPress installations with WP ULike plugin where the 'stats' capability is assigned to Subscriber-level roles or above

Discovery Timeline

  • February 3, 2026 - CVE-2026-0909 published to NVD
  • February 3, 2026 - Last updated in NVD database

Technical Details for CVE-2026-0909

Vulnerability Analysis

This vulnerability is classified as CWE-639: Authorization Bypass Through User-Controlled Key. The core issue stems from the wp_ulike_delete_history_api AJAX handler accepting user-supplied log entry IDs without validating ownership. When a user submits a deletion request, the function processes the id parameter directly without confirming that the requesting user owns the targeted log entry.

The attack requires network access and low-privilege authentication (Subscriber-level), but once these conditions are met, the exploitation is straightforward. The vulnerability does not compromise confidentiality or availability directly but allows unauthorized modification of data integrity by enabling deletion of records belonging to other users.

Root Cause

The root cause is improper authorization validation in the wp_ulike_delete_history_api AJAX action handler. The vulnerable code at line 94 of admin/admin-ajax.php processes deletion requests based solely on the provided id parameter without implementing object-level authorization checks to verify the requesting user has permission to delete the specified log entry. This is a classic Insecure Direct Object Reference pattern where user-controlled input directly references internal objects without proper access control enforcement.

Attack Vector

The attack is executed via a network-based vector targeting the WordPress AJAX endpoint. An authenticated attacker with Subscriber-level access (provided they have the 'stats' capability assigned to their role) can craft malicious AJAX requests to the wp_ulike_delete_history_api action. By iterating through or guessing valid log entry IDs in the id parameter, the attacker can systematically delete engagement records belonging to any user on the system.

The attack flow involves:

  1. Authenticating to WordPress with a Subscriber-level account that has the 'stats' capability
  2. Sending AJAX POST requests to the wp_ulike_delete_history_api action
  3. Manipulating the id parameter to reference log entries belonging to other users
  4. Successfully deleting arbitrary log entries without ownership validation

Detection Methods for CVE-2026-0909

Indicators of Compromise

  • Unexpected deletions in WP ULike log tables, particularly entries belonging to users other than the one authenticated
  • AJAX requests to wp_ulike_delete_history_api action from accounts with minimal privileges
  • Patterns of sequential id parameter values in deletion requests indicating enumeration attempts
  • Unusual spikes in deletion activity from Subscriber-level accounts

Detection Strategies

  • Monitor WordPress AJAX endpoints for unusual request patterns targeting the wp_ulike_delete_history_api action
  • Implement logging for all delete operations in the WP ULike plugin to track which users are deleting which records
  • Configure Web Application Firewall (WAF) rules to detect and alert on potential IDOR exploitation patterns
  • Audit user role capabilities to identify accounts with the 'stats' capability that should not have deletion permissions

Monitoring Recommendations

  • Enable detailed WordPress audit logging to capture all AJAX requests and their associated user contexts
  • Set up alerts for bulk deletion operations or rapid sequential deletion requests from low-privilege accounts
  • Regularly review WP ULike activity logs for anomalous patterns or missing expected entries
  • Implement database-level monitoring for DELETE operations on WP ULike tables

How to Mitigate CVE-2026-0909

Immediate Actions Required

  • Update the WP ULike plugin to the latest patched version immediately
  • Review and restrict the 'stats' capability assignment to only trusted administrative roles
  • Audit recent deletion activity in WP ULike logs to identify potential exploitation
  • Consider temporarily disabling the WP ULike deletion functionality if an immediate update is not possible

Patch Information

A security patch has been released to address this vulnerability. The fix adds proper ownership validation to the wp_ulike_delete_history_api AJAX action to ensure users can only delete their own log entries. For technical details on the code changes, see the WordPress Changeset Update. Additional vulnerability information is available in the Wordfence Vulnerability Report.

Workarounds

  • Remove the 'stats' capability from Subscriber-level and other non-administrative user roles until the plugin can be updated
  • Implement a custom code snippet or security plugin to intercept and validate AJAX requests to the vulnerable endpoint
  • Use a Web Application Firewall to block or monitor requests to the wp_ulike_delete_history_api action from non-administrative users
  • Temporarily disable the WP ULike plugin if the functionality is not business-critical until a patch can be applied

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 Score5.3

  • EPSS Probability0.03%

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

  • WordPress Plugin Code Snapshot

  • WordPress Changeset Update

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-3595: WordPress Riaxe Auth Bypass Vulnerability

  • CVE-2026-3581: WordPress Maps Placemarks Auth Bypass Flaw

  • CVE-2026-3649: Katalogportal PDF Sync Auth Bypass Flaw

  • CVE-2026-3642: WordPress e-shot Plugin Auth Bypass Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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