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

CVE-2026-44603: Tor Buffer Overflow Vulnerability

CVE-2026-44603 is a buffer overflow flaw in Tor that allows an out-of-bounds read via malformed BEGIN cells. This article covers the technical details, affected versions before 0.4.9.7, impact, and mitigation.

Published: May 7, 2026

CVE-2026-44603 Overview

CVE-2026-44603 is an out-of-bounds read vulnerability in the Tor daemon affecting versions before 0.4.9.7. The flaw, tracked internally by the Tor Project as TROVE-2026-007, occurs when Tor processes a malformed BEGIN cell, causing the implementation to read one byte beyond an allocated buffer. The issue is classified under CWE-193: Off-by-one Error. Successful triggering requires a network-reachable adversary to send a crafted relay cell, but the resulting impact is limited to availability. No code execution or information disclosure has been demonstrated.

Critical Impact

A remote attacker can send a malformed BEGIN cell to a vulnerable Tor instance to trigger an out-of-bounds read by one byte, potentially causing process instability or crash.

Affected Products

  • Tor daemon versions prior to 0.4.9.7
  • Tor relay deployments running affected releases
  • Downstream packages bundling vulnerable Tor builds

Discovery Timeline

  • 2026-05-07 - CVE-2026-44603 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-44603

Vulnerability Analysis

The vulnerability is an off-by-one out-of-bounds read in Tor's handling of BEGIN cells. BEGIN cells are relay-layer messages used to request that an exit relay open a TCP connection to a specified host and port on behalf of a client. When parsing a malformed BEGIN cell, Tor reads one byte past the end of the cell's payload buffer. The read is bounded to a single byte adjacent to the allocation, which constrains the practical impact to availability rather than confidentiality or integrity. The Tor Project has documented the fix in commit 1703df3d439c83c2184e259fad1cfa19240f9c89 and tracked remediation work under Tor Project work item #41245.

Root Cause

The root cause is improper boundary validation when parsing the address and port fields of a BEGIN cell payload. The parser advances one byte beyond the validated region while scanning for terminators or delimiters in attacker-controlled input. This category of defect is captured by CWE-193, which describes off-by-one errors in loop or buffer boundary calculations.

Attack Vector

The attack vector is network-based. An adversary capable of sending relay cells to a vulnerable Tor process, such as a malicious client or an upstream relay in a circuit, can deliver a crafted BEGIN cell. The high attack complexity reflects the conditions required to reliably reach the parsing path with attacker-controlled bytes adjacent to the buffer boundary. No authentication or user interaction is required.

No verified public proof-of-concept code is available. See the Tor Project commit details and the Openwall OSS Security discussion for technical specifics on the parser change.

Detection Methods for CVE-2026-44603

Indicators of Compromise

  • Unexpected restarts or abnormal termination of the tor daemon process without operator action.
  • Crash artifacts such as core dumps referencing BEGIN cell processing functions in Tor's relay code.
  • Repeated short-lived circuit failures originating from the same upstream peer.

Detection Strategies

  • Monitor Tor notice and warn log entries for parser errors, protocol violations, or assertions emitted while handling relay cells.
  • Compare deployed Tor versions across hosts against the fixed version 0.4.9.7 using package inventory or configuration management tooling.
  • Correlate process exit codes for tor with network telemetry to identify crashes that follow inbound relay traffic from specific peers.

Monitoring Recommendations

  • Enable verbose protocol logging on Tor relays during the patch rollout window to surface malformed cell events.
  • Track service uptime and restart counts for tor units under systemd or equivalent supervisors.
  • Forward Tor logs and host process events to a centralized logging or SIEM platform for cross-host correlation.

How to Mitigate CVE-2026-44603

Immediate Actions Required

  • Upgrade all Tor installations to version 0.4.9.7 or later as published in the Tor Project release announcement.
  • Inventory all systems running the tor daemon, including bundled distributions, relays, bridges, and onion service hosts.
  • Validate the upgrade by confirming the running version with tor --version after restart.

Patch Information

The Tor Project addressed CVE-2026-44603 in version 0.4.9.7. The corrective change is recorded in commit 1703df3d439c83c2184e259fad1cfa19240f9c89. Operators should obtain updated builds from the official Tor Project distribution channels or their operating system vendor's package repositories. Downstream maintainers should rebuild any packaged products that statically link or vendor the Tor source tree.

Workarounds

  • No vendor-supplied workaround replaces the upgrade; apply version 0.4.9.7 as the primary remediation.
  • Restrict inbound connectivity on non-relay deployments to trusted peers where operationally feasible until patching completes.
  • Configure process supervision to automatically restart the tor daemon to limit availability impact during the exposure window.
bash
# Configuration example
# Verify installed Tor version after upgrade
tor --version

# Example systemd restart policy for the tor service
# /etc/systemd/system/tor.service.d/override.conf
[Service]
Restart=on-failure
RestartSec=5s

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechTor

  • SeverityLOW

  • CVSS Score3.7

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-193
  • Technical References
  • Tor Project Release Announcement

  • Tor Project Commit Details

  • Tor Project Work Item #41245

  • Openwall OSS Security Discussion
  • Related CVEs
  • CVE-2026-44597: Tor Browser Buffer Overflow Vulnerability

  • CVE-2026-44602: Tor NULL Pointer Dereference Vulnerability

  • CVE-2026-44601: Tor Browser DoS Vulnerability (TROVE-009)

  • CVE-2026-44600: Tor DoS Vulnerability in Conflux Queue
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