mirror of
https://github.com/mozilla/cipherscan.git
synced 2024-11-04 15:03:41 +01:00
add openssl options to help message
add examples of useful openssl options
This commit is contained in:
parent
99a0b6be07
commit
aa093bc86d
24
cipherscan
24
cipherscan
@ -212,12 +212,15 @@ usage() {
|
|||||||
[-v|--verbose] [-o|--openssl file] [openssl s_client args] <target:port>
|
[-v|--verbose] [-o|--openssl file] [openssl s_client args] <target:port>
|
||||||
usage: $0 -h|--help
|
usage: $0 -h|--help
|
||||||
|
|
||||||
$0 attempts to connect to a target site using all the ciphersuites it knows.
|
$0 attempts to connect to a target site using all the ciphersuites known
|
||||||
Julien Vehent [:ulfr] - https://github.com/jvehent/cipherscan
|
to OpenSSL it is using.
|
||||||
|
|
||||||
|
Julien Vehent [:ulfr] and others (see README.md)
|
||||||
|
https://github.com/jvehent/cipherscan
|
||||||
|
|
||||||
Port defaults to 443
|
Port defaults to 443
|
||||||
|
|
||||||
example: $ $0 www.google.com:443
|
example: $ $0 www.google.com
|
||||||
|
|
||||||
Use one of the options below:
|
Use one of the options below:
|
||||||
|
|
||||||
@ -241,9 +244,20 @@ Use one of the options below:
|
|||||||
-v | --verbose Increase verbosity.
|
-v | --verbose Increase verbosity.
|
||||||
|
|
||||||
The rest of the arguments will be interpreted as openssl s_client argument.
|
The rest of the arguments will be interpreted as openssl s_client argument.
|
||||||
This enables checking smtp/imap/pop3/ftp/xmpp via -starttls
|
|
||||||
|
|
||||||
EXAMPLES: $0 -starttls xmpp jabber.ccc.de:5222
|
Some useful OpenSSL options:
|
||||||
|
-starttls [smtp|imap|pop3|ftp|xmpp] Enable support and testing of the protocols
|
||||||
|
that require turning TLS after initial protocol specific
|
||||||
|
hello
|
||||||
|
-servername name Request SNI support for connections
|
||||||
|
-verify_hostname name Request host name verification in connection
|
||||||
|
(req. OpenSSL 1.0.2)
|
||||||
|
-verify_ip ip Request host name verification for an IP address, usually
|
||||||
|
not specified in certificates (req. OpenSSL 1.0.2)
|
||||||
|
|
||||||
|
EXAMPLES:
|
||||||
|
$0 -starttls xmpp jabber.ccc.de:5222
|
||||||
|
$0 -servername youtube.com youtube.com:443
|
||||||
"
|
"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user