SSH.NET 2013.1.8

Details
Advisory: https://github.com/advisories/GHSA-72p8-v4hg-v45p Severity: moderate
There is a newer version of this package available.
See the version list below for details.
dotnet add package SSH.NET --version 2013.1.8
NuGet\Install-Package SSH.NET -Version 2013.1.8
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="2013.1.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SSH.NET --version 2013.1.8
#r "nuget: SSH.NET, 2013.1.8"
#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=2013.1.8

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

This project was inspired by Sharp.SSH library which was ported from Java.  This library is a complete rewrite using .NET, without any third party dependencies and to utilize the parallelism as much as possible to allow best performance you can get.  SSH.NET supports .NET 3.5, 4.0, Silverlight 4.0, Silverlight 5.0, Windows Phone 7 and Windows Phone 8.

Product Compatible and additional computed target framework versions.
.NET Framework net35 is compatible.  net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Silverlight sl4 is compatible.  sl4-wp71 is compatible.  sl5 is compatible. 
Windows Phone wp8 is compatible.  wp81 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories (67)

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 Game Engine (formerly Xenko)
btcpayserver/btcpayserver
Accept Bitcoin payments. Free, open-source & self-hosted, Bitcoin payment processor.
Version Downloads Last updated
2014.4.6-beta2 5,814 11/22/2014
2014.4.6-beta1 2,607 4/6/2014
2013.4.7 62,691 4/6/2013
2013.1.27 753 1/27/2013
2013.1.8 186 1/8/2013
2012.21.12 170 12/21/2012
2012.20.12 53 12/20/2012
2012.12.3 99 12/4/2012
2012.3.9 294 3/9/2012
2011.12.7 60 3/3/2012
2011.9.28 65 10/13/2011
2011.7.29 55 9/16/2011

New Features

   Add ability to specify terminal modes for Shell terminal
   Add BeginExpect methods to ShellStream


Fixes

   Add locking in ShellStream Read function
   Add HostKeyName property to HostKeyEventArgs
   Refactor RequestWrite method to write one block at a time
   Add request synchronization for SftpWrite operation which should resolve issue of wrong or incomplete data to be written
   Restrict SftpFileStream buffer size to maximum of 16KB.
   Add ability to specify password as byte array which can be cleaned up later for security reasons
   Fix to update SftpUploadAsyncResult with actual number of bytes that was already written to the server
   Add callback parameters to UploadFile, DownloadFile and ListDirectory methods to allow easy way to report progress
   Fix handling of SftpFileAttributes so only attributes that changed will be updated
   Fix SocketReadLine for Silverlight version to support multiple lines
   Improve IsSocketConnected to determine wheither client is connected or not
   Fix Shell support in Silverlight and WindowsPhone applications
   Fix synchronization issue in ShellStream reading
   Handle channel closed message by SubsystemSession class to prevent hanging situation when channel cannot be open
   Ensure Queue.Dequeue operation is called only when data still availalbe in queue