The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-3497

CVE-2026-3497: OpenSSH GSSAPI Use-After-Free Vulnerability

CVE-2026-3497 is a use-after-free vulnerability in OpenSSH GSSAPI patches for Linux distributions that allows attackers to trigger undefined behavior. This article covers technical details, affected systems, and mitigation.

Published: March 13, 2026

CVE-2026-3497 Overview

CVE-2026-3497 is an Uninitialized Memory Use vulnerability affecting the OpenSSH GSSAPI patches included in various Linux distributions. This vulnerability specifically impacts the GSSAPI delta modifications added by Linux distribution maintainers and does not affect the upstream OpenSSH project itself. The flaw allows attackers to trigger undefined behavior by exploiting improper error handling during GSSAPI key exchange, potentially leading to memory corruption or denial of service conditions.

Critical Impact

Network-accessible attackers can exploit improper error handling in GSSAPI key exchange to access uninitialized memory, causing undefined behavior that may result in information disclosure or service disruption depending on compiler hardening configurations.

Affected Products

  • Linux distributions with custom OpenSSH GSSAPI patches
  • Ubuntu with GSSAPI-enabled OpenSSH packages
  • Other Linux distributions shipping modified OpenSSH with GSSAPI support

Discovery Timeline

  • 2026-03-12 - CVE-2026-3497 published to NVD
  • 2026-03-12 - Last updated in NVD database

Technical Details for CVE-2026-3497

Vulnerability Analysis

The vulnerability stems from the improper use of sshpkt_disconnect() for error handling during GSSAPI key exchange operations. When an unexpected GSSAPI message type is received during the key exchange process, the server calls sshpkt_disconnect() to signal an error condition. However, unlike ssh_packet_disconnect(), this function does not terminate the process—it merely disconnects the packet handling while allowing execution to continue.

This creates a dangerous state where the program flow proceeds without properly initializing the connection variables that would normally be set during a successful GSSAPI exchange. Since these variables are not initialized to NULL, subsequent code accesses memory at arbitrary locations based on whatever values happened to be on the stack or in registers at that point.

The actual exploitability and impact of this vulnerability heavily depends on the compiler flags and security hardening measures employed during the build process. Systems built with stack protection, address space layout randomization (ASLR), and other memory safety mitigations may be more resilient to exploitation attempts.

Root Cause

The root cause is the use of sshpkt_disconnect() instead of ssh_packet_disconnect() in the error handling path for unexpected GSSAPI message types. The sshpkt_disconnect() function does not terminate the process, allowing continued execution with uninitialized connection state variables. This leads to CWE-908 (Use of Uninitialized Resource) when the code subsequently accesses these variables expecting them to contain valid data.

Attack Vector

An attacker can exploit this vulnerability by sending a specially crafted GSSAPI message with an unexpected type during the GSSAPI key exchange phase. The attack is network-accessible and requires no authentication or user interaction, as it occurs during the initial key exchange process. The attacker must be able to establish a connection to the SSH server and initiate a GSSAPI-based key exchange to trigger the vulnerable code path.

The attack flow involves:

  1. Initiating a connection to a vulnerable SSH server
  2. Beginning GSSAPI key exchange negotiation
  3. Sending a GSSAPI message with an unexpected or invalid message type
  4. Triggering the error path that uses sshpkt_disconnect() instead of ssh_packet_disconnect()
  5. Exploiting the continued execution with uninitialized memory state

Detection Methods for CVE-2026-3497

Indicators of Compromise

  • Unexpected SSH service crashes or restarts potentially linked to GSSAPI authentication attempts
  • Anomalous SSH connection attempts with unusual GSSAPI negotiation patterns
  • Log entries showing GSSAPI key exchange failures followed by undefined behavior symptoms
  • Memory corruption indicators in SSH daemon processes after GSSAPI-related events

Detection Strategies

  • Monitor SSH logs for GSSAPI key exchange failures and correlate with service anomalies
  • Implement network-level monitoring for malformed GSSAPI message patterns in SSH traffic
  • Deploy endpoint detection to identify abnormal memory access patterns in sshd processes
  • Use SentinelOne Singularity Platform to detect exploitation attempts targeting SSH services

Monitoring Recommendations

  • Enable verbose logging for SSH GSSAPI authentication events
  • Configure alerting for SSH daemon crashes or unexpected restarts
  • Monitor for connection patterns consistent with exploitation attempts (repeated GSSAPI exchange initiations)
  • Review system logs for memory-related errors associated with sshd processes

How to Mitigate CVE-2026-3497

Immediate Actions Required

  • Apply vendor-specific patches from your Linux distribution as they become available
  • If GSSAPI authentication is not required, disable it in the SSH server configuration
  • Review SSH server logs for potential exploitation attempts
  • Consider restricting SSH access to trusted networks until patches are applied

Patch Information

The recommended fix involves replacing sshpkt_disconnect() with ssh_packet_disconnect() in the GSSAPI error handling code. This ensures the process properly terminates when an unexpected GSSAPI message type is received, preventing access to uninitialized memory. Consult your Linux distribution's security advisories for specific patch availability:

  • Ubuntu CVE-2026-3497 Advisory
  • Openwall OSS Security Post

Workarounds

  • Disable GSSAPI authentication if not required by setting GSSAPIAuthentication no in sshd_config
  • Implement network-level access controls to limit SSH exposure to trusted sources
  • Enable compiler hardening flags (ASLR, stack canaries) for any custom OpenSSH builds
  • Consider using the upstream OpenSSH without distribution-specific GSSAPI patches if feasible
bash
# Disable GSSAPI authentication in SSH server configuration
# Edit /etc/ssh/sshd_config and add/modify:
GSSAPIAuthentication no
GSSAPICleanupCredentials yes

# Restart SSH service to apply changes
sudo systemctl restart sshd

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechOpenssh

  • SeverityMEDIUM

  • CVSS Score6.9

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:L/VA:L/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
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-908
  • Technical References
  • Ubuntu CVE-2026-3497 Advisory

  • Openwall OSS Security Post

  • Openwall OSS Security Post
  • Related CVEs
  • CVE-2021-28041: OpenSSH Double Free Vulnerability

  • CVE-2026-35414: OpenSSH Information Disclosure Vulnerability

  • CVE-2026-35388: OpenSSH Privilege Escalation Vulnerability

  • CVE-2026-35387: OpenSSH ECDSA Algorithm 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