Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-52553

CVE-2025-52553: Authentik Auth Bypass Vulnerability

CVE-2025-52553 is an authentication bypass flaw in Goauthentik Authentik that allows unauthorized access to RAC endpoints through token reuse. This article covers technical details, affected versions, and mitigation steps.

Published: March 18, 2026

CVE-2025-52553 Overview

CVE-2025-52553 is an authentication bypass vulnerability in authentik, an open-source identity provider. The vulnerability exists in the Remote Access Connection (RAC) feature where connection tokens are not properly validated against the user's session. After authorizing access to a RAC endpoint, authentik creates a token intended for a single connection that is sent to the client in the URL. This token should only be valid for the session of the user who authorized the connection, however this critical session validation check is missing in vulnerable versions.

Critical Impact

A malicious user could hijack authenticated RAC sessions by copying the connection URL, such as during a screenshare, gaining unauthorized access to remote systems without proper authentication.

Affected Products

  • goauthentik authentik versions prior to 2025.6.3
  • goauthentik authentik versions prior to 2025.4.3

Discovery Timeline

  • 2025-06-27 - CVE-2025-52553 published to NVD
  • 2025-08-21 - Last updated in NVD database

Technical Details for CVE-2025-52553

Vulnerability Analysis

This vulnerability is classified under CWE-287 (Improper Authentication). The core issue lies in the token validation logic within authentik's RAC provider module. When a user authorizes a RAC connection, the system generates a ConnectionToken that is passed via the URL. In vulnerable versions, the filter_not_expired() function only validates the token itself without verifying that the requesting session matches the session that originally created the token.

This missing session binding allows any user who obtains the token URL—through screen sharing, network interception, or other means—to establish their own connection to the RAC endpoint. The attacker does not need to authenticate or have any prior authorization; they simply need the URL containing the token.

Root Cause

The root cause is the absence of session key validation in the ConnectionToken.filter_not_expired() query. The vulnerable code only filtered tokens by their value and expiration status, without binding the token to the originating user's session. This architectural oversight meant that tokens were effectively bearer tokens rather than session-bound credentials.

Attack Vector

The attack requires network access to the authentik instance and user interaction—specifically, the attacker must obtain the RAC connection URL from a legitimate user. Common attack scenarios include:

  1. Screen sharing exposure: During a video call or screen share, the attacker observes and copies the URL from the victim's browser
  2. URL leakage: The token URL could be inadvertently shared through browser history sync, messaging applications, or clipboard managers
  3. Network interception: On shared networks, an attacker could capture the URL if transmitted over unencrypted channels

Once the URL is obtained, the attacker can navigate to it in their own browser and establish a connection to the RAC endpoint, effectively hijacking the remote access session.

python
# Vulnerable code - token lookup without session validation
def init_outpost_connection(self):
    """Initialize guac connection settings"""
    self.token = (
        ConnectionToken.filter_not_expired(token=self.scope["url_route"]["kwargs"]["token"])
        .select_related("endpoint", "provider", "session", "session__user")
        .first()
    )

Source: GitHub Commit 0e07414

The fix adds session key validation to bind the token to the original user's session:

python
# Patched code - token lookup WITH session validation
def init_outpost_connection(self):
    """Initialize guac connection settings"""
    self.token = (
        ConnectionToken.filter_not_expired(
            token=self.scope["url_route"]["kwargs"]["token"],
            session__session__session_key=self.scope["session"].session_key,
        )
        .select_related("endpoint", "provider", "session", "session__user")
        .first()
    )

Source: GitHub Commit 0e07414

Detection Methods for CVE-2025-52553

Indicators of Compromise

  • Multiple RAC connections using the same token from different session keys or IP addresses
  • RAC connection attempts where the session key does not match the original authorization session
  • Unusual patterns of RAC token usage shortly after screen sharing sessions or video conferences
  • Connection logs showing token reuse across different authenticated user sessions

Detection Strategies

  • Monitor authentik logs for RAC connection events and correlate token usage with originating session identifiers
  • Implement alerting on RAC connections that occur from IP addresses different from the original authorization
  • Review access logs for patterns indicating token sharing or reuse across multiple browser sessions
  • Deploy network monitoring to detect RAC URL patterns being transmitted to unauthorized destinations

Monitoring Recommendations

  • Enable verbose logging for the RAC provider module to capture session and token details
  • Configure SIEM rules to alert on anomalous RAC connection patterns
  • Implement session analytics to identify potential token hijacking attempts
  • Monitor for rapid successive RAC connections using identical tokens from different network sources

How to Mitigate CVE-2025-52553

Immediate Actions Required

  • Upgrade authentik to version 2025.6.3 or 2025.4.3 immediately
  • Review RAC connection logs for any suspicious activity indicating potential exploitation
  • Audit active RAC sessions and terminate any that appear unauthorized
  • Notify users to avoid screen sharing while RAC connections are active until the patch is applied

Patch Information

The vulnerability has been addressed in authentik versions 2025.4.3 and 2025.6.3. The fix adds session key validation to the ConnectionToken.filter_not_expired() function in both consumer_client.py and views.py. Security patches are available through the following commits:

  • Commit 0e07414e9739b318cff9401a413a5fe849545325
  • Commit 65373ab21711d58147b5cb9276c5b5876baaa5eb
  • Commit 7100d3c6741853f1cfe3ea2073ba01823ab55caa

For complete details, refer to the GitHub Security Advisory GHSA-wr3v-9p2c-chx7.

Workarounds

  • Decrease the token validity duration in RAC Provider settings by setting Connection expiry to minutes=5 or less
  • Enable the "Delete authorization on disconnect" option in the RAC Provider configuration
  • Restrict RAC access to trusted networks only using network-level access controls
  • Educate users to avoid initiating RAC connections during screen sharing sessions
bash
# Configuration example - RAC Provider settings
# In authentik admin interface, navigate to:
# Providers -> RAC Provider -> Edit
# Set the following:
# Connection expiry: minutes=5
# Delete authorization on disconnect: Enabled

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechGoauthentik

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:A/VC:N/VI:N/VA:N/SC:H/SI:H/SA:H/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-287
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Commit Update

  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2024-47070: Goauthentik Auth Bypass Vulnerability

  • CVE-2025-53942: Goauthentik Auth Bypass Vulnerability

  • CVE-2024-38371: Goauthentik Auth Bypass 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