swapped -f and -s
-f is now forward secrecy -s is standard cipher lists
This commit is contained in:
parent
55713e4929
commit
0bbbd5217a
|
@ -10590,7 +10590,7 @@ help() {
|
||||||
single check as <options> ("$PROG_NAME URI" does everything except -E):
|
single check as <options> ("$PROG_NAME URI" does everything except -E):
|
||||||
-e, --each-cipher checks each local cipher remotely
|
-e, --each-cipher checks each local cipher remotely
|
||||||
-E, --cipher-per-proto checks those per protocol
|
-E, --cipher-per-proto checks those per protocol
|
||||||
-f, --ciphers checks common cipher suites
|
-s, --std, --standard tests certain lists of cipher suites by strength
|
||||||
-p, --protocols checks TLS/SSL protocols (including SPDY/HTTP2)
|
-p, --protocols checks TLS/SSL protocols (including SPDY/HTTP2)
|
||||||
-y, --spdy, --npn checks for SPDY/NPN
|
-y, --spdy, --npn checks for SPDY/NPN
|
||||||
-Y, --http2, --alpn checks for HTTP2/ALPN
|
-Y, --http2, --alpn checks for HTTP2/ALPN
|
||||||
|
@ -10615,7 +10615,7 @@ single check as <options> ("$PROG_NAME URI" does everything except -E):
|
||||||
-F, --freak tests for FREAK vulnerability
|
-F, --freak tests for FREAK vulnerability
|
||||||
-J, --logjam tests for LOGJAM vulnerability
|
-J, --logjam tests for LOGJAM vulnerability
|
||||||
-D, --drown tests for DROWN vulnerability
|
-D, --drown tests for DROWN vulnerability
|
||||||
-s, --pfs, --fs, --nsa checks (perfect) forward secrecy settings
|
-f, --pfs, --fs, --nsa checks (perfect) forward secrecy settings
|
||||||
-4, --rc4, --appelbaum which RC4 ciphers are being offered?
|
-4, --rc4, --appelbaum which RC4 ciphers are being offered?
|
||||||
|
|
||||||
tuning / connect options (most also can be preset via environment variables):
|
tuning / connect options (most also can be preset via environment variables):
|
||||||
|
@ -12009,7 +12009,7 @@ parse_cmd_line() {
|
||||||
-Y|--http2|--alpn)
|
-Y|--http2|--alpn)
|
||||||
do_http2=true
|
do_http2=true
|
||||||
;;
|
;;
|
||||||
-f|--ciphers)
|
-s|--std|--standard)
|
||||||
do_std_cipherlists=true
|
do_std_cipherlists=true
|
||||||
;;
|
;;
|
||||||
-S|--server[-_]defaults)
|
-S|--server[-_]defaults)
|
||||||
|
@ -12099,7 +12099,7 @@ parse_cmd_line() {
|
||||||
do_rc4=true
|
do_rc4=true
|
||||||
let "VULN_COUNT++"
|
let "VULN_COUNT++"
|
||||||
;;
|
;;
|
||||||
-s|--pfs|--fs|--nsa)
|
-f|--pfs|--fs|--nsa)
|
||||||
do_pfs=true
|
do_pfs=true
|
||||||
;;
|
;;
|
||||||
--devel) ### this development feature will soon disappear
|
--devel) ### this development feature will soon disappear
|
||||||
|
|
Loading…
Reference in New Issue