mirror of https://github.com/jtesta/ssh-audit.git
Gex test usage text (#158)
* Reformatted Usage Text for --gex-test in README.md * Reformatted Usage Text for --gex-test in ssh_audit.py Reformatted to adhere to a max line length of 80 characters.
This commit is contained in:
parent
29496b43d5
commit
e50ac5c84d
|
@ -49,7 +49,9 @@ usage: ssh-audit.py [options] <host>
|
||||||
software config (use -p to change port;
|
software config (use -p to change port;
|
||||||
use -t to change timeout)
|
use -t to change timeout)
|
||||||
-d, --debug Enable debug output.
|
-d, --debug Enable debug output.
|
||||||
-g, --gex-test=<x[,y,...] | min:pref:max[,min:pref:max,...] | x-y[:step]> dh gex modulus size test
|
-g, --gex-test=<x[,y,...]> dh gex modulus size test
|
||||||
|
<min1:pref1:max1[,min2:pref2:max2,...]>
|
||||||
|
<x-y[:step]>
|
||||||
-j, --json JSON output (use -jj to enable indents)
|
-j, --json JSON output (use -jj to enable indents)
|
||||||
-l, --level=<level> minimum output level (info|warn|fail)
|
-l, --level=<level> minimum output level (info|warn|fail)
|
||||||
-L, --list-policies list all the official, built-in policies
|
-L, --list-policies list all the official, built-in policies
|
||||||
|
|
|
@ -87,7 +87,9 @@ def usage(err: Optional[str] = None) -> None:
|
||||||
uout.info(' -b, --batch batch output')
|
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)')
|
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)')
|
||||||
uout.info(' -d, --debug debug output')
|
uout.info(' -d, --debug debug output')
|
||||||
uout.info(' -g, --gex-test=<x[,y,...] | min:pref:max[,min:pref:max,...] | x-y[:step]> dh gex modulus size test')
|
uout.info(' -g, --gex-test=<x[,y,...]> dh gex modulus size test')
|
||||||
|
uout.info(' <min1:pref1:max1[,min2:pref2:max2,...]>')
|
||||||
|
uout.info(' <x-y[:step]>')
|
||||||
uout.info(' -j, --json JSON output (use -jj to enable indents)')
|
uout.info(' -j, --json JSON output (use -jj to enable indents)')
|
||||||
uout.info(' -l, --level=<level> minimum output level (info|warn|fail)')
|
uout.info(' -l, --level=<level> minimum output level (info|warn|fail)')
|
||||||
uout.info(' -L, --list-policies list all the official, built-in policies')
|
uout.info(' -L, --list-policies list all the official, built-in policies')
|
||||||
|
|
Loading…
Reference in New Issue