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

CVE-2026-7567: WordPress Temporary Login Auth Bypass Flaw

CVE-2026-7567 is an authentication bypass vulnerability in the WordPress Temporary Login plugin allowing unauthenticated attackers to access temporary user accounts. This article covers the technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-7567 Overview

CVE-2026-7567 is an authentication bypass vulnerability affecting the Temporary Login plugin for WordPress in versions up to and including 1.0.0. The flaw resides in the maybe_login_temporary_user() function, which fails to validate that the temp-login-token GET parameter is a scalar string. When an attacker submits the parameter as an array, PHP's empty() check is bypassed and sanitize_key() returns an empty string. WordPress then ignores the empty meta_value passed to get_users() and returns every user matching the _temporary_login_token meta key. An unauthenticated attacker can authenticate as any active temporary login user with a single crafted GET request [CWE-288].

Critical Impact

Unauthenticated remote attackers can hijack any active temporary login account, gaining the privileges assigned to that user.

Affected Products

  • WordPress Temporary Login plugin versions ≤ 1.0.0
  • Vulnerable function: maybe_login_temporary_user() in core/admin.php
  • Vulnerable usermeta lookup: _temporary_login_token via get_users()

Discovery Timeline

  • 2026-05-01 - CVE-2026-7567 published to NVD
  • 2026-05-01 - Last updated in NVD database

Technical Details for CVE-2026-7567

Vulnerability Analysis

The Temporary Login plugin issues short-lived access tokens that allow third parties to log into a WordPress site as a designated user. Authentication is performed by reading the temp-login-token GET parameter, sanitizing it, and querying the users table for a matching _temporary_login_token usermeta value. The plugin treats the parameter as a string without first verifying its type.

When the parameter arrives as an array, PHP's empty() returns false, so the early-exit guard is skipped. sanitize_key() then receives a non-string input and returns an empty string. The empty string is forwarded as the meta_value argument to get_users(). WordPress core silently ignores empty meta_value arguments while still applying the meta_key filter, returning every user that holds an active temporary login record.

Root Cause

The root cause is improper input validation [CWE-288]. The plugin does not enforce a scalar type check on the temp-login-token parameter before passing it through sanitize_key() and into the user query. Combined with WordPress's behavior of dropping empty meta-value filters, the missing type check collapses the authentication boundary.

Attack Vector

Exploitation requires no authentication, no user interaction, and no prior knowledge of any token. The attacker sends a single HTTP GET request to the plugin endpoint with temp-login-token supplied as an array (for example, ?temp-login-token[]=). The plugin authenticates the request as the first matching temporary user, establishing a valid session. See the Wordfence Vulnerability Report and the WordPress Plugin Code Snippet for the affected source lines.

Detection Methods for CVE-2026-7567

Indicators of Compromise

  • HTTP GET requests containing temp-login-token[] or any array-style notation for the temp-login-token parameter.
  • Successful WordPress login events for users carrying the _temporary_login_token usermeta key without a preceding token issuance event.
  • New authenticated sessions originating from IP addresses that never previously requested the temporary login URL.

Detection Strategies

  • Inspect web server access logs for query strings matching the regex temp-login-token(\[|%5B) and alert on any match.
  • Correlate WordPress wp_login audit events with the absence of a corresponding token issuance entry in the plugin's admin log.
  • Flag authentication events where the temp-login-token parameter type, captured at the WAF or reverse proxy, is not a scalar string.

Monitoring Recommendations

  • Enable verbose logging of authentication events on WordPress sites running the Temporary Login plugin.
  • Monitor for sudden privilege use, post creation, or plugin installation by accounts associated with temporary logins.
  • Track outbound connections from the WordPress host that follow successful temporary-login authentications.

How to Mitigate CVE-2026-7567

Immediate Actions Required

  • Deactivate and remove the Temporary Login plugin until a fixed release is installed.
  • Revoke all existing temporary login users by deleting accounts that hold the _temporary_login_token usermeta key.
  • Force a password reset and session invalidation for any administrator accounts that may have been impersonated.
  • Review recent plugin, theme, and user-role changes for unauthorized modifications.

Patch Information

No patched version is referenced in the available advisory data. Site operators should monitor the Wordfence Vulnerability Report and the plugin source repository for an updated release that adds a scalar type check to the temp-login-token parameter before it reaches sanitize_key().

Workarounds

  • Block requests containing array-style temp-login-token parameters at the WAF or reverse proxy layer.
  • Restrict access to the plugin's login endpoint by IP allowlist while a fix is pending.
  • Disable temporary user accounts and rely on standard WordPress authentication until the plugin is updated.
bash
# Example NGINX rule to block array-style token parameters
if ($args ~* "temp-login-token(\[|%5B)") {
    return 403;
}

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.08%

  • 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 Plugin Code Snippet

  • WordPress Plugin Code Snippet

  • WordPress Plugin Code Snippet

  • WordPress Plugin Code Snippet

  • WordPress Plugin Code Snippet

  • WordPress Plugin Code Snippet

  • 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