SSH.NET 2024.2.0

dotnet add package SSH.NET --version 2024.2.0                
NuGet\Install-Package SSH.NET -Version 2024.2.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SSH.NET" Version="2024.2.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SSH.NET --version 2024.2.0                
#r "nuget: SSH.NET, 2024.2.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SSH.NET as a Cake Addin
#addin nuget:?package=SSH.NET&version=2024.2.0

// Install SSH.NET as a Cake Tool
#tool nuget:?package=SSH.NET&version=2024.2.0                

Logo SSH.NET

SSH.NET is a Secure Shell (SSH-2) library for .NET, optimized for parallelism.

Version NuGet download count Build status

Key Features

  • Execution of SSH command using both synchronous and asynchronous methods
  • SFTP functionality for both synchronous and asynchronous operations
  • SCP functionality
  • Remote, dynamic and local port forwarding
  • Interactive shell/terminal implementation
  • Authentication via publickey, password and keyboard-interactive methods, including multi-factor
  • Connection via SOCKS4, SOCKS5 or HTTP proxy

How to Use

Run a command

using (var client = new SshClient("sftp.foo.com", "guest", new PrivateKeyFile("path/to/my/key")))
{
    client.Connect();
    using SshCommand cmd = client.RunCommand("echo 'Hello World!'");
    Console.WriteLine(cmd.Result); // "Hello World!\n"
}

Upload and list files using SFTP

using (var client = new SftpClient("sftp.foo.com", "guest", "pwd"))
{
    client.Connect();

    using (FileStream fs = File.OpenRead(@"C:\tmp\test-file.txt"))
    {
        client.UploadFile(fs, "/home/guest/test-file.txt");
    }

    foreach (ISftpFile file in client.ListDirectory("/home/guest/"))
    {
        Console.WriteLine($"{file.FullName} {file.LastWriteTime}");
    }
}

Main Types

The main types provided by this library are:

  • Renci.SshNet.SshClient
  • Renci.SshNet.SftpClient
  • Renci.SshNet.ScpClient
  • Renci.SshNet.PrivateKeyFile
  • Renci.SshNet.SshCommand
  • Renci.SshNet.ShellStream

Additional Documentation

Encryption Methods

SSH.NET supports the following encryption methods:

  • aes128-ctr
  • aes192-ctr
  • aes256-ctr
  • aes128-gcm<span></span>@openssh.com
  • aes256-gcm<span></span>@openssh.com
  • chacha20-poly1305<span></span>@openssh.com
  • aes128-cbc
  • aes192-cbc
  • aes256-cbc
  • 3des-cbc

Key Exchange Methods

SSH.NET supports the following key exchange methods:

  • curve25519-sha256
  • curve25519-sha256<span></span>@libssh.org
  • ecdh-sha2-nistp256
  • ecdh-sha2-nistp384
  • ecdh-sha2-nistp521
  • diffie-hellman-group-exchange-sha256
  • diffie-hellman-group-exchange-sha1
  • diffie-hellman-group16-sha512
  • diffie-hellman-group14-sha256
  • diffie-hellman-group14-sha1
  • diffie-hellman-group1-sha1

Public Key Authentication

SSH.NET supports the following private key formats:

  • RSA in
    • OpenSSL traditional PEM format ("BEGIN RSA PRIVATE KEY")
    • OpenSSL PKCS#8 PEM format ("BEGIN PRIVATE KEY", "BEGIN ENCRYPTED PRIVATE KEY")
    • ssh.com format ("BEGIN SSH2 ENCRYPTED PRIVATE KEY")
    • OpenSSH key format ("BEGIN OPENSSH PRIVATE KEY")
  • DSA in
    • OpenSSL traditional PEM format ("BEGIN DSA PRIVATE KEY")
    • OpenSSL PKCS#8 PEM format ("BEGIN PRIVATE KEY", "BEGIN ENCRYPTED PRIVATE KEY")
    • ssh.com format ("BEGIN SSH2 ENCRYPTED PRIVATE KEY")
  • ECDSA 256/384/521 in
    • OpenSSL traditional PEM format ("BEGIN EC PRIVATE KEY")
    • OpenSSL PKCS#8 PEM format ("BEGIN PRIVATE KEY", "BEGIN ENCRYPTED PRIVATE KEY")
    • OpenSSH key format ("BEGIN OPENSSH PRIVATE KEY")
  • ED25519 in
    • OpenSSL PKCS#8 PEM format ("BEGIN PRIVATE KEY", "BEGIN ENCRYPTED PRIVATE KEY")
    • OpenSSH key format ("BEGIN OPENSSH PRIVATE KEY")

Private keys in OpenSSL traditional PEM format can be encrypted using one of the following cipher methods:

  • DES-EDE3-CBC
  • DES-EDE3-CFB
  • DES-CBC
  • AES-128-CBC
  • AES-192-CBC
  • AES-256-CBC

Private keys in OpenSSL PKCS#8 PEM format can be encrypted using any cipher method BouncyCastle supports.

Private keys in ssh.com format can be encrypted using one of the following cipher methods:

  • 3des-cbc

Private keys in OpenSSH key format can be encrypted using one of the following cipher methods:

  • 3des-cbc
  • aes128-cbc
  • aes192-cbc
  • aes256-cbc
  • aes128-ctr
  • aes192-ctr
  • aes256-ctr
  • aes128-gcm<span></span>@openssh.com
  • aes256-gcm<span></span>@openssh.com
  • chacha20-poly1305<span></span>@openssh.com

Host Key Algorithms

SSH.NET supports the following host key algorithms:

  • ssh-ed25519
  • ecdsa-sha2-nistp256
  • ecdsa-sha2-nistp384
  • ecdsa-sha2-nistp521
  • rsa-sha2-512
  • rsa-sha2-256
  • ssh-rsa
  • ssh-dss

Message Authentication Code

SSH.NET supports the following MAC algorithms:

  • hmac-sha2-256
  • hmac-sha2-512
  • hmac-sha1
  • hmac-sha2-256-etm<span></span>@openssh.com
  • hmac-sha2-512-etm<span></span>@openssh.com
  • hmac-sha1-etm<span></span>@openssh.com

Compression

SSH.NET supports the following compression algorithms:

  • none (default)
  • zlib<span></span>@openssh.com

Framework Support

SSH.NET supports the following target frameworks:

  • .NETFramework 4.6.2 (and higher)
  • .NET Standard 2.0 and 2.1
  • .NET 6 (and higher)

Building the library

The library has no special requirements to build, other than an up-to-date .NET SDK. See also CONTRIBUTING.md.

Supporting SSH.NET

Do you or your company rely on SSH.NET in your projects? If you want to encourage us to keep on going and show us that you appreciate our work, please consider becoming a sponsor through GitHub Sponsors.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (316)

Showing the top 5 NuGet packages that depend on SSH.NET:

Package Downloads
Testcontainers

Testcontainers for .NET is a library to support tests with throwaway instances of Docker containers for all compatible .NET Standard versions.

Renci.SshNet.Async

Extends Renci.SshNet to implement the task-based async pattern

AspNetCore.HealthChecks.Network

HealthChecks.Network is the health check package for network services.

MongoDBMigrations

MongoDbMigrations uses the official MongoDB C# Driver to migrate your documents in your mongo database via useful fluent API. Supports up and down migrations with cancelation and progress handling. Also, this library is able to check a schema of collections in your database during the migration run. This version supports on-premise Mongo database either Azure CosmosDB (with Mongo-like API) or even AWS DocumentDB. In addition you can use TLS and/or SHH tunnels in your migrations. PS1 script for integration with CI/CD pipelines provides inside of the repository

BoldReports.Net.Core

Syncfusion Bold Reports for ASP.NET Core is a server-side helper package used to build ASP.NET Core Web API services. Key features: • Users can interactively provide report parameter inputs at run time to display reports based on the parameter. • SQL Server RDL specification expressions are supported. • Built-in SQL Query designer with a convenient user interface to create and view relationships between tables easily. • A rich selection of built-in report items, including charts, grids, pivot grids, subreports, textboxes, images, lines, and rectangles for better visual representation of data. • Report viewer supports multilevel grouping and sorting in data regions of report items such as tablixes, matrices and lists. • Interactive features in RDL specification like drill through, hyperlink, and interactive sorting to work with report at runtime. • Preview the report in print layout prior to printing. Page settings can be modified using page setup dialog. • All static texts within the report viewer and report designer can be localized to any desired language. • Displayed reports can be exported to popular file formats: PDF, Word, Excel, and HTML. Learn more: https://www.boldreports.com/features?utm_source=nuget&utm_medium=listing Documentation: https://help.boldreports.com/embedded-reporting/aspnet-core-reporting?utm_source=nuget&utm_medium=listing Support Questions: mailto:support@boldreports.com?utm_source=nuget&utm_medium=listing This is a commercial product and requires a paid subscription license for possession or use. Syncfusion’s Bold Reports services, including this component, is subject to the terms and conditions of Syncfusion's Bold Reports Software License Agreement and Terms of Service (https://www.boldreports.com/terms-of-use/?utm_source=nuget&utm_medium=listing). To acquire a license, you can start a subscription or start a free 15-day trial here (https://www.boldreports.com/pricing/?utm_source=nuget&utm_medium=listing). This server-side helper package provides services to the following components and libraries: • ASP.NET Core Report Viewer: https://www.boldreports.com/embedded-reporting/aspnet-core-report-viewer?utm_source=nuget&utm_medium=listing • ASP.NET Core Report Designer: https://www.boldreports.com/embedded-reporting/aspnet-core-report-designer?utm_source=nuget&utm_medium=listing • ASP.NET Core Report Writer: https://www.boldreports.com/embedded-reporting/aspnet-core-report-writer?utm_source=nuget&utm_medium=listing • Blazor Report Viewer: https://www.boldreports.com/embedded-reporting/blazor-report-viewer?utm_source=nuget&utm_medium=listing • Blazor Report Designer: https://www.boldreports.com/embedded-reporting/blazor-report-designer?utm_source=nuget&utm_medium=listing • Angular Report Viewer: https://www.boldreports.com/embedded-reporting/angular-report-viewer?utm_source=nuget&utm_medium=listing • Angular Report Designer: https://www.boldreports.com/embedded-reporting/angular-report-designer?utm_source=nuget&utm_medium=listing • JavaScript Report Viewer: https://www.boldreports.com/embedded-reporting/javascript-report-viewer?utm_source=nuget&utm_medium=listing • JavaScript Report Designer: https://www.boldreports.com/embedded-reporting/javascript-report-designer?utm_source=nuget&utm_medium=listing © Copyright 2024 Syncfusion, Inc. All Rights Reserved. The Syncfusion Bold Reports license and copyright applies to this distribution.

GitHub repositories (70)

Showing the top 5 popular GitHub repositories that depend on SSH.NET:

Repository Stars
ShareX/ShareX
ShareX is a free and open source program that lets you capture or record any area of your screen and share it with a single press of a key. It also allows uploading images, text or other types of files to many supported destinations you can choose from.
duplicati/duplicati
Store securely encrypted backups in the cloud!
mRemoteNG/mRemoteNG
mRemoteNG is the next generation of mRemote, open source, tabbed, multi-protocol, remote connections manager.
stride3d/stride
Stride (formerly Xenko), a free and open-source cross-platform C# game engine.
btcpayserver/btcpayserver
Accept Bitcoin payments. Free, open-source & self-hosted, Bitcoin payment processor.
Version Downloads Last updated
2024.2.0 9,789 11/12/2024
2024.1.0 2,647,555 7/1/2024
2024.0.0 4,815,333 2/21/2024
2023.0.1 1,880,754 12/29/2023
2023.0.0 12,130,215 10/10/2023
2020.0.2 30,911,266 5/29/2022
2020.0.1 21,121,880 1/24/2021 2020.0.1 has at least one vulnerability with moderate severity.
2020.0.0 2,052,714 12/31/2020 2020.0.0 has at least one vulnerability with moderate severity.
2020.0.0-beta1 3,766,355 6/7/2020 2020.0.0-beta1 has at least one vulnerability with moderate severity.
2016.1.0 49,479,513 10/16/2017 2016.1.0 has at least one vulnerability with moderate severity.
2016.1.0-beta4 4,659 10/7/2017 2016.1.0-beta4 has at least one vulnerability with moderate severity.
2016.1.0-beta3 39,551 9/20/2017 2016.1.0-beta3 has at least one vulnerability with moderate severity.
2016.1.0-beta2 65,791 8/16/2017 2016.1.0-beta2 has at least one vulnerability with moderate severity.
2016.1.0-beta1 144,918 12/14/2016 2016.1.0-beta1 has at least one vulnerability with moderate severity.
2016.0.0 6,101,567 8/2/2016 2016.0.0 has at least one vulnerability with moderate severity.
2016.0.0-beta3 4,851 7/27/2016 2016.0.0-beta3 has at least one vulnerability with moderate severity.
2016.0.0-beta2 19,171 6/25/2016 2016.0.0-beta2 has at least one vulnerability with moderate severity.
2016.0.0-beta1 4,292 6/19/2016 2016.0.0-beta1 has at least one vulnerability with moderate severity.
2014.4.6-beta2 449,191 11/22/2014 2014.4.6-beta2 has at least one vulnerability with moderate severity.
2014.4.6-beta1 14,908 4/6/2014 2014.4.6-beta1 has at least one vulnerability with moderate severity.
2013.4.7 2,052,685 4/6/2013 2013.4.7 has at least one vulnerability with moderate severity.
2013.1.27 117,728 1/27/2013 2013.1.27 has at least one vulnerability with moderate severity.
2013.1.8 7,655 1/8/2013 2013.1.8 has at least one vulnerability with moderate severity.
2012.21.12 4,393 12/21/2012 2012.21.12 has at least one vulnerability with moderate severity.
2012.20.12 3,191 12/20/2012 2012.20.12 has at least one vulnerability with moderate severity.
2012.12.3 4,960 12/4/2012 2012.12.3 has at least one vulnerability with moderate severity.
2012.3.9 13,753 3/9/2012 2012.3.9 has at least one vulnerability with moderate severity.
2011.12.7 3,824 3/3/2012 2011.12.7 has at least one vulnerability with moderate severity.
2011.9.28 4,295 10/13/2011 2011.9.28 has at least one vulnerability with moderate severity.
2011.7.29 22,629 9/16/2011 2011.7.29 has at least one vulnerability with moderate severity.