From 1410894f45c07d4995482075dcf0b5353a7dcf3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Gmach?= Date: Tue, 14 Jul 2020 16:35:54 +0200 Subject: [PATCH] Update description for `targets` argument (#48) `targets` takes a file containing a list of target hosts, one on each line. Added required format, ie HOST:PORT. modified: ssh-audit.py --- ssh-audit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh-audit.py b/ssh-audit.py index 7c5db57..cc07bac 100755 --- a/ssh-audit.py +++ b/ssh-audit.py @@ -75,7 +75,7 @@ def usage(err: Optional[str] = None) -> None: uout.info(' -6, --ipv6 enable IPv6 (order of precedence)') uout.info(' -p, --port= port to connect') uout.info(' -t, --timeout= timeout (in seconds) for connection and reading\n (default: 5)') - uout.info(' -T, --targets= a file containing a list of target hosts (one\n per line)') + uout.info(' -T, --targets= a file containing a list of target hosts (one\n per line, format HOST:PORT)') uout.info('') uout.info(' -b, --batch batch output') uout.info(' -c, --client-audit starts a server on port 2222 to audit client\n software config (use -p to change port;\n use -t to change timeout)')