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

CVE-2026-28490: Authlib Auth Bypass Vulnerability

CVE-2026-28490 is an authentication bypass flaw in Authlib's JWE RSA1_5 implementation that exposes a cryptographic padding oracle. This article covers the technical details, affected versions, and mitigation steps.

Published: March 20, 2026

CVE-2026-28490 Overview

CVE-2026-28490 is a cryptographic padding oracle vulnerability affecting the Authlib Python library, which is widely used for building OAuth and OpenID Connect servers. The vulnerability exists in the implementation of the JSON Web Encryption (JWE) RSA1_5 key management algorithm. Prior to version 1.6.9, Authlib registered RSA1_5 in its default algorithm registry without requiring explicit opt-in, and critically, the implementation actively destroyed the constant-time Bleichenbacher mitigation that the underlying cryptography library implements correctly.

This padding oracle attack vector allows network-based attackers to potentially decrypt JWE tokens by observing timing differences in error responses, enabling them to recover sensitive encrypted data without possessing the private key.

Critical Impact

Attackers can exploit this padding oracle vulnerability to decrypt JWE tokens and extract sensitive authentication data, potentially compromising OAuth/OpenID Connect implementations that rely on Authlib for cryptographic operations.

Affected Products

  • Authlib versions prior to 1.6.9
  • Applications using Authlib's JWE implementation with RSA1_5 algorithm
  • OAuth and OpenID Connect servers built with vulnerable Authlib versions

Discovery Timeline

  • 2026-03-16 - CVE CVE-2026-28490 published to NVD
  • 2026-03-17 - Last updated in NVD database

Technical Details for CVE-2026-28490

Vulnerability Analysis

This vulnerability is classified under CWE-203 (Observable Discrepancy), which relates to information exposure through timing or behavioral differences. The core issue lies in how Authlib handles the RSA1_5 algorithm for JWE decryption.

The RSA PKCS#1 v1.5 encryption scheme is inherently vulnerable to Bleichenbacher attacks (also known as "million message attack" or padding oracle attacks). Modern cryptographic libraries like Python's cryptography package implement constant-time mitigations to prevent attackers from distinguishing between valid and invalid padding through timing analysis. However, Authlib's implementation inadvertently destroyed these protections by introducing observable timing differences in its error handling paths.

The attack requires network access and the ability to send crafted JWE tokens to a vulnerable application. By analyzing the response times for different malformed tokens, an attacker can progressively recover the plaintext content of encrypted tokens.

Root Cause

The root cause of CVE-2026-28490 is twofold:

  1. Unsafe Default Configuration: The RSA1_5 algorithm was registered in Authlib's default algorithm registry without requiring explicit opt-in, exposing users to a deprecated and vulnerable algorithm by default.

  2. Broken Constant-Time Operations: The implementation's error handling code paths introduced timing variations that leaked information about the validity of PKCS#1 v1.5 padding, negating the constant-time protections provided by the underlying cryptography library.

Attack Vector

The attack is network-based and does not require authentication or user interaction. An attacker with the ability to intercept or observe JWE tokens can:

  1. Capture an encrypted JWE token destined for a vulnerable Authlib-based application
  2. Send modified versions of the token with manipulated ciphertext bytes
  3. Measure response timing differences to determine padding validity
  4. Use the Bleichenbacher adaptive chosen-ciphertext attack to progressively recover the session key
  5. Decrypt the original token contents to access sensitive data

The patch introduces a deprecated attribute to algorithm definitions and modifies the algorithm selection logic to reject deprecated algorithms by default:

python
             raise MissingAlgorithmError()
 
         alg = header["alg"]
-        if self._algorithms is not None and alg not in self._algorithms:
-            raise UnsupportedAlgorithmError()
         if alg not in self.ALGORITHMS_REGISTRY:
             raise UnsupportedAlgorithmError()
 
         algorithm = self.ALGORITHMS_REGISTRY[alg]
+        if self._algorithms is None:
+            if algorithm.deprecated:
+                raise UnsupportedAlgorithmError()
+        elif alg not in self._algorithms:
+            raise UnsupportedAlgorithmError()
+
         if callable(key):
             key = key(header, payload)
         key = algorithm.prepare_key(key)

Source: GitHub Commit Details

The algorithm model was also updated to support deprecation marking:

python
 
     name = None
     description = None
+    deprecated = False
     algorithm_type = "JWS"
     algorithm_location = "alg"
 

Source: GitHub Commit Details

Detection Methods for CVE-2026-28490

Indicators of Compromise

  • Unusual patterns of repeated JWE token submissions with slight variations in ciphertext
  • Elevated error rates in OAuth/OIDC token validation endpoints
  • Network traffic analysis showing systematic probing of token endpoints with timing measurement characteristics
  • Log entries showing multiple UnsupportedAlgorithmError or decryption failures from single source IPs

Detection Strategies

  • Monitor application logs for anomalous patterns of JWE decryption failures from single sources
  • Implement rate limiting on token validation endpoints to detect and throttle potential oracle attacks
  • Review dependency manifests (requirements.txt, Pipfile, pyproject.toml) for Authlib versions prior to 1.6.9
  • Use software composition analysis (SCA) tools to identify vulnerable Authlib installations across your environment

Monitoring Recommendations

  • Enable detailed logging for all JWE token processing operations including timing metrics
  • Configure alerting for statistically significant deviations in token validation response times
  • Monitor for requests containing the RSA1_5 algorithm identifier in JWE headers
  • Implement network-level monitoring for patterns consistent with adaptive chosen-ciphertext attacks

How to Mitigate CVE-2026-28490

Immediate Actions Required

  • Upgrade Authlib to version 1.6.9 or later immediately using pip install authlib>=1.6.9
  • Audit your codebase for explicit use of the RSA1_5 algorithm and migrate to RSA-OAEP or RSA-OAEP-256
  • Review existing JWE tokens and consider re-encrypting sensitive data after patching
  • Rotate any cryptographic keys that may have been used with the vulnerable RSA1_5 implementation

Patch Information

The vulnerability has been patched in Authlib version 1.6.9. The fix introduces a deprecation mechanism for unsafe algorithms and ensures RSA1_5 is no longer available in the default algorithm registry. Users who explicitly require RSA1_5 for legacy compatibility must now opt-in deliberately.

Patch details are available in the GitHub Commit and the GitHub Security Advisory.

Workarounds

  • If immediate upgrade is not possible, explicitly configure Authlib to exclude RSA1_5 from the allowed algorithms list
  • Implement additional rate limiting and anomaly detection on token validation endpoints
  • Consider using Web Application Firewalls (WAF) to detect and block potential padding oracle attack patterns
  • Temporarily disable JWE functionality if RSA1_5 is the only supported key management algorithm in your deployment
bash
# Configuration example
# Upgrade Authlib to patched version
pip install --upgrade authlib>=1.6.9

# Verify installed version
pip show authlib | grep Version

# Search for RSA1_5 usage in your codebase
grep -r "RSA1_5" --include="*.py" .

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechAuthlib

  • SeverityHIGH

  • CVSS Score8.3

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:P/PR:N/UI:N/VC:H/VI:L/VA:N/SC:N/SI:N/SA:N/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
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-203
  • Technical References
  • GitHub Release v1.6.9
  • Vendor Resources
  • GitHub Commit Details

  • GitHub Security Advisory GHSA-7432-952r-cw78
  • Related CVEs
  • CVE-2026-27962: Authlib Auth Bypass Vulnerability

  • CVE-2026-28498: Authlib Auth Bypass Vulnerability

  • CVE-2026-28802: Authlib Auth Bypass Vulnerability

  • CVE-2024-37568: Authlib 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