-
-
Notifications
You must be signed in to change notification settings - Fork 179
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Should ssh-audit Scan for User Key Algorithms? #128
Comments
Let me make sure I'm understanding what you're saying. You're talking
about public key user authentication using weak algorithms even though
the server is properly hardened?
Yes, that would be an issue. And it looks like OpenSSH supports
restricting public key authentication algorithms too
(see PubkeyAcceptedAlgorithms, CASignatureAlgorithms, and
HostbasedAcceptedAlgorithms in: https://man.openbsd.org/sshd_config.5).
I think testing for pubkey auth algorithms can only be done after
performing a handshake with the server. Given that one of ssh-audit's
primary goals is to avoid external dependencies, this would mean doing
more manual work. Although the hostkey tests already do some kex
handshaking (see
https://github.com/jtesta/ssh-audit/blob/5fbcb1b90f28e84c96bef4eb02f5a652604486a4/src/ssh_audit/hostkeytest.py#L138
).
I can add this to my to-do list, though to be honest it may take a
while (6+ months) before I'm able to write the patch. If anyone else
would like to do it in the meantime, though, I'd happily accept the PR!
|
Hi Joe - In a nutshell, I'm proposing that we consider adding functionality to ssh-audit so that it can scan for pubkey auth algorithms. I think it would be fascinating to have visibility of this especially when using client and server products where it's not configurable (or not even documented). |
RFC 8308 defines an extension mechanism for SSH, enabling peers to signal support for and negotiate certain capabilities. One of the extensions to use this mechanism is I'd like to try and make ssh-audit read
# Include 'ext-info-c' in the kex_algorithms field of the SSH_MSG_KEXINIT message that’s sent to a server.
s.send_kexinit(key_exchanges=[kex_str, 'ext-info-c'], hostkeys=[host_key_type], ciphers=server_kex.server.encryption, macs=server_kex.server.mac, compressions=server_kex.server.compression, languages=server_kex.server.languages)
@jtesta : I've dabbled with various things but I really have no idea how to intercept and read the |
I was recently working on a project where GoAnywhere Managed File Transfer was used as an SFTP file transfer client. I noticed a feature that I've never seen in a file transfer client before which is the ability to configure the
RSA Key Signature Algorithm
that's used when authentication is performed with an RSA key pair (instead of a password).This got me thinking about something...
The algorithm that's used in conjunction with a host key is not necessarily the same as the algorithm that's used in conjunction with a user key (for authentication). So for example, on an OpenSSH server instance you may have disabled
ssh-rsa
being used in conjunction with host keys but it can probably still be used in conjunction with user keys.The question I'm uncertain about is from a security perspective is should we care which algorithms can potentially be used by a client or server in conjunction with user keys? If we should care about this then is it possible for
ssh-audit
to scan for this?My understanding is that host key algorithms are easy to identify because they're advertised as part of the Key Exchange Initalization (
SSH_MSG_KEXINIT
). But I'm uncertain whether the algorithms used in conjunction with user keys are so easily identifiable?See examples below demonstrating the effect of changing the
RSA Key Signature Algorithm
value inGoAnywhere Managed File Transfer
:EXAMPLES
Example 1: OpenSSH 8.2p1 on Ubuntu 20.04 LTS using WSL2
To prove that the host key algorithms have no influence on the the algorithms used in conjunction with a user key, the only enabled host key algorithm on both the client and the server was
ecdsa-sha2-nistp256
, seessh-audit
excerpts below:I performed the following tests where you can see the influence that GoAnywhere's 'RSA Key Signature Algorithm' setting has in the logs produced by OpenSSH.
(NB: OpenSSH server's
LogLevel
was set toDEBUG3
in/etc/ssh/sshd_config
)Test 1: 'RSA Key Signature Algorithm' in GoAnywhere set to 'ssh-rsa'
Test 2: 'RSA Key Signature Algorithm' in GoAnywhere set to 'rsa-sha2-256'
Test 3: 'RSA Key Signature Algorithm' in GoAnywhere set to 'rsa-sha2-512'
Example 2: CompleteFTP on Windows 10
To prove that the host key algorithms have no influence on the the algorithms used in conjunction with a user key, the only enabled host key algorithm on both the client and the server was
ecdsa-sha2-nistp256
, seessh-audit
excerpts below:I performed the following tests where you can see the influence that GoAnywhere's 'RSA Key Signature Algorithm' setting has in the
Diagnostics.log
produced by CompleteFTP. It appears as though CompleteFTP only supportsssh-rsa
therefore using 'rsa-sha2-256' and 'rsa-sha2-512' fail.(NB: CompleteFTP's
sever logging level
was set toAll
)Test 1: 'RSA Key Signature Algorithm' in GoAnywhere set to 'ssh-rsa'
Test 2: 'RSA Key Signature Algorithm' in GoAnywhere set to 'rsa-sha2-256'
Test 3: 'RSA Key Signature Algorithm' in GoAnywhere set to 'rsa-sha2-512'
The text was updated successfully, but these errors were encountered: