Skip to content

Commit

Permalink
ssh_version module
Browse files Browse the repository at this point in the history
  • Loading branch information
h00die committed Mar 5, 2024
1 parent c4837d0 commit 8b6f759
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
30 changes: 15 additions & 15 deletions documentation/modules/auxiliary/scanner/ssh/ssh_version.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ msf5 auxiliary(scanner/ssh/ssh_version) > run
encryption.host_key rsa-sha2-512
encryption.host_key rsa-sha2-256
encryption.host_key ssh-rsa
encryption.key_exchange_(kex) curve25519-sha256
encryption.key_exchange_(kex) [email protected]
encryption.key_exchange_(kex) ecdh-sha2-nistp256
encryption.key_exchange_(kex) ecdh-sha2-nistp384
encryption.key_exchange_(kex) ecdh-sha2-nistp521
encryption.key_exchange_(kex) diffie-hellman-group-exchange-sha256
encryption.key_exchange_(kex) [email protected]
encryption.key_exchange curve25519-sha256
encryption.key_exchange [email protected]
encryption.key_exchange ecdh-sha2-nistp256
encryption.key_exchange ecdh-sha2-nistp384
encryption.key_exchange ecdh-sha2-nistp521
encryption.key_exchange diffie-hellman-group-exchange-sha256
encryption.key_exchange [email protected]
[*] Scanned 1 of 1 hosts (100% complete)
[*] Auxiliary module execution completed
Expand Down Expand Up @@ -161,14 +161,14 @@ msf6 auxiliary(scanner/ssh/ssh_version) > run
encryption.host_key ssh-dss
encryption.host_key ecdsa-sha2-nistp256 Weak elliptic curve
encryption.host_key ssh-ed25519
encryption.key_exchange_(kex) [email protected]
encryption.key_exchange_(kex) ecdh-sha2-nistp256
encryption.key_exchange_(kex) ecdh-sha2-nistp384
encryption.key_exchange_(kex) ecdh-sha2-nistp521
encryption.key_exchange_(kex) diffie-hellman-group-exchange-sha256
encryption.key_exchange_(kex) diffie-hellman-group-exchange-sha1 Deprecated
encryption.key_exchange_(kex) diffie-hellman-group14-sha1
encryption.key_exchange_(kex) diffie-hellman-group1-sha1 Deprecated
encryption.key_exchange [email protected]
encryption.key_exchange ecdh-sha2-nistp256
encryption.key_exchange ecdh-sha2-nistp384
encryption.key_exchange ecdh-sha2-nistp521
encryption.key_exchange diffie-hellman-group-exchange-sha256
encryption.key_exchange diffie-hellman-group-exchange-sha1 Deprecated
encryption.key_exchange diffie-hellman-group14-sha1
encryption.key_exchange diffie-hellman-group1-sha1 Deprecated
fingerprint_db ssh.banner
openssh.comment Ubuntu-2ubuntu1
os.cpe23 cpe:/o:canonical:ubuntu_linux:14.04
Expand Down
2 changes: 1 addition & 1 deletion modules/auxiliary/scanner/ssh/ssh_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def check_kex(server_data)
)
note = 'Deprecated'
end
table << ['encryption.key_exchange_(kex)', kex, note]
table << ['encryption.key_exchange', kex, note]
end
table
end
Expand Down

0 comments on commit 8b6f759

Please sign in to comment.