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

CVE-2026-45038: Tabby Terminal Emulator RCE Vulnerability

CVE-2026-45038 is a remote code execution flaw in Tabby terminal emulator caused by unescaped control characters in file paths. This article covers the technical details, affected versions, security impact, and mitigation.

Published: May 21, 2026

CVE-2026-45038 Overview

CVE-2026-45038 is a code execution vulnerability in Tabby, a configurable terminal emulator formerly known as Terminus. Versions prior to 1.0.233 fail to escape control characters from file paths during drag-and-drop operations. An attacker who tricks a user into dragging a maliciously named file into the terminal can achieve arbitrary code execution. The flaw is tracked under CWE-150: Improper Neutralization of Escape, Meta, or Control Sequences. The vendor addressed the issue in Tabby 1.0.233.

Critical Impact

Local code execution through unescaped control characters in dropped file paths, requiring only a single drag-and-drop user interaction.

Affected Products

  • Tabby (formerly Terminus) terminal emulator versions prior to 1.0.233
  • All platforms supported by the Tabby Electron application
  • Installations accepting drag-and-drop file input from untrusted sources

Discovery Timeline

  • 2026-05-15 - CVE-2026-45038 published to NVD
  • 2026-05-20 - Last updated in NVD database

Technical Details for CVE-2026-45038

Vulnerability Analysis

Tabby renders dropped files by inserting their paths directly into the active terminal session. The application does not neutralize ANSI escape sequences or control characters embedded in those paths. An attacker crafts a filename containing terminal control sequences and delivers it to the victim through any normal file-sharing channel. When the victim drags the file into a Tabby terminal, the embedded sequences are interpreted by the emulator rather than treated as literal text. This enables command injection into the terminal's input buffer, leading to execution of attacker-controlled commands in the user's shell context.

Root Cause

The root cause is improper neutralization of escape, meta, and control sequences [CWE-150]. Tabby's drag-and-drop handler concatenates the raw file path into terminal input without sanitization. Control characters such as carriage returns, line feeds, and OSC or CSI escape sequences pass through unchanged. Terminal emulators treat these sequences as commands, which violates the trust boundary between file metadata and terminal input.

Attack Vector

Exploitation requires local user interaction. The attacker creates a file whose name contains an embedded newline and shell command, or an ANSI sequence that programs a function key to execute commands. The file is delivered to the victim via email attachment, shared folder, web download, or removable media. When the victim drags the file into a Tabby window, the terminal interprets the malicious sequence and runs the attacker's commands with the privileges of the current user. No additional authentication is required beyond the user gesture.

The vulnerability mechanism is described in the Tabby GitHub Security Advisory GHSA-m937-jm93-pfp6. No public proof-of-concept code has been released.

Detection Methods for CVE-2026-45038

Indicators of Compromise

  • Tabby installations reporting a version string below 1.0.233 in application metadata or package manifests
  • Shell history entries containing commands the user did not type, especially immediately following file drag operations
  • Files on disk with names containing embedded newline (\n), carriage return (\r), or ESC (\\x1b) bytes

Detection Strategies

  • Inventory endpoints for Tabby binaries and compare installed versions against the fixed release 1.0.233
  • Monitor process creation events where the parent is tabby.exe or Tabby and the child process is an interpreter such as bash, powershell.exe, cmd.exe, or sh with unusual arguments
  • Hunt filesystem telemetry for filenames containing non-printable control bytes, which are rare in legitimate workflows

Monitoring Recommendations

  • Enable command-line logging on endpoints where Tabby is used and forward events to a centralized analytics platform for review
  • Alert on shell command executions that occur within seconds of a Tabby window receiving focus or a file drop event
  • Track outbound network connections initiated by shells spawned under Tabby for indicators of post-exploitation activity

How to Mitigate CVE-2026-45038

Immediate Actions Required

  • Upgrade all Tabby installations to version 1.0.233 or later across managed endpoints
  • Identify users who handle untrusted files and prioritize their workstations for the update
  • Instruct users to avoid dragging files from untrusted sources into Tabby terminal windows until patching is complete

Patch Information

The Tabby maintainers fixed the issue in release 1.0.233 by escaping control characters in file paths before they reach the terminal input stream. Release notes and the patched source are available in the Tabby GitHub repository and the GHSA-m937-jm93-pfp6 advisory.

Workarounds

  • Disable drag-and-drop file handling in the Tabby configuration where supported by user policy
  • Restrict file transfers from untrusted sources using endpoint controls and email gateway scanning
  • Use an alternative terminal emulator that sanitizes control characters in dropped paths until the Tabby update is deployed
bash
# Verify installed Tabby version on Linux/macOS
tabby --version

# Example upgrade via package manager (Linux)
sudo apt-get update && sudo apt-get install --only-upgrade tabby-terminal

# Windows: upgrade via winget
winget upgrade Eugeny.Tabby

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechTabby

  • SeverityHIGH

  • CVSS Score8.4

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:N/UI:A/VC:H/VI:H/VA:H/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
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-150
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-45036: Tabby Terminal Emulator RCE Vulnerability

  • CVE-2026-45035: Tabby Terminal Emulator RCE Vulnerability

  • CVE-2026-45037: Tabby Terminal Emulator RCE 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