mirror of https://github.com/jtesta/ssh-audit.git
Added new KEX: diffie-hellman-group15-sha256.
This commit is contained in:
parent
f5431559ff
commit
bce9e2b152
|
@ -43,7 +43,7 @@ usage: ssh-audit.py [-1246pbnvlt] <host>
|
||||||
|
|
||||||
## ChangeLog
|
## ChangeLog
|
||||||
### v2.1.0 (???)
|
### v2.1.0 (???)
|
||||||
- ???
|
- Added 1 new key exchange: `diffie-hellman-group15-sha256`.
|
||||||
|
|
||||||
### v2.0.0 (2019-08-29)
|
### v2.0.0 (2019-08-29)
|
||||||
- Forked from https://github.com/arthepsy/ssh-audit (development was stalled, and developer went MIA).
|
- Forked from https://github.com/arthepsy/ssh-audit (development was stalled, and developer went MIA).
|
||||||
|
|
|
@ -320,6 +320,7 @@ class SSH2(object): # pylint: disable=too-few-public-methods
|
||||||
'diffie-hellman-group1-sha1': [['2.3.0,d0.28,l10.2', '6.6', '6.9'], [FAIL_OPENSSH67_UNSAFE, FAIL_OPENSSH70_LOGJAM], [WARN_MODULUS_SIZE, WARN_HASH_WEAK]],
|
'diffie-hellman-group1-sha1': [['2.3.0,d0.28,l10.2', '6.6', '6.9'], [FAIL_OPENSSH67_UNSAFE, FAIL_OPENSSH70_LOGJAM], [WARN_MODULUS_SIZE, WARN_HASH_WEAK]],
|
||||||
'diffie-hellman-group14-sha1': [['3.9,d0.53,l10.6.0'], [], [WARN_HASH_WEAK]],
|
'diffie-hellman-group14-sha1': [['3.9,d0.53,l10.6.0'], [], [WARN_HASH_WEAK]],
|
||||||
'diffie-hellman-group14-sha256': [['7.3,d2016.73']],
|
'diffie-hellman-group14-sha256': [['7.3,d2016.73']],
|
||||||
|
'diffie-hellman-group15-sha256': [[]],
|
||||||
'diffie-hellman-group15-sha512': [[]],
|
'diffie-hellman-group15-sha512': [[]],
|
||||||
'diffie-hellman-group16-sha256': [[]],
|
'diffie-hellman-group16-sha256': [[]],
|
||||||
'diffie-hellman-group16-sha512': [['7.3,d2016.73']],
|
'diffie-hellman-group16-sha512': [['7.3,d2016.73']],
|
||||||
|
|
Loading…
Reference in New Issue