From 64656b5228d581a38b9cd3edbdf854bb09feccc6 Mon Sep 17 00:00:00 2001 From: Joe Testa Date: Sun, 18 Aug 2019 10:03:44 -0400 Subject: [PATCH] Added timeout option to usage message. --- ssh-audit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh-audit.py b/ssh-audit.py index 8d76339..67dff69 100755 --- a/ssh-audit.py +++ b/ssh-audit.py @@ -61,7 +61,7 @@ def usage(err=None): uout.head('# {0} {1}, https://github.com/jtesta/ssh-audit\n'.format(p, VERSION)) if err is not None and len(err) > 0: uout.fail('\n' + err) - uout.info('usage: {0} [-1246pbnvl] \n'.format(p)) + uout.info('usage: {0} [-1246pbnvlt] \n'.format(p)) uout.info(' -h, --help print this help') uout.info(' -1, --ssh1 force ssh version 1 only') uout.info(' -2, --ssh2 force ssh version 2 only')