From af7b4ce18c90c1a3df5c61a24f1be8f1f170c3a0 Mon Sep 17 00:00:00 2001 From: Julien Vehent Date: Mon, 9 Dec 2013 11:01:30 -0500 Subject: [PATCH] Rename CiphersScan to cipherscan --- README.md | 6 +++--- CiphersScan.sh => cipherscan | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) rename CiphersScan.sh => cipherscan (97%) diff --git a/README.md b/README.md index 7451754..3532d7e 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ CipherScan ========== A very simple way to find out which SSL ciphersuites are supported by a target. -Run: ./CipherScan.sh www.google.com:443 +Run: ./cipherscan www.google.com:443 And watch. The newer your version of openssl, the better results you'll get. Older versions @@ -20,14 +20,14 @@ Use '-a' to force openssl to test every single cipher it know. Use '-json' to output the results in json format ``` -$ ./CiphersScan.sh www.google.com:443 -json +$ ./cipherscan www.google.com:443 -json ``` Example ------- ``` -$ ./CiphersScan.sh www.google.com:443 +$ ./cipherscan www.google.com:443 prio ciphersuite protocols pfs_keysize 1 ECDHE-RSA-AES128-GCM-SHA256 SSLv3,TLSv1,TLSv1.1,TLSv1.2 ECDH,P-256,256bits 2 ECDHE-RSA-RC4-SHA SSLv3,TLSv1,TLSv1.1,TLSv1.2 ECDH,P-256,256bits diff --git a/CiphersScan.sh b/cipherscan similarity index 97% rename from CiphersScan.sh rename to cipherscan index 8a6f890..939581c 100755 --- a/CiphersScan.sh +++ b/cipherscan @@ -24,12 +24,12 @@ usage() { $0 attempts to connect to a target site using all the ciphersuites it knowns. Julien Vehent [:ulfr] - https://github.com/jvehent/cipherscan -example: $ ./CipherScan.sh www.google.com:443 +example: $ $0 www.google.com:443 Use only one of the options below: --v\tincrease verbosity --a\ttest all known ciphers individually at the end --json\toutput results in json format +-v increase verbosity +-a test all known ciphers individually at the end +-json output results in json format OpenSSL path can be changed in the OPENSSLBIN variable Benchmarking can be enabled in the DOBENCHMARK variable