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-2026-28513

CVE-2026-28513: Pocket ID Auth Bypass Vulnerability

CVE-2026-28513 is an authentication bypass flaw in Pocket ID OIDC provider that enables cross-client code exchange and expired code reuse. This article covers technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-28513 Overview

CVE-2026-28513 is an authorization bypass vulnerability in Pocket ID, an OpenID Connect (OIDC) provider that enables users to authenticate with passkeys. Prior to version 2.4.0, the OIDC token endpoint contains a critical flaw in its authorization code validation logic that allows attackers to exploit cross-client code exchange and expired code reuse.

Critical Impact

This vulnerability enables attackers to bypass authorization controls by exchanging authorization codes across different clients or reusing expired codes, potentially leading to unauthorized access to protected services and confidential user data.

Affected Products

  • Pocket ID versions prior to 2.4.0
  • OIDC-integrated services relying on vulnerable Pocket ID instances
  • Applications using Pocket ID for passkey-based authentication

Discovery Timeline

  • 2026-03-10 - CVE CVE-2026-28513 published to NVD
  • 2026-03-11 - Last updated in NVD database

Technical Details for CVE-2026-28513

Vulnerability Analysis

This vulnerability falls under CWE-863 (Incorrect Authorization), where the OIDC token endpoint fails to properly validate authorization codes. The flawed validation logic only rejects an authorization code when both conditions are met simultaneously: the client ID is incorrect AND the code has expired. This creates a dangerous authentication bypass scenario.

In a properly implemented OIDC flow, the authorization code should be validated against the specific client that initiated the authorization request. Additionally, expired codes should be rejected regardless of the client ID. The vulnerability in Pocket ID allows two distinct attack scenarios: an attacker can use a valid authorization code obtained for one client (Client A) to request tokens for a different client (Client B), and expired authorization codes can be reused if the client ID matches the original request.

Root Cause

The root cause stems from improper conditional logic in the token endpoint's authorization code validation routine. Instead of independently verifying the client ID match AND the code expiration status, the implementation uses a combined conditional check that only fails when both conditions are violated. This means valid client ID + expired code = accepted, and invalid client ID + valid code = accepted.

Attack Vector

The attack is network-based and requires low privileges (authenticated user context). An attacker who obtains or intercepts an authorization code can exploit this vulnerability to:

  1. Cross-Client Token Exchange: Capture an authorization code issued to a legitimate client and exchange it at the token endpoint using a different client's credentials to obtain tokens for unauthorized access.

  2. Expired Code Reuse: Replay previously captured authorization codes that should have expired, as long as the correct client ID is provided in the token request.

The vulnerability affects confidentiality significantly, with some impact to integrity, as attackers can potentially access protected resources and user data intended for other clients or sessions. For detailed technical analysis, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-28513

Indicators of Compromise

  • Unusual token exchange requests where the authorization code was issued to a different client than the one requesting tokens
  • Token endpoint requests using authorization codes well past their expected expiration window
  • Multiple successful token exchanges using the same authorization code across different client IDs
  • Authentication logs showing discrepancies between the original authorization request client and token exchange client

Detection Strategies

  • Monitor OIDC token endpoint logs for authorization codes being exchanged by clients different from the original issuing client
  • Implement alerting for successful token exchanges where the code age exceeds the configured expiration threshold
  • Cross-reference authorization request logs with token exchange logs to identify client ID mismatches
  • Audit authentication patterns for anomalous replay attempts or cross-client activity

Monitoring Recommendations

  • Enable detailed logging for all OIDC token endpoint transactions including client ID, code issuance time, and exchange time
  • Implement real-time monitoring for authorization code reuse patterns
  • Set up alerts for authentication anomalies that may indicate exploitation attempts
  • Review access logs for services integrated with Pocket ID for unauthorized access patterns

How to Mitigate CVE-2026-28513

Immediate Actions Required

  • Upgrade Pocket ID to version 2.4.0 or later immediately
  • Audit recent authentication logs for potential exploitation indicators
  • Review access to sensitive resources that may have been compromised through this vulnerability
  • Rotate client secrets for all OIDC clients registered with the affected Pocket ID instance

Patch Information

The vulnerability is fixed in Pocket ID version 2.4.0. The patch corrects the authorization code validation logic to independently verify both the client ID match and code expiration status. Organizations should update to this version as soon as possible. Additional details can be found in the GitHub Security Advisory.

Workarounds

  • Reduce authorization code lifetime to minimize the window of opportunity for code reuse attacks
  • Implement additional application-layer validation of authorization codes before accepting tokens
  • Monitor and rate-limit token exchange requests to detect and mitigate potential exploitation attempts
  • Consider implementing network-level restrictions to limit token endpoint access to known, trusted client IP ranges
bash
# Configuration example - Reduce authorization code lifetime
# In your Pocket ID configuration file, set a shorter code expiration:
OIDC_AUTHORIZATION_CODE_LIFETIME=30
# Note: Upgrade to version 2.4.0 is the recommended solution

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechPocket

  • SeverityHIGH

  • CVSS Score8.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-863
  • Technical References
  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal Vulnerability
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