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-2026-22794

CVE-2026-22794: Appsmith Auth Bypass Vulnerability

CVE-2026-22794 is an authentication bypass flaw in Appsmith that allows attackers to control password reset links and steal authentication tokens. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2026-22794 Overview

CVE-2026-22794 is a critical Origin Validation Error vulnerability affecting Appsmith, an open-source platform used to build admin panels, internal tools, and dashboards. Prior to version 1.93, the Appsmith server uses the Origin value from HTTP request headers as the base URL for email links without proper validation. This allows attackers to manipulate password reset and email verification links to point to attacker-controlled domains, potentially exposing authentication tokens and enabling account takeover.

Critical Impact

Attackers can intercept password reset tokens by spoofing the Origin header, leading to complete account takeover of Appsmith user accounts.

Affected Products

  • Appsmith versions prior to 1.93
  • Self-hosted Appsmith deployments using email-based authentication
  • Cloud and on-premise Appsmith installations with password reset functionality enabled

Discovery Timeline

  • 2026-01-12 - CVE-2026-22794 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2026-22794

Vulnerability Analysis

This vulnerability falls under CWE-346 (Origin Validation Error), a class of security flaws where applications fail to properly verify the source of requests or data. In the case of Appsmith, the server-side email generation logic trusts the client-supplied Origin HTTP header to construct URLs embedded in password reset and email verification emails.

When a user requests a password reset, the application generates an email containing a link with a unique token. The base URL for this link is derived directly from the Origin header in the HTTP request. Since the Origin header is entirely controlled by the client, an attacker can forge requests with a malicious origin value, causing the application to generate emails with links pointing to the attacker's infrastructure.

Root Cause

The root cause is the absence of server-side validation for the Origin header before using it in security-sensitive email link generation. The application should maintain a whitelist of allowed origins or use a server-configured base URL for generating email links, rather than trusting client-supplied header values.

Attack Vector

The attack requires network access and user interaction. An attacker initiates the attack by triggering a password reset request for a target user while manipulating the Origin header to point to their controlled domain. The victim receives a legitimate-looking email from Appsmith but with a password reset link pointing to the attacker's server.

When the victim clicks the link, their browser sends the authentication token to the attacker's domain. The attacker can then use this captured token against the legitimate Appsmith server to reset the victim's password and gain full access to their account. The scope of this attack changes because the vulnerability can affect authentication states managed by the broader system beyond just the vulnerable Appsmith component.

The attack flow consists of the following stages:

  1. Attacker identifies target user's email associated with an Appsmith account
  2. Attacker sends a crafted password reset request with a spoofed Origin header pointing to https://attacker.com
  3. Appsmith generates a password reset email with link: https://attacker.com/reset?token=<secret_token>
  4. Victim clicks the link, sending the token to the attacker's server
  5. Attacker uses the captured token to reset the victim's password on the legitimate Appsmith instance

For detailed technical information, see the GitHub Security Advisory GHSA-7hf5-mc28-xmcv.

Detection Methods for CVE-2026-22794

Indicators of Compromise

  • Unusual or unexpected Origin headers in password reset request logs that don't match legitimate application domains
  • User reports of password reset emails containing links to unfamiliar domains
  • Multiple password reset requests for the same user from different IP addresses or with varying Origin values
  • Authentication logs showing successful password resets followed by logins from new or suspicious IP addresses

Detection Strategies

  • Implement logging and alerting for password reset requests with Origin headers that don't match configured application domains
  • Monitor email delivery logs for outbound password reset emails and correlate with legitimate user requests
  • Deploy web application firewall (WAF) rules to detect and block requests with suspicious or malformed Origin headers
  • Analyze HTTP request logs for patterns of Origin header manipulation across authentication endpoints

Monitoring Recommendations

  • Enable detailed access logging on Appsmith instances, particularly for authentication-related endpoints
  • Set up alerts for spikes in password reset requests or requests with anomalous header patterns
  • Monitor for user-reported phishing attempts or suspicious emails that appear to come from your Appsmith deployment
  • Implement real-time correlation of password reset requests with subsequent authentication events

How to Mitigate CVE-2026-22794

Immediate Actions Required

  • Upgrade Appsmith to version 1.93 or later immediately to address this vulnerability
  • Audit recent password reset requests and associated Origin headers for signs of exploitation
  • Force password resets for any accounts where suspicious activity is detected
  • Review and invalidate any pending password reset tokens generated prior to patching

Patch Information

Appsmith has addressed this vulnerability in version 1.93. The fix implements proper validation of the Origin header and ensures email links use a server-configured base URL rather than client-supplied values. The security fix is available in commit 6f9ee6226bac13fb4b836940b557913fff78b633.

Organizations should update their Appsmith installations to version 1.93 or later. For detailed patch information, refer to the GitHub Security Advisory.

Workarounds

  • Configure a reverse proxy or web application firewall to validate and strip untrusted Origin headers from incoming requests to authentication endpoints
  • Implement network-level access controls to restrict who can access password reset functionality
  • Temporarily disable email-based password reset functionality until the patch can be applied
  • Monitor and alert on all password reset requests as an interim detection measure
bash
# Example: Nginx configuration to enforce Origin header validation
# Add to your Appsmith reverse proxy configuration

# Block requests with Origin headers not matching your domain
if ($http_origin !~ "^https://(www\.)?yourdomain\.com$") {
    set $block_origin 1;
}

# Apply block for password reset endpoints
location /api/v1/users/forgotPassword {
    if ($block_origin) {
        return 403;
    }
    proxy_pass http://appsmith_backend;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechAppsmith

  • SeverityCRITICAL

  • CVSS Score9.6

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-346
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-7hf5-mc28-xmcv
  • Related CVEs
  • CVE-2026-24042: Appsmith Auth Bypass Vulnerability

  • CVE-2026-5418: Appsmith Dashboard SSRF Vulnerability

  • CVE-2026-34411: Appsmith Information Disclosure Flaw

  • CVE-2026-30862: Appsmith Table Widget 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