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
    • 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-2025-11877

CVE-2025-11877: User Activity Log Auth Bypass Vulnerability

CVE-2025-11877 is an authentication bypass flaw in User Activity Log plugin that allows unauthenticated attackers to manipulate site options and reopen registration. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-11877 Overview

The User Activity Log plugin for WordPress is vulnerable to a limited options update vulnerability in versions up to, and including, 2.2. The failed-login handler ual_shook_wp_login_failed lacks a capability check and writes failed usernames directly into update_option() calls. This makes it possible for unauthenticated attackers to push select site options from 0 to a non-zero value, allowing them to reopen registration or corrupt options like wp_user_roles, breaking wp-admin access.

Critical Impact

Unauthenticated attackers can manipulate WordPress site options without any authorization, potentially enabling user registration or corrupting critical site settings that break administrator access.

Affected Products

  • User Activity Log plugin for WordPress versions up to and including 2.2

Discovery Timeline

  • January 7, 2026 - CVE-2025-11877 published to NVD
  • January 8, 2026 - Last updated in NVD database

Technical Details for CVE-2025-11877

Vulnerability Analysis

This vulnerability falls under CWE-862 (Missing Authorization), a broken access control flaw where a critical function fails to verify that the requesting user has the appropriate permissions. The ual_shook_wp_login_failed function in the User Activity Log plugin processes failed login attempts but does not implement any capability or authorization checks before modifying WordPress options.

When a failed login occurs, the plugin logs the username that was attempted. However, the implementation directly passes the failed username to update_option() calls without sanitization or authorization verification. An attacker can exploit this by crafting specific usernames during failed login attempts that correspond to WordPress option names, effectively manipulating site configuration.

The network-accessible nature of this vulnerability combined with the lack of authentication requirements makes it particularly dangerous for internet-facing WordPress installations. The integrity impact is significant because attackers can modify WordPress options that control critical site behavior.

Root Cause

The root cause is a missing authorization check (CWE-862) in the ual_shook_wp_login_failed function within the user-functions.php file. The function hooks into WordPress's login failure process but fails to validate whether the action should be permitted before writing to the options table. This allows any unauthenticated user to influence update_option() operations by simply attempting to log in with specially crafted usernames.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Identifying a WordPress site running the vulnerable User Activity Log plugin
  2. Attempting to log in with a specially crafted username that corresponds to a WordPress option name
  3. The plugin's failed login handler processes the username and writes it to the options table
  4. Depending on the targeted option, the attacker can enable user registration, corrupt the wp_user_roles option to break admin access, or manipulate other site settings

The vulnerability can be triggered through standard WordPress login endpoints, making detection without proper monitoring challenging. For detailed technical implementation, see the WordPress plugin source code.

Detection Methods for CVE-2025-11877

Indicators of Compromise

  • Unusual entries in the wp_options table with unexpected or malformed values
  • Failed login attempts with usernames matching WordPress option names (e.g., users_can_register, wp_user_roles)
  • Sudden changes to site registration settings without administrator action
  • Administrators locked out of wp-admin without explanation

Detection Strategies

  • Monitor WordPress authentication logs for failed login attempts with suspicious usernames that match known option names
  • Implement integrity monitoring on the wp_options database table to detect unauthorized modifications
  • Deploy web application firewall (WAF) rules to detect login attempts with option-like username patterns
  • Use SentinelOne's Singularity XDR to correlate authentication anomalies with database modification events

Monitoring Recommendations

  • Enable detailed logging of all failed login attempts including the attempted username
  • Set up alerts for changes to critical WordPress options such as users_can_register and wp_user_roles
  • Monitor for new user registrations if registration was previously disabled
  • Review access logs for repeated failed login attempts from single IP addresses with varying usernames

How to Mitigate CVE-2025-11877

Immediate Actions Required

  • Update the User Activity Log plugin to a version newer than 2.2 that includes the security fix
  • Audit the wp_options table for any unauthorized or suspicious modifications
  • Verify that users_can_register option is set to your intended value
  • Check that wp_user_roles option has not been corrupted and administrator access is intact
  • Consider temporarily deactivating the plugin until a patch is applied

Patch Information

Plugin users should update to the latest version of User Activity Log that addresses this vulnerability. The fix should implement proper capability checks in the ual_shook_wp_login_failed function before any update_option() calls are made. Check the Wordfence Vulnerability Report for the latest patch status and remediation guidance.

Workarounds

  • Disable the User Activity Log plugin until an official patch is available
  • Implement a custom WordPress filter to add authorization checks to the wp_login_failed hook
  • Use a web application firewall to block login attempts with suspicious username patterns
  • Restrict access to wp-login.php using IP allowlisting if practical for your environment
bash
# Verify current registration settings in WordPress database
wp option get users_can_register

# Check wp_user_roles option integrity
wp option get wp_user_roles

# Disable plugin via WP-CLI if needed
wp plugin deactivate user-activity-log

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

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-862
  • Technical References
  • WordPress User Functions Source

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-2519: Bookly WordPress Plugin Auth Bypass Flaw

  • CVE-2026-4326: Vertex Addons Auth Bypass Vulnerability

  • CVE-2025-14944: Backup Migration Plugin Auth Bypass Flaw

  • CVE-2026-3646: WordPress LTL 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