mirror of
https://github.com/jtesta/ssh-audit.git
synced 2024-11-16 21:45:39 +01:00
Added grasshopper-ctr128 cipher.
This commit is contained in:
parent
06ebdbd0fe
commit
2a7cb13895
@ -221,6 +221,7 @@ For convenience, a web front-end on top of the command-line tool is available at
|
|||||||
- Fixed crash when running with `-P` and `-T` options simultaneously.
|
- Fixed crash when running with `-P` and `-T` options simultaneously.
|
||||||
- Fixed host key tests from only reporting a key type at most once despite multiple hosts supporting it; credit [Daniel Lenski](https://github.com/dlenskiSB).
|
- Fixed host key tests from only reporting a key type at most once despite multiple hosts supporting it; credit [Daniel Lenski](https://github.com/dlenskiSB).
|
||||||
- Fixed DHEat connection rate testing on MacOS X and BSD platforms; credit [Drew Noel](https://github.com/drewmnoel) and [Michael Osipov](https://github.com/michael-o).
|
- Fixed DHEat connection rate testing on MacOS X and BSD platforms; credit [Drew Noel](https://github.com/drewmnoel) and [Michael Osipov](https://github.com/michael-o).
|
||||||
|
- Added 1 new cipher: `grasshopper-ctr128`.
|
||||||
|
|
||||||
### v3.2.0 (2024-04-22)
|
### v3.2.0 (2024-04-22)
|
||||||
- Added implementation of the DHEat denial-of-service attack (see `--dheat` option; [CVE-2002-20001](https://nvd.nist.gov/vuln/detail/CVE-2002-20001)).
|
- Added implementation of the DHEat denial-of-service attack (see `--dheat` option; [CVE-2002-20001](https://nvd.nist.gov/vuln/detail/CVE-2002-20001)).
|
||||||
|
@ -346,6 +346,7 @@ class SSH2_KexDB: # pylint: disable=too-few-public-methods
|
|||||||
'des-cbc-ssh1': [[], [FAIL_DES], [WARN_CIPHER_MODE, WARN_BLOCK_SIZE]],
|
'des-cbc-ssh1': [[], [FAIL_DES], [WARN_CIPHER_MODE, WARN_BLOCK_SIZE]],
|
||||||
'des-cbc@ssh.com': [[], [FAIL_DES], [WARN_CIPHER_MODE, WARN_BLOCK_SIZE]],
|
'des-cbc@ssh.com': [[], [FAIL_DES], [WARN_CIPHER_MODE, WARN_BLOCK_SIZE]],
|
||||||
'des': [[], [FAIL_DES], [WARN_CIPHER_MODE, WARN_BLOCK_SIZE]],
|
'des': [[], [FAIL_DES], [WARN_CIPHER_MODE, WARN_BLOCK_SIZE]],
|
||||||
|
'grasshopper-ctr128': [[], [FAIL_UNTRUSTED]],
|
||||||
'idea-cbc': [[], [FAIL_IDEA], [WARN_CIPHER_MODE]],
|
'idea-cbc': [[], [FAIL_IDEA], [WARN_CIPHER_MODE]],
|
||||||
'idea-cfb': [[], [FAIL_IDEA], [WARN_CIPHER_MODE]],
|
'idea-cfb': [[], [FAIL_IDEA], [WARN_CIPHER_MODE]],
|
||||||
'idea-ctr': [[], [FAIL_IDEA]],
|
'idea-ctr': [[], [FAIL_IDEA]],
|
||||||
|
Loading…
Reference in New Issue
Block a user