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

CVE-2026-44650: SillyTavern Auth Bypass Vulnerability

CVE-2026-44650 is an authentication bypass flaw in SillyTavern that allows attackers to delete the entire user extensions directory without authentication. This post explains its impact, affected versions, and mitigation steps.

Published: June 4, 2026

CVE-2026-44650 Overview

CVE-2026-44650 is a path traversal vulnerability in SillyTavern, a locally installed user interface for interacting with large language models, image generation engines, and text-to-speech models. The POST /api/extensions/delete endpoint accepts an extensionName value of "." that bypasses the sanitize-filename validation. Supplying this value causes the application to recursively delete the entire user extensions directory. The default SillyTavern configuration does not require authentication, allowing any network-reachable attacker to trigger the deletion. The issue is fixed in version 1.18.0 and is tracked under [CWE-22].

Critical Impact

An unauthenticated attacker with network access can issue a single HTTP request to wipe a user's entire SillyTavern extensions directory.

Affected Products

  • SillyTavern versions prior to 1.18.0
  • SillyTavern instances running the default configuration without authentication
  • Locally installed SillyTavern deployments reachable over a network

Discovery Timeline

  • 2026-05-29 - CVE-2026-44650 published to the National Vulnerability Database
  • 2026-05-29 - Last updated in NVD database

Technical Details for CVE-2026-44650

Vulnerability Analysis

The vulnerability resides in the extension management API exposed by SillyTavern. The POST /api/extensions/delete route receives an extensionName parameter from the request body and uses it to locate and remove a directory within the user extensions folder. The endpoint relies on the sanitize-filename library to validate that the supplied name does not contain dangerous characters or path separators.

The single-character value "." passes this sanitization because it is technically a valid filename string. When the application joins this value with the base extensions directory path, the resulting path resolves to the parent directory itself. A subsequent recursive delete operation then removes the entire user extensions directory and its contents.

The impact is amplified because SillyTavern ships without authentication enabled by default. Any process or user able to reach the listening port can invoke the endpoint without credentials.

Root Cause

The root cause is incomplete input validation. The sanitize-filename check confirms that the value is a syntactically valid filename but does not reject reserved relative path tokens such as . and ... The application then trusts the sanitized value as a safe directory name during path construction and filesystem operations.

Attack Vector

An attacker sends a single HTTP POST request to /api/extensions/delete containing a JSON body with extensionName set to ".". No session, token, or user interaction is required in the default configuration. The server resolves the path, performs a recursive delete, and the user extensions directory is destroyed. Loss of these files results in integrity and availability impact on the SillyTavern installation.

The vulnerability is described in the SillyTavern GitHub Security Advisory.

Detection Methods for CVE-2026-44650

Indicators of Compromise

  • HTTP POST requests to /api/extensions/delete where the request body contains extensionName equal to ".", "..", or other relative path tokens.
  • Unexpected disappearance of subdirectories under the SillyTavern user extensions folder.
  • Application logs showing extension deletion events that do not correspond to administrator activity.

Detection Strategies

  • Inspect web server and reverse proxy logs for POST requests to /api/extensions/delete and correlate the source IP with expected administrative clients.
  • Monitor filesystem audit events for recursive directory removals targeting the SillyTavern extensions path.
  • Alert on any access to the /api/extensions/ route from non-localhost sources when the application is intended to run only on loopback.

Monitoring Recommendations

  • Forward SillyTavern application and access logs to a centralized log platform for retention and querying.
  • Establish a baseline of normal extension management activity and alert on deviations such as bulk deletions.
  • Track network exposure of SillyTavern instances and flag listeners bound to non-loopback interfaces.

How to Mitigate CVE-2026-44650

Immediate Actions Required

  • Upgrade SillyTavern to version 1.18.0 or later, which contains the fix for this vulnerability.
  • Restrict network access to the SillyTavern listener to 127.0.0.1 until the upgrade is applied.
  • Enable SillyTavern's basic or whitelist authentication features if the instance must remain reachable on a network.
  • Back up the user extensions directory so that any successful deletion can be restored.

Patch Information

The SillyTavern maintainers fixed the issue in version 1.18.0. The patch hardens the validation of the extensionName parameter so that relative path tokens such as . and .. are rejected before any filesystem operation is performed. Refer to the SillyTavern GitHub Security Advisory GHSA-886q-f44j-h6wh for the official advisory.

Workarounds

  • Bind the SillyTavern process to the loopback interface and require users to connect through an authenticated reverse proxy or SSH tunnel.
  • Configure host-based firewall rules to block inbound access to the SillyTavern port from untrusted networks.
  • Run SillyTavern under an account with limited filesystem permissions so the impact of an exploited delete is contained.
bash
# Configuration example: restrict SillyTavern to loopback in config.yaml
listen: false
listenAddress:
  ipv4: 127.0.0.1
  ipv6: "::1"
basicAuthMode: true
basicAuthUser:
  username: "admin"
  password: "<set-a-strong-password>"

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

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.10%

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

  • CVE-2026-44648: 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