Confirmed users
529
edits
No edit summary |
|||
Line 394: | Line 394: | ||
See https://github.com/jvehent/cipherscan | See https://github.com/jvehent/cipherscan | ||
Cipherscan is a small Bash script that connects to a target and list the preferred Ciphers. It's an easy way to test a web server for available ciphers. | Cipherscan is a small Bash script that connects to a target and list the preferred Ciphers. It's an easy way to test a web server for available ciphers, but not as comprehensive as SSLLabs. | ||
The | The example below shows the expected output of CipherScan with the recommended ciphersuite, on a properly configured Nginx. | ||
<source lang="bash"> | |||
< | $ ./CiphersScan.sh jve.linuxwall.info:443 | ||
$ ./CiphersScan.sh | prio ciphersuite protocol pfs_keysize | ||
1 ECDHE-RSA-AES128-GCM-SHA256 TLSv1.2 ECDH,P-256,256bits | |||
prio ciphersuite | 2 ECDHE-RSA-AES256-GCM-SHA384 TLSv1.2 ECDH,P-256,256bits | ||
1 ECDHE-RSA- | 3 DHE-RSA-AES256-GCM-SHA384 TLSv1.2 DH,4096bits | ||
2 ECDHE-RSA- | 4 DHE-RSA-AES128-GCM-SHA256 TLSv1.2 DH,4096bits | ||
3 | 5 ECDHE-RSA-AES128-SHA256 TLSv1.2 ECDH,P-256,256bits | ||
4 DHE-RSA- | 6 ECDHE-RSA-AES128-SHA TLSv1.2 ECDH,P-256,256bits | ||
5 | 7 ECDHE-RSA-AES256-SHA384 TLSv1.2 ECDH,P-256,256bits | ||
6 ECDHE-RSA- | 8 ECDHE-RSA-AES256-SHA TLSv1.2 ECDH,P-256,256bits | ||
7 ECDHE-RSA-AES256- | 9 DHE-RSA-AES128-SHA256 TLSv1.2 DH,4096bits | ||
8 ECDHE-RSA- | 10 DHE-RSA-AES128-SHA TLSv1.2 DH,4096bits | ||
9 | 11 DHE-RSA-AES256-SHA256 TLSv1.2 DH,4096bits | ||
10 | 12 AES128-GCM-SHA256 TLSv1.2 | ||
11 DHE-RSA-AES256-SHA256 | 13 AES256-GCM-SHA384 TLSv1.2 | ||
12 | 14 ECDHE-RSA-RC4-SHA TLSv1.2 ECDH,P-256,256bits | ||
13 | 15 RC4-SHA TLSv1.2 | ||
14 | 16 DHE-RSA-AES256-SHA TLSv1.2 DH,4096bits | ||
15 | 17 DHE-RSA-CAMELLIA256-SHA TLSv1.2 DH,4096bits | ||
16 AES256-SHA | 18 AES256-SHA256 TLSv1.2 | ||
17 CAMELLIA256-SHA | 19 AES256-SHA TLSv1.2 | ||
18 | 20 CAMELLIA256-SHA TLSv1.2 | ||
19 | 21 DHE-RSA-CAMELLIA128-SHA TLSv1.2 DH,4096bits | ||
22 AES128-SHA256 TLSv1.2 | |||
23 AES128-SHA TLSv1.2 | |||
22 AES128-SHA256 | 24 CAMELLIA128-SHA TLSv1.2 | ||
23 AES128-SHA | </source> | ||
24 CAMELLIA128-SHA | |||
</ | |||
= SSL Labs (Qualys) = | = SSL Labs (Qualys) = |