forked from jtesta/ssh-audit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Recognize LANcom LCOS software and support extraction of ssh-ed448 ke…
…y type LANcom router devices appear to be primarily used in Germany (see [1] for examples on the public Internet), and they appear to support the `ssh-ed448` key type which is documented in [2], but which has never been supported by any as-yet-released version of OpenSSH. [1] https://www.shodan.io/search?query=ssh+%22ed448%22 [2] https://datatracker.ietf.org/doc/html/rfc8709#name-public-key-format
- Loading branch information
Showing
3 changed files
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,9 @@ class HostKeyTest: | |
|
||
'ssh-ed25519': {'cert': False, 'variable_key_len': False}, | ||
'[email protected]': {'cert': True, 'variable_key_len': False}, | ||
|
||
'ssh-ed448': {'cert': False, 'variable_key_len': False}, | ||
# '[email protected]': {'cert': True, 'variable_key_len': False}, | ||
} | ||
|
||
TWO2K_MODULUS_WARNING = '2048-bit modulus only provides 112-bits of symmetric strength' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters