Encryption Algorithm des-cbc@ssh.com
See original GitHub issueI’m using ssh-audit --lookup=
to look up information on all the supported algorithms (encryption ciphers, key exchange, host key and MAC) in WinSCP 5.17.7.
A list of WinSCP’s supported algorithms can be produced using the command:
"C:\Program Files (x86)\WinSCP\WinSCP.com" /info
.
There is one algorithm supported by WinSCP that’s not present in the ssh-audit database which is the encryption algorithm des-cbc@ssh.com
.
A comment in the WinSCP source code suggests that des-cbc
and des-cbc@ssh.com
are the same thing: /* Same as ssh_des_cbc, but with a different SSH-2 ID */
, see: https://github.com/winscp/winscp/blob/master/source/putty/sshdes.c#L693-L704
The SSH-2 ID
referred to in the comment relates to the ninth property of an ssh_cipheralg
struct:
The ssh-audit database already contains des-cbc
, do you have any objection to adding des-cbc@ssh.com
so it’s possible to run a complete audit of WinSCP?
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (5 by maintainers)
Top GitHub Comments
Done! I wasn’t going to rush in and steal it from you, but since you asked… 😉
OK, that’s fair enough. Do you need a PR for this or will you add
des-cbc@ssh.com
the next time you commit to master?