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

CVE-2025-59934: Formbricks JWT Auth Bypass Vulnerability

CVE-2025-59934 is an authentication bypass vulnerability in Formbricks that allows attackers to bypass JWT signature verification and reset victim passwords. This post covers technical details, affected versions, and mitigation.

Published: March 11, 2026

CVE-2025-59934 Overview

CVE-2025-59934 is a critical authentication bypass vulnerability in Formbricks, an open source Qualtrics alternative. The vulnerability stems from a token validation routine that only decodes JWTs using jwt.decode without verifying their cryptographic signatures. Both the email verification token login path and the password reset server action use the same vulnerable validator, which fails to check the token's signature, expiration, issuer, or audience claims.

If an attacker learns the victim's actual user.id, they can craft an arbitrary JWT with an alg: "none" header and use it to authenticate as the victim or reset the victim's password. This is a classic JWT algorithm confusion vulnerability that allows complete account takeover.

Critical Impact

Attackers can forge authentication tokens to gain unauthorized access to any user account, enabling complete account takeover including password reset capabilities without valid credentials.

Affected Products

  • Formbricks versions prior to 4.0.1

Discovery Timeline

  • 2025-09-26 - CVE-2025-59934 published to NVD
  • 2025-09-29 - Last updated in NVD database

Technical Details for CVE-2025-59934

Vulnerability Analysis

This vulnerability represents a fundamental flaw in JWT token handling where the application decodes tokens without verifying their authenticity. The vulnerable code in apps/web/lib/jwt.ts uses jwt.decode() instead of jwt.verify(), completely bypassing signature validation.

The JWT specification allows the alg header to specify the algorithm used to sign the token. When an application accepts the alg: "none" algorithm without proper validation, attackers can create unsigned tokens that the application incorrectly treats as valid. This vulnerability affects both the email verification flow and password reset functionality, making it particularly dangerous as it provides multiple attack paths to account compromise.

Root Cause

The root cause is the use of jwt.decode() for token validation instead of jwt.verify(). The jwt.decode() function only parses the JWT payload without checking the signature, while jwt.verify() performs complete cryptographic signature verification against the expected secret or public key. Additionally, the validator does not check critical claims such as token expiration (exp), issuer (iss), or audience (aud), further weakening the authentication mechanism.

Attack Vector

An attacker who obtains or guesses a valid user.id can exploit this vulnerability through the following attack flow:

  1. Craft a malicious JWT with alg: "none" in the header
  2. Set the payload with the target user's user.id
  3. Submit the forged token to the email verification or password reset endpoint
  4. Gain authenticated access or reset the victim's password

The vulnerability is network-accessible and requires no privileges, though the attacker needs to obtain a valid user.id to craft the malicious token.

text
+import { render } from "@react-email/render";
+import { createTransport } from "nodemailer";
+import type SMTPTransport from "nodemailer/lib/smtp-transport";
+import { logger } from "@formbricks/logger";
+import type { TLinkSurveyEmailData } from "@formbricks/types/email";
+import { InvalidInputError } from "@formbricks/types/errors";
+import type { TResponse } from "@formbricks/types/responses";
+import type { TSurvey } from "@formbricks/types/surveys/types";
+import { TUserEmail, TUserLocale } from "@formbricks/types/user";
 import {
   DEBUG,
   MAIL_FROM,

Source: GitHub Commit eb1349f

Detection Methods for CVE-2025-59934

Indicators of Compromise

  • JWT tokens submitted to authentication endpoints with alg: "none" or alg: "None" in the header
  • Password reset requests with abnormal token structures lacking valid signatures
  • Multiple authentication attempts using tokens with identical payloads but varying headers
  • Successful authentications where the JWT signature portion is empty or contains only base64 padding

Detection Strategies

  • Implement logging for JWT validation failures, specifically capturing algorithm mismatches
  • Monitor authentication endpoints for requests containing tokens with empty signature segments
  • Deploy Web Application Firewall (WAF) rules to detect and block tokens with alg: "none" headers
  • Alert on password reset completions where the associated token exhibits suspicious characteristics

Monitoring Recommendations

  • Enable detailed audit logging for all authentication and password reset operations
  • Monitor for account takeover indicators such as password changes followed by immediate profile modifications
  • Track failed and successful authentication attempts per user to identify anomalous patterns
  • Review logs for requests to /api/auth/verify-email and password reset endpoints with malformed JWTs

How to Mitigate CVE-2025-59934

Immediate Actions Required

  • Upgrade Formbricks to version 4.0.1 or later immediately
  • Review authentication logs for evidence of exploitation attempts using unsigned or weakly signed tokens
  • Force password resets for any accounts showing suspicious activity
  • Audit recent account changes, particularly password modifications, for signs of compromise

Patch Information

The vulnerability has been patched in Formbricks version 4.0.1. The fix enhances JWT handling with improved encryption and decryption logic, ensuring proper signature verification is performed on all tokens. The security patch was addressed through Pull Request #6596 and committed as eb1349f. For complete technical details, refer to the GitHub Security Advisory GHSA-7229.

Workarounds

  • If immediate patching is not possible, implement a reverse proxy or WAF rule to reject requests containing JWTs with alg: "none" headers
  • Restrict access to email verification and password reset endpoints to known IP ranges where feasible
  • Consider temporarily disabling self-service password reset functionality until the patch can be applied
  • Implement additional authentication factors for sensitive operations as a defense-in-depth measure
bash
# Example: Block alg:none JWTs at reverse proxy (nginx)
# Add to location block handling authentication endpoints
if ($http_authorization ~* "eyJ[A-Za-z0-9_-]*Ijoibm9uZSI") {
    return 403;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechFormbricks

  • SeverityCRITICAL

  • CVSS Score9.4

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-287
  • Technical References
  • GitHub JWT Code Snippet

  • GitHub Commit eb1349f

  • GitHub Pull Request #6596

  • GitHub Security Advisory GHSA-7229
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS 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