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-2025-29928

CVE-2025-29928: Goauthentik Auth Bypass Vulnerability

CVE-2025-29928 is an authentication bypass flaw in Goauthentik Authentik where deleted sessions remain active when using database storage. This article covers technical details, affected versions, and mitigation.

Published: April 15, 2026

CVE-2025-29928 Overview

CVE-2025-29928 is a session fixation vulnerability affecting authentik, an open-source identity provider. When authentik is configured to use database-based session storage (a non-default configuration), deleting sessions via the Web Interface or the API fails to properly revoke the session. This allows the original session holder to maintain unauthorized access to the authentik instance even after an administrator attempts to terminate their session.

Critical Impact

Attackers or compromised accounts can maintain persistent access to the identity provider even after session revocation attempts, potentially compromising all downstream applications relying on authentik for authentication.

Affected Products

  • goauthentik authentik versions prior to 2024.12.4
  • goauthentik authentik versions prior to 2025.2.3
  • authentik instances configured with database session storage (non-default)

Discovery Timeline

  • 2025-03-28 - CVE-2025-29928 published to NVD
  • 2025-08-21 - Last updated in NVD database

Technical Details for CVE-2025-29928

Vulnerability Analysis

This vulnerability represents a session fixation flaw (CWE-384) in the authentik identity provider's session management subsystem. The core issue lies in the disconnect between session deletion operations performed through the administrative interface and the actual session invalidation in the underlying database storage backend.

When administrators attempt to revoke user sessions through the Web Interface or API, the deletion operation completes without error, giving the appearance of successful session termination. However, the session data persists in a state that allows the original session token to remain valid for authentication purposes. This creates a critical security gap where malicious actors or compromised accounts can maintain their authenticated state indefinitely.

The vulnerability specifically affects deployments using database session storage, which is not the default configuration but may be selected by organizations requiring persistent session data across server restarts or load-balanced environments.

Root Cause

The root cause stems from improper session invalidation logic when the database backend is used for session storage. The session deletion routine fails to properly synchronize the removal of session records with the session validation mechanism. While the administrative action appears to complete successfully, the underlying session state is not fully invalidated, allowing continued authentication with the existing session token.

Attack Vector

The attack vector is network-based, exploiting the session persistence flaw after an administrator attempts revocation. An attacker who has obtained valid session credentials—whether through session hijacking, credential theft, or legitimate access that should have been revoked—can continue to access authentik and any downstream applications that rely on it for authentication.

The attack requires user interaction (an administrator must attempt to revoke the session) and involves some complexity in maintaining the conditions for exploitation. However, since authentik serves as an identity provider, successful exploitation could grant the attacker access to multiple federated applications and services.

The vulnerability does not require prior privileges to exploit once a valid session exists. The scope is changed as the impact extends beyond authentik itself to all applications relying on it for identity services.

Detection Methods for CVE-2025-29928

Indicators of Compromise

  • Active sessions that persist after administrative revocation attempts
  • Users maintaining authenticated access despite appearing logged out in the admin console
  • Session tokens being used after the corresponding session record shows as deleted
  • Anomalous authentication activity from sessions that should have been terminated

Detection Strategies

  • Monitor authentik audit logs for session deletion events and correlate with subsequent authentication attempts using the same session identifiers
  • Implement alerting for authentication activity that occurs after session revocation timestamps
  • Compare active database session records against session validation logs to identify orphaned or zombie sessions
  • Review authentik configuration to identify instances using database session storage (SESSION_STORAGE=database)

Monitoring Recommendations

  • Enable comprehensive audit logging for all session management operations in authentik
  • Implement session activity monitoring to detect continued access after revocation attempts
  • Configure alerts for authentication patterns that indicate session persistence beyond expected lifetimes
  • Regularly audit the list of active sessions against expected user activity patterns

How to Mitigate CVE-2025-29928

Immediate Actions Required

  • Upgrade authentik to version 2025.2.3 or 2024.12.4 immediately
  • If upgrade is not immediately possible, switch to cache-based session storage as a temporary workaround
  • Audit all active sessions and identify any that may have been compromised
  • Force re-authentication for all users after applying the fix or switching storage backends

Patch Information

The vulnerability has been addressed in authentik versions 2025.2.3 and 2024.12.4. The fix ensures that session deletion operations properly invalidate sessions at the database level, preventing continued authentication with revoked session tokens.

For detailed information about the fix, refer to the GitHub Commit Overview and the GitHub Security Advisory.

Workarounds

  • Switch from database session storage to cache-based session storage until the upgrade can be completed
  • Note that switching storage backends will delete all existing sessions, requiring all users to re-authenticate
  • Consider implementing additional session validation at the application layer for critical downstream services
  • Implement network-level access controls to limit exposure while the vulnerability remains unpatched
bash
# Configuration to switch to cache-based session storage
# In your authentik configuration (docker-compose.yml or environment variables)
AUTHENTIK_SESSION_STORAGE=cache

# After changing the configuration, restart authentik services
# Note: This will invalidate all existing sessions
docker-compose restart

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechAuthentik

  • SeverityHIGH

  • CVSS Score8.0

  • EPSS Probability0.24%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityHigh
  • AvailabilityNone
  • CWE References
  • CWE-384
  • Vendor Resources
  • GitHub Commit Overview

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-25922: authentik SAML Auth Bypass Vulnerability

  • CVE-2026-25748: authentik Auth Bypass Vulnerability

  • CVE-2026-25227: authentik Identity Provider RCE Vulnerability
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