A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-44648

CVE-2026-44648: SillyTavern Auth Bypass Vulnerability

CVE-2026-44648 is an authentication bypass flaw in SillyTavern that allows session hijacking after password changes due to stateless cookie sessions. This post covers the technical details, affected versions, and mitigation.

Published: June 4, 2026

CVE-2026-44648 Overview

CVE-2026-44648 affects SillyTavern, a locally installed user interface for interacting with text generation large language models, image generation engines, and text-to-speech voice models. Versions prior to 1.18.0 rely on cookie-session authentication that stores all session data in a signed client-side cookie. The POST /api/users/change-password and POST /api/users/recover-step2 endpoints update the password hash in the database but fail to expire active sessions. Because the session is stateless, the server cannot revoke an issued token. An attacker with a previously captured session cookie retains access after a victim changes credentials. The flaw is tracked under [CWE-613: Insufficient Session Expiration].

Critical Impact

Stolen or leaked session cookies remain valid after password changes or account recovery, allowing persistent unauthorized access to SillyTavern user accounts.

Affected Products

  • SillyTavern versions prior to 1.18.0
  • SillyTavern /api/users/change-password endpoint
  • SillyTavern /api/users/recover-step2 endpoint

Discovery Timeline

  • 2026-05-29 - CVE-2026-44648 published to NVD
  • 2026-05-29 - Last updated in NVD database

Technical Details for CVE-2026-44648

Vulnerability Analysis

SillyTavern implements authentication using stateless signed cookies. The cookie contains user handle and permissions data, signed by the server to prevent tampering. When a user changes their password through POST /api/users/change-password or completes account recovery through POST /api/users/recover-step2, the server updates the stored password hash but performs no session invalidation. The signed cookie remains cryptographically valid until its natural expiry. An attacker who previously obtained a session cookie through cross-site scripting, network interception, or local access can continue authenticating as the victim. Password rotation, which users perform specifically to revoke unauthorized access, provides no protection against this attack path. The issue maps to [CWE-613: Insufficient Session Expiration].

Root Cause

The root cause is architectural. Stateless cookie-session authentication has no server-side session store to invalidate. Without tracking issued tokens, the server cannot distinguish a legitimate cookie from one that should be revoked. The password change handler treats credential rotation as a database operation rather than a session lifecycle event.

Attack Vector

An attacker first obtains a victim's session cookie. The victim subsequently changes their password, believing the action terminates any unauthorized sessions. The attacker replays the captured cookie against the SillyTavern instance and retains full account access with the original permissions. Exploitation requires user interaction and prior cookie acquisition, which raises attack complexity.

No verified proof-of-concept code is available. See the GitHub Security Advisory for vendor technical details.

Detection Methods for CVE-2026-44648

Indicators of Compromise

  • Authenticated API requests originating from IP addresses or user agents that differ from the account owner's typical pattern after a password change event.
  • Continued session activity on a user handle immediately following a POST /api/users/change-password or POST /api/users/recover-step2 request from a different client.
  • Reuse of identical session cookie signatures across multiple source IPs.

Detection Strategies

  • Correlate password change events with subsequent authenticated requests and flag any session whose client fingerprint predates the password change.
  • Inspect web server access logs for /api/users/ endpoints and build behavioral baselines per user handle.
  • Monitor for SillyTavern instances running versions earlier than 1.18.0 across the environment.

Monitoring Recommendations

  • Ingest SillyTavern access logs and proxy logs into a centralized analytics platform for session anomaly detection.
  • Alert on concurrent active sessions tied to the same user handle from geographically distant source addresses.
  • Track version inventory for SillyTavern deployments and flag instances below 1.18.0.

How to Mitigate CVE-2026-44648

Immediate Actions Required

  • Upgrade SillyTavern to version 1.18.0 or later, which contains the official fix.
  • Force all users to re-authenticate after upgrade by rotating any server-side cookie signing secret.
  • Audit recent password change and recovery events for signs of post-change session reuse.

Patch Information

The vendor fixed CVE-2026-44648 in SillyTavern 1.18.0. Refer to the GitHub Security Advisory GHSA-wmm3-h9qj-p5v6 for complete remediation details.

Workarounds

  • Rotate the cookie signing secret after any password change or account recovery event, which invalidates all previously issued cookies.
  • Restrict SillyTavern network exposure to trusted local networks or place the application behind an authenticating reverse proxy that enforces independent session control.
  • Shorten cookie expiration to reduce the window during which a stolen token remains valid.
bash
# Upgrade SillyTavern to the patched release
git fetch --tags
git checkout 1.18.0
npm install
# Rotate the cookie signing secret in config.yaml, then restart the service

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechSillytavern

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-613
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-44649: SillyTavern Auth Bypass Vulnerability

  • CVE-2026-44650: SillyTavern Auth Bypass Vulnerability

  • CVE-2026-46372: SillyTavern SSRF Vulnerability

  • CVE-2026-44652: SillyTavern SSRF Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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