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
    • 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-2021-43565

CVE-2021-43565: Golang SSH DoS Vulnerability

CVE-2021-43565 is a denial of service vulnerability in the Golang x/crypto/ssh package that allows attackers to panic SSH servers. This article covers the technical details, affected versions, security impact, and mitigation.

Published: February 25, 2026

CVE-2021-43565 Overview

CVE-2021-43565 is a denial of service vulnerability affecting the x/crypto/ssh package in the golang.org/x/crypto module. The vulnerability allows an unauthenticated attacker to trigger a panic condition on SSH servers using the affected library, effectively causing a denial of service. The flaw exists in versions prior to 0.0.0-20211202192323-5770296d904e.

Critical Impact

Remote attackers can crash SSH servers without authentication, causing service disruption and potential cascading failures in dependent systems.

Affected Products

  • Golang SSH (golang.org/x/crypto/ssh) versions before 0.0.0-20211202192323-5770296d904e

Discovery Timeline

  • 2022-09-06 - CVE-2021-43565 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2021-43565

Vulnerability Analysis

This vulnerability enables remote denial of service attacks against applications using the Golang x/crypto/ssh package for SSH server functionality. An attacker can send specially crafted network requests to trigger a panic condition within the SSH server implementation. When the panic occurs, the entire server process terminates unexpectedly, disrupting service availability.

The attack requires no authentication and can be executed remotely over the network. Since SSH servers are typically exposed to network access by design, this significantly increases the attack surface. Applications that rely on continuous SSH connectivity—such as remote administration tools, automated deployment systems, or secure tunneling solutions—are particularly vulnerable to the disruption caused by this flaw.

Root Cause

The root cause lies in improper handling of certain input conditions within the x/crypto/ssh package. The library fails to properly validate or handle specific data that can cause the Go runtime to panic. This represents an input validation error where edge cases or malformed data are not gracefully processed, leading to unrecoverable runtime errors instead of proper error handling.

Attack Vector

The attack is executed over the network targeting SSH servers built with the vulnerable Golang x/crypto/ssh package. The attacker initiates a connection to the SSH server and sends specifically crafted packets designed to trigger the panic condition. Since the attack does not require prior authentication, any network-accessible SSH server using the vulnerable library is at risk.

The exploitation mechanism involves sending malformed or unexpected data during the SSH protocol handshake or session establishment phase, causing the server to enter an unhandled state that triggers a Go panic. This crash terminates the server process, requiring a restart to restore service.

Detection Methods for CVE-2021-43565

Indicators of Compromise

  • Unexpected SSH server process terminations or crashes in application logs
  • Go panic stack traces referencing golang.org/x/crypto/ssh package functions
  • Increased frequency of SSH service restarts without corresponding system events
  • Network traffic anomalies targeting SSH ports with unusual packet structures

Detection Strategies

  • Monitor application logs for Go runtime panic messages related to the SSH package
  • Implement process monitoring to detect unexpected termination of SSH server processes
  • Deploy network intrusion detection rules to identify malformed SSH handshake attempts
  • Use dependency scanning tools to identify applications using vulnerable x/crypto/ssh versions

Monitoring Recommendations

  • Configure alerting for SSH server process crashes and automatic restart events
  • Review Go application logs for panic traces containing crypto/ssh references
  • Implement uptime monitoring for critical SSH-based services with rapid notification
  • Track dependency versions across projects using software composition analysis (SCA) tools

How to Mitigate CVE-2021-43565

Immediate Actions Required

  • Update the golang.org/x/crypto module to version 0.0.0-20211202192323-5770296d904e or later
  • Audit all Go projects for dependencies on the vulnerable x/crypto/ssh package
  • Rebuild and redeploy applications that use the affected library with the patched version
  • Implement network segmentation to limit exposure of SSH servers to trusted networks only

Patch Information

The vulnerability is addressed in golang.org/x/crypto version 0.0.0-20211202192323-5770296d904e and all subsequent releases. Organizations should update their Go module dependencies by running go get -u golang.org/x/crypto@latest or by specifying the minimum safe version in their go.mod file. After updating dependencies, applications must be rebuilt and redeployed to incorporate the fix.

Additional information is available through the GoLang Announcement Discussion and the GoLang Announcements Forum.

Workarounds

  • Restrict network access to SSH servers using firewalls or access control lists
  • Deploy reverse proxies or load balancers with connection rate limiting in front of SSH services
  • Implement process supervision to automatically restart crashed SSH server processes
  • Consider temporarily disabling SSH server functionality until patching is complete for non-critical applications
bash
# Update Go module dependencies to patched version
go get -u golang.org/x/crypto@v0.0.0-20211202192323-5770296d904e
go mod tidy

# Verify the updated dependency version
go list -m golang.org/x/crypto

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechGolang Ssh

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-noinfo
  • Technical References
  • GoLang Announcements Forum

  • GoLang Announcement Discussion
  • Related CVEs
  • CVE-2020-29652: Golang SSH Denial of Service 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