Hi,
One of our business partners recently updated their SFTP server to VShell 4.1. Straight after that we noticed SSH client was unable to connect. After debugging I've noticed the following message sent from the server to client:
No appropriate prime between 1024 and 1024 is available
As it turns out VShell have removed all 1024 bit primes recently: https://www.vandyke.com/products/vshell/history.txt.
I had a quick look at the code and fix seems to be straightforward - all that needs to be done is very small change in Start method of KeyExchangeDiffieHellmanGroupExchangeSha256 and KeyExchangeDiffieHellmanGroupExchangeSha1 classes. However, last thing I want to do is take SSH.NET library and make my own changes to it.
Are there any plans to release new version of SSH.NET at some point? I've noticed last beta release was quite a long time ago (although this key exchange problem seems to be fixed). Does anyone know what's happening with that beta?
Thank you in advance.
One of our business partners recently updated their SFTP server to VShell 4.1. Straight after that we noticed SSH client was unable to connect. After debugging I've noticed the following message sent from the server to client:
No appropriate prime between 1024 and 1024 is available
As it turns out VShell have removed all 1024 bit primes recently: https://www.vandyke.com/products/vshell/history.txt.
I had a quick look at the code and fix seems to be straightforward - all that needs to be done is very small change in Start method of KeyExchangeDiffieHellmanGroupExchangeSha256 and KeyExchangeDiffieHellmanGroupExchangeSha1 classes. However, last thing I want to do is take SSH.NET library and make my own changes to it.
Are there any plans to release new version of SSH.NET at some point? I've noticed last beta release was quite a long time ago (although this key exchange problem seems to be fixed). Does anyone know what's happening with that beta?
Thank you in advance.