SSH.NET icon indicating copy to clipboard operation
SSH.NET copied to clipboard

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

Results 188 SSH.NET issues
Sort by recently updated
recently updated
newest added

Contributes to #1271 . This was as simple as adding the NuGet package, deleting the old code and replacing the namespaces. It's just a matter of whether the tests pass...

Hello! I am able to connect using SshClient, but I am unable to execute commands. Does anyone know why this might be? The target framework I am using is net6.0....

Hi! Thank you for this project, I appreciate your work. I have a job in js that downloads some files over sftp every night using [ssh2-sftp-client](https://www.npmjs.com/package/ssh2-sftp-client). I decided to rewrite...

I have "format on save" enabled in VS Code and have been frequently annoyed that this often causes changes in code that I didn't actually touch. This is due to...

The branch is based on the "agent_auth" branch, so ignore the first six commits. This adds Unix-Socket-Forwarding to SSH.NET. [UnixDomainSocketEndPoint](https://docs.microsoft.com/de-de/dotnet/api/system.net.sockets.unixdomainsocketendpoint?view=net-5.0) is available in .NET since netstandard2.1 and on Windows 10...

Does SftpClient supports upload/download resume options, i.e. defined by SFTP protocol specifications commands **reput** & **reget**? I need to upload really huge files (from 2GB to 20GB) and these features...

Version: 2016.1.0.0 Issue: We have a scenario where we download the file from clients SFTP server and put it in s3 and append something to that and overwrite the existing...

I'm new to web-assembly, but I think I know what the answer might be. My understanding is that only HTTPS and WebSockets are permissible from a wasm app. So SSH.NET...

This PR leverages BCL's [ECDiffieHellman](https://learn.microsoft.com/en-us/dotnet/api/system.security.cryptography.ecdiffiehellman) for key exchange instead of using BouncyCastle. Cryptographic operations in BCL are done by operating system (OS) libraries. ### Advantages: It inherits the advantages described...