2
0
Fork 0
mirror of https://github.com/alexanderepstein/Bash-Snippets synced 2018-11-08 02:59:35 +01:00

Adding siteciphers to the pipeline

This commit is contained in:
Alex Epstein 2017-07-15 12:19:04 -04:00
parent a281d32bf0
commit 0b16cfedad
6 changed files with 64 additions and 2 deletions

View file

@ -113,7 +113,19 @@ Or run it with no flags and backup individual repositories.
</div>
## Siteciphers
Check which ciphers are enabled / disabled for a given https site.
Sometimes ciphers are deemed vulnerable, so when you are changing configuration, this can be used to confirm that the cipher truly is disabled.
Some browsers (For example old versions of IE) don't support some of the newer ciphers, which would be a good example of when a SysAdmin would need a list of currently supported ciphers so that changes can be made.
<div align="center">
<img height="75%" width="75%" src="https://github.com/alexanderepstein/Bash-Snippets/blob/master/siteciphers/siteciphers.png?raw=true">
</div>
## Crypt

View file

@ -337,6 +337,37 @@ Output: http://possiblemaliciouswebsiteornot\.com
.
.IP "" 0
.
.SS "Siteciphers"
Description: Checks the available ciphers for the SSL of an https site\.
.
.P
Usage: siteciphers [flag] or siteciphers [optionalDFlag] [website]
.
.IP "\(bu" 4
\-u Update Bash\-Snippet Tools
.
.IP "\(bu" 4
\-h Show the help
.
.IP "\(bu" 4
\-v Get the tool version
.
.IP "\(bu" 4
\-d Set the delay between requests sent to the site (default is 1 sec)
.
.IP "" 0
.
.P
Examples:
.
.IP "\(bu" 4
siteciphers github\.com
.
.IP "\(bu" 4
siteciphers \-d 0\.75 google\.com
.
.IP "" 0
.
.SS "Stocks"
Description: Finds the latest information on a certain stock\.
.

View file

@ -214,6 +214,25 @@ Example:
* Output: http://possiblemaliciouswebsiteornot.com
### Siteciphers
Description: Checks the available ciphers for the SSL of an https site.
Usage: siteciphers [flag] or siteciphers [optionalDFlag] [website]
* -u Update Bash-Snippet Tools
* -h Show the help
* -v Get the tool version
* -d Set the delay between requests sent to the site (default is 1 sec)
Examples:
* siteciphers github.com
* siteciphers -d 0.75 google.com
### Stocks
Description: Finds the latest information on a certain stock.

View file

@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.11.2"
declare -a tools=(currency stocks weather crypt movies taste short geo cheat ytview cloudup qrify)
declare -a tools=(currency stocks weather crypt movies taste short geo cheat ytview cloudup qrify siteciphers)
askInstall()
{

BIN
siteciphers/siteciphers.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 155 KiB

View file

@ -1,6 +1,6 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
declare -a tools=(currency stocks weather crypt movies taste short geo cheat ytview cloudup qrify)
declare -a tools=(currency stocks weather crypt movies taste short geo cheat ytview cloudup qrify siteciphers)
all="1"
askUninstall()