From 4b314a55ef8c5607702608d978378081456fff21 Mon Sep 17 00:00:00 2001 From: Joe Testa Date: Tue, 24 Mar 2020 14:12:15 -0400 Subject: [PATCH] Added 2 new ciphers: AEAD_AES_128_GCM and AEAD_AES_256_GCM. --- README.md | 4 ++-- ssh-audit.py | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index af0e10e..fd269ef 100644 --- a/README.md +++ b/README.md @@ -71,9 +71,9 @@ $ snap install ssh-audit ## ChangeLog ### v2.2.1-dev (???) - Added 1 new host key types: `ssh-rsa1`. - - Added 1 new ciphers: `blowfish`. + - Added 1 new ciphers: `blowfish`, `AEAD_AES_128_GCM`, `AEAD_AES_256_GCM`. - Added 2 new MACs: `chacha20-poly1305@openssh.com`, `hmac-sha3-224`. - + ### v2.2.0 (2020-03-11) - Marked host key type `ssh-rsa` as weak due to [practical SHA-1 collisions](https://eprint.iacr.org/2020/014.pdf). - Added Windows builds. diff --git a/ssh-audit.py b/ssh-audit.py index 9ae6b2a..7aef36b 100755 --- a/ssh-audit.py +++ b/ssh-audit.py @@ -466,6 +466,8 @@ class SSH2(object): # pylint: disable=too-few-public-methods 'aes256-ctr': [['3.7,d0.52,l10.4.1']], 'aes128-gcm': [[]], 'aes256-gcm': [[]], + 'AEAD_AES_128_GCM': [[]], + 'AEAD_AES_256_GCM': [[]], 'aes128-gcm@openssh.com': [['6.2']], 'aes256-gcm@openssh.com': [['6.2']], 'chacha20-poly1305': [[], [], [], [INFO_OPENSSH69_CHACHA]],