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-2021-47759

CVE-2021-47759: MTPutty Information Disclosure Flaw

CVE-2021-47759 is an information disclosure vulnerability in MTPutty 1.0.1.21 that exposes SSH passwords via PowerShell process listings. This article covers technical details, affected versions, impact, and mitigation.

Published: January 23, 2026

CVE-2021-47759 Overview

CVE-2021-47759 is a sensitive information disclosure vulnerability affecting MTPutty version 1.0.1.21. This vulnerability allows local attackers to view SSH connection passwords through Windows PowerShell process listing. By executing a PowerShell command to retrieve the full command line of MTPutty processes, attackers can expose plaintext SSH credentials, potentially compromising remote systems and network infrastructure.

Critical Impact

Local attackers can harvest SSH credentials in plaintext by simply querying Windows process information, enabling unauthorized access to remote systems managed through MTPutty.

Affected Products

  • MTPutty 1.0.1.21
  • TTYPlus Multi-Tabbed PuTTY Tool

Discovery Timeline

  • 2026-01-15 - CVE CVE-2021-47759 published to NVD
  • 2026-01-16 - Last updated in NVD database

Technical Details for CVE-2021-47759

Vulnerability Analysis

This vulnerability falls under CWE-522 (Insufficiently Protected Credentials), where MTPutty fails to adequately protect sensitive authentication information during SSH session initialization. When MTPutty establishes an SSH connection, it passes credentials including passwords as command-line arguments to the underlying PuTTY process. These command-line arguments are visible to any local user with sufficient privileges to query process information on the Windows system.

The fundamental issue is the insecure handling of sensitive credentials in process memory and command-line parameters. Windows maintains process command-line information in a manner accessible through standard system APIs and utilities, meaning any user with local access can potentially enumerate running processes and their associated command lines.

Root Cause

The root cause of this vulnerability is MTPutty's design decision to pass SSH credentials, including passwords, as plaintext command-line arguments when spawning SSH connection processes. This architectural flaw violates secure credential handling principles, as command-line arguments in Windows are stored in process memory regions that can be accessed by other processes and users on the system.

Rather than using secure credential storage mechanisms, environment variables with restricted permissions, or inter-process communication channels, MTPutty directly exposes passwords in the process command line where they can be harvested by any local attacker.

Attack Vector

The attack is performed locally and requires the attacker to have low-privilege access to the same Windows system where MTPutty is running. The attacker can leverage native Windows PowerShell commands or WMI queries to enumerate process command lines and extract plaintext SSH credentials.

The exploitation technique involves querying the Windows Management Instrumentation (WMI) Win32_Process class to retrieve the CommandLine property of running MTPutty processes. This technique requires no special tools or elevated privileges beyond basic local user access, making it trivially exploitable in shared computing environments or systems compromised through other means.

Technical details and proof-of-concept information can be found in the Exploit-DB #50574 advisory.

Detection Methods for CVE-2021-47759

Indicators of Compromise

  • Unusual PowerShell or WMI queries targeting process command-line enumeration
  • Evidence of credential harvesting scripts or tools in user directories
  • Unexpected access to systems that were previously accessed only via MTPutty SSH connections
  • Process monitoring alerts for Get-WmiObject or Get-CimInstance calls targeting Win32_Process

Detection Strategies

  • Monitor for PowerShell commands that query Win32_Process CommandLine properties
  • Implement endpoint detection rules for process enumeration techniques commonly used in credential harvesting
  • Deploy security controls that alert on bulk process information queries
  • Review authentication logs for unauthorized SSH connections using harvested credentials

Monitoring Recommendations

  • Enable PowerShell script block logging and module logging to capture credential harvesting attempts
  • Configure Windows Security Event logging for process creation events (Event ID 4688) with command-line auditing
  • Implement user behavior analytics to detect unusual process enumeration activity
  • Monitor for suspicious lateral movement following potential credential exposure

How to Mitigate CVE-2021-47759

Immediate Actions Required

  • Replace MTPutty with an alternative SSH client that does not expose credentials in command-line arguments
  • Review and rotate any SSH credentials that may have been used with MTPutty 1.0.1.21
  • Implement SSH key-based authentication instead of password-based authentication where possible
  • Restrict local access to systems running MTPutty to minimize exposure

Patch Information

No vendor patch information is currently available for this vulnerability. Users are advised to monitor the TTYPlus Multi-Tabbed PuTTY Tool website for security updates. Given the architectural nature of this vulnerability, users should consider migrating to alternative SSH management tools that implement secure credential handling.

Workarounds

  • Transition to SSH key-based authentication to eliminate password exposure in command lines
  • Use alternative SSH clients that do not expose credentials in process arguments
  • Implement strict access controls to limit local user access on systems running MTPutty
  • Consider using Windows Credential Guard or similar credential protection mechanisms where available
  • Segment networks to limit the impact of potential credential compromise
bash
# Generate SSH key pair as password-free alternative
ssh-keygen -t ed25519 -f ~/.ssh/mtputty_replacement_key -N ""

# Copy public key to remote servers
ssh-copy-id -i ~/.ssh/mtputty_replacement_key.pub user@remote-host

# Use key-based authentication instead of passwords
ssh -i ~/.ssh/mtputty_replacement_key user@remote-host

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechMtputty

  • SeverityMEDIUM

  • CVSS Score6.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:N/VC:H/VI:N/VA:N/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
  • AvailabilityNone
  • CWE References
  • CWE-522
  • Technical References
  • TTYPlus Multi-Tabbed PuTTY Tool

  • Exploit-DB #50574
  • Latest CVEs
  • CVE-2025-52479: HTTP.jl & URIs.jl CRLF Injection Flaw

  • CVE-2026-31740: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31743: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31744: Linux Kernel NULL Pointer 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