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

CVE-2026-29792: Feathersjs OAuth Auth Bypass Vulnerability

CVE-2026-29792 is an authentication bypass flaw in Feathersjs that allows attackers to forge OAuth profiles and obtain valid access tokens without authentication. This article covers technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-29792 Overview

CVE-2026-29792 is an authentication bypass vulnerability in FeathersJS, a popular framework for creating web APIs and real-time applications with TypeScript or JavaScript. The flaw exists in versions 5.0.0 to before 5.0.42 and allows an unauthenticated attacker to obtain valid access tokens for existing users without completing the OAuth authentication flow.

The vulnerability stems from improper authentication handling in the OAuth callback endpoint. An attacker can send a crafted GET request directly to /oauth/:provider/callback with a forged profile in the query string. Because the OAuth service's authentication payload uses a fallback chain that reaches params.query when Grant's session/state responses are empty, the forged profile drives entity lookup and JWT minting, effectively bypassing authentication entirely.

Critical Impact

Unauthenticated attackers can impersonate any existing user and obtain valid JWT access tokens without ever contacting the OAuth provider, leading to complete authentication bypass.

Affected Products

  • FeathersJS versions 5.0.0 through 5.0.41
  • Applications using FeathersJS OAuth authentication with any OAuth provider

Discovery Timeline

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

Technical Details for CVE-2026-29792

Vulnerability Analysis

This vulnerability is classified as CWE-287 (Improper Authentication) and represents a significant design flaw in how FeathersJS handles OAuth callback requests. The root issue lies in the fallback mechanism used when processing OAuth authentication payloads.

Under normal OAuth flow, a user initiates authentication through an authorize endpoint, which creates a session with the OAuth provider. Upon successful authentication, the provider redirects back to the callback endpoint with session state that the application uses to verify and complete authentication.

However, in vulnerable FeathersJS versions, when an attacker directly accesses the callback endpoint without initiating a proper OAuth flow, Grant's session/state responses are empty. The authentication service then falls back through a chain that ultimately reaches params.query—the raw request query string. This allows an attacker to inject a forged user profile directly via query parameters.

Root Cause

The root cause is the unsafe fallback chain in the OAuth service's authentication payload processing. When Grant produces no response due to the absence of a valid OAuth session, the code falls back to reading user profile data from params.query. This design assumes that query parameters can only contain legitimate OAuth provider responses, which is a flawed assumption since attackers can directly craft requests to the callback endpoint.

Attack Vector

The attack requires network access to the vulnerable FeathersJS application. An attacker can exploit this vulnerability by:

  1. Identifying a FeathersJS application using OAuth authentication (versions 5.0.0 to 5.0.41)
  2. Crafting a GET request to /oauth/:provider/callback with forged profile data in the query string
  3. The forged profile should contain identifying information (such as email) matching an existing user
  4. The application processes the forged profile, looks up the matching user entity, and mints a valid JWT
  5. The attacker receives a valid access token and can impersonate the targeted user

The attack does not require any prior authentication, user interaction, or contact with the actual OAuth provider, making it particularly dangerous for applications with public-facing OAuth endpoints.

Detection Methods for CVE-2026-29792

Indicators of Compromise

  • Unusual GET requests to /oauth/:provider/callback endpoints that lack proper OAuth state parameters
  • JWT tokens issued without corresponding OAuth authorization requests in logs
  • Authentication events where OAuth provider callback lacks session correlation
  • Multiple authentication attempts from the same IP targeting different user accounts via the callback endpoint

Detection Strategies

  • Monitor for direct requests to OAuth callback endpoints that bypass the authorize flow
  • Implement logging to correlate OAuth authorize requests with their corresponding callbacks
  • Alert on OAuth callback requests missing expected state or session parameters
  • Review access logs for patterns of callback requests without prior authorize requests from the same session

Monitoring Recommendations

  • Deploy web application firewalls (WAF) with rules to detect OAuth callback requests with suspicious query parameters
  • Implement rate limiting on OAuth callback endpoints to slow down enumeration attempts
  • Enable detailed logging of OAuth authentication flows including request origins and parameter contents
  • Set up alerts for authentication events that lack expected OAuth provider verification steps

How to Mitigate CVE-2026-29792

Immediate Actions Required

  • Upgrade FeathersJS to version 5.0.42 or later immediately
  • Audit authentication logs for signs of exploitation prior to patching
  • Review and rotate credentials for any accounts that may have been compromised
  • Consider temporarily disabling OAuth authentication if immediate patching is not possible

Patch Information

The vulnerability is fixed in FeathersJS version 5.0.42. The fix addresses the unsafe fallback chain by ensuring that user profile data cannot be sourced from raw query parameters when OAuth session state is missing. Organizations should update their FeathersJS dependency to 5.0.42 or later.

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

Workarounds

  • Implement network-level restrictions to limit access to OAuth callback endpoints from trusted sources only
  • Add middleware to validate that OAuth callback requests include valid session state before processing
  • Configure OAuth providers to use strict redirect URI validation to limit callback abuse
  • Monitor and block requests to callback endpoints that lack proper OAuth flow correlation
bash
# Update FeathersJS to the patched version
npm update @feathersjs/feathers@5.0.42

# Or update in package.json and reinstall
npm install @feathersjs/feathers@^5.0.42

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechFeathersjs

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/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
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-287
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-27191: Feathersjs Auth Bypass Vulnerability

  • CVE-2026-27192: Feathersjs Auth Bypass Vulnerability

  • CVE-2026-29793: Feathersjs MongoDB Injection Vulnerability

  • CVE-2026-27193: Feathersjs Information Disclosure Flaw
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