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

Hi, I try to write program for test to use ssh-j.com in my application bug targetClient.Connect(); go timeout why ? class Program { static void Main() { string path =...

This adds resume capability to `SftpClient.UploadFile()` , `SftpClient.DownloadFile()`, as well as to the `BeginUploadFile()` and `BeginDownloadFile()` variants. The API remains unchanged. Resume is triggered simply by changing the current Position...

Does anyone know why SSH.NET uses copies of third-party libraries: - BouncyCastle: Based on Version 1.8.3 from http://www.bouncycastle.org/csharp/ (currently there is 2.2.1) - Chaos.NaCl: https://github.com/CodesInChaos/Chaos.NaCl/commit/2c861348dc45369508e718aa08611c53b53553db source of information: https://github.com/sshnet/SSH.NET/pull/496#issuecomment-573557849 I...

``` Failed Test_Sftp_Multiple_Async_Upload_And_Download_10Files_5MB_Each [9 s] Error Message: Assert.IsTrue failed. Uploaded and downloaded bytes does not match Stack Trace: at Renci.SshNet.IntegrationTests.OldIntegrationTests.SftpClientTest.Test_Sftp_Multiple_Async_Upload_And_Download_10Files_5MB_Each() in /home/appveyor/projects/ssh-net/test/Renci.SshNet.IntegrationTests/OldIntegrationTests/SftpClientTest.Upload.cs:line 233 at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig,...

How can I modify the cols rows in CreateShellStream according to the size of the front-end terminal?

One test is still unstable. The following test failed on master: ```c# [00:05:13] Passed IsStartedShouldReturnTrue [6 ms] [00:05:13] Failed ForwardedPortShouldAcceptNewConnections [43 ms] [00:05:13] Error Message: [00:05:13] Test method Renci.SshNet.Tests.Classes.ForwardedPortRemoteTest_Start_PortStarted.ForwardedPortShouldAcceptNewConnections threw...

## Problem The implementation was not compliant to the RFC6242. Although the client does NOT support the framing protocol, if the server reported that is did, the client would still...

Since .Net follows Windows' path rules, using `System.IO.Path.Combine` to build up a directory structure creates a path full of backslashes. It would be helpful if either SSH.Net were able to...

When using overload ForwardedPortRemote without boundHost parameter it is still transmitted as empty string and then resolved by DnsAbstraction.GetHostAddresses -> '::1'. This is necessary to simulate ssh command like this...

Originally this was just an exercise to further increase coverage for `AesCipher` when using padding, but it turns out padding is not implemented correctly at all: it is not added...