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

CVE-2026-7458: WordPress User Verification Auth Bypass

CVE-2026-7458 is an authentication bypass flaw in the User Verification by PickPlugins WordPress plugin that lets attackers log in as any user. This article covers the technical details, affected versions, and mitigation steps.

Published: May 7, 2026

CVE-2026-7458 Overview

CVE-2026-7458 is an authentication bypass vulnerability in the User Verification by PickPlugins plugin for WordPress. The flaw affects all versions up to and including 2.0.46. The vulnerability resides in the user_verification_form_wrap_process_otpLogin function, which uses a loose PHP comparison operator to validate one-time password (OTP) codes. Unauthenticated attackers can submit a true OTP value to log in as any user with a verified email address, including administrators. The issue is classified under CWE-288: Authentication Bypass Using an Alternate Path or Channel.

Critical Impact

Unauthenticated attackers can take over administrator accounts on affected WordPress sites by exploiting a loose-comparison flaw in OTP validation, leading to full site compromise.

Affected Products

  • User Verification by PickPlugins (WordPress plugin) versions ≤ 2.0.46
  • WordPress sites with the plugin installed and email-OTP login enabled
  • Sites where verified user accounts exist with administrative privileges

Discovery Timeline

  • 2026-05-02 - CVE-2026-7458 published to NVD
  • 2026-05-05 - Last updated in NVD database

Technical Details for CVE-2026-7458

Vulnerability Analysis

The User Verification plugin implements an email-based OTP login flow. The server-side handler user_verification_form_wrap_process_otpLogin compares the user-supplied OTP against the expected value using PHP's loose equality operator (==) instead of strict equality (===). PHP's loose comparison performs type juggling, where the boolean value true is treated as equal to many non-empty strings and non-zero numbers.

An attacker who supplies a request body with the OTP parameter set to the boolean true (for example, via a JSON payload) causes the comparison to evaluate as successful regardless of the real OTP value. The handler then issues an authenticated session for the targeted account. The plugin source involved spans includes/functions-rest.php, templates/email-otp-login-form/hook.php, and templates/email-otp-login-form/index.php.

Root Cause

The root cause is improper OTP validation logic. Using == instead of === allows PHP type coercion to bypass the secret-knowledge check. The handler also lacks rate limiting and brute-force protection on the OTP submission endpoint, increasing the attack surface. See the Wordfence Vulnerability Analysis for detailed write-up.

Attack Vector

Exploitation occurs over the network without authentication or user interaction. An attacker identifies an email address belonging to a verified user, typically an administrator, and submits a crafted REST or form request to the OTP login endpoint with the OTP value set to boolean true. The server returns a valid authenticated session, granting full account takeover. Reference patched code is available in the WordPress User Verification Changeset 3519113.

Detection Methods for CVE-2026-7458

Indicators of Compromise

  • POST or REST requests to OTP login endpoints containing JSON payloads where the otp field is the boolean literal true rather than a numeric or string value.
  • Successful WordPress administrator logins lacking a corresponding preceding OTP request, or originating from previously unseen IP addresses.
  • Creation of new administrator accounts, plugin uploads, or modifications to wp-options shortly after suspicious OTP login attempts.

Detection Strategies

  • Inspect WordPress access logs for requests to user-verification REST routes and flag payloads containing "otp":true or non-string OTP types.
  • Correlate authentication events with the source IP, user agent, and time-of-day baseline for privileged accounts.
  • Deploy a web application firewall rule that rejects OTP submissions where the parameter is not a numeric string of expected length.

Monitoring Recommendations

  • Monitor administrator session creation events and alert on logins that bypass the standard wp-login.php flow.
  • Track plugin and theme file integrity to detect post-compromise persistence such as backdoored PHP files.
  • Review WordPress audit logs daily for privilege changes, user role modifications, and new admin user creation.

How to Mitigate CVE-2026-7458

Immediate Actions Required

  • Update the User Verification by PickPlugins plugin to a version newer than 2.0.46 that incorporates the fix from changeset 3519113.
  • If an update is not immediately possible, deactivate and remove the plugin until a patched version can be deployed.
  • Force a password reset for all administrator and editor accounts and invalidate active sessions.

Patch Information

The vendor addressed the issue in the WordPress plugin repository under changeset 3519113. The fix replaces the loose comparison with strict type-safe validation of the OTP value. Site operators should apply the corresponding plugin release through the WordPress admin dashboard or via WP-CLI.

Workarounds

  • Disable the email-OTP login feature in the plugin settings until the patch is applied.
  • Add a WAF rule that rejects requests to the OTP login endpoint where the otp parameter is not a string of digits matching the expected OTP length.
  • Restrict access to /wp-json/ and the plugin's REST routes to known IP ranges where feasible.
bash
# Update the vulnerable plugin via WP-CLI
wp plugin update user-verification

# Or temporarily deactivate it until a patched release is installed
wp plugin deactivate user-verification

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

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-288
  • Technical References
  • WordPress Function Source Code

  • WordPress Hook Source Code

  • WordPress Template Source Code

  • WordPress User Verification Changeset

  • Wordfence Vulnerability Analysis
  • 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