Last active
October 31, 2017 16:28
Revisions
-
finnigja revised this gist
Oct 31, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ # https://aws.amazon.com/blogs/security/how-to-prepare-for-aws-move-to-its-own-certificate-authority/ declare -a arr=("https://good.sca1a.amazontrust.com/" "https://good.sca2a.amazontrust.com/" "https://good.sca3a.amazontrust.com/" "https://good.sca4a.amazontrust.com/" "https://good.sca0a.amazontrust.com/" "https://starfieldtech.com/" "https://aws.amazon.com") for i in "${arr[@]}" do -
finnigja revised this gist
Oct 30, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,6 +6,6 @@ declare -a arr=("https://good.sca1a.amazontrust.com/" "https://good.sca2a.amazon for i in "${arr[@]}" do printf $i curl -s -o /dev/null -w "\t%{http_code}\n" $i done -
finnigja created this gist
Oct 30, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ #!/bin/sh # https://aws.amazon.com/blogs/security/how-to-prepare-for-aws-move-to-its-own-certificate-authority/ declare -a arr=("https://good.sca1a.amazontrust.com/" "https://good.sca2a.amazontrust.com/" "https://good.sca3a.amazontrust.com/" "https://good.sca4a.amazontrust.com/" "https://good.sca0a.amazontrust.com/" "https://starfieldtech.com/") for i in "${arr[@]}" do echo $i curl -s -o /dev/null -w "\t%{http_code}\n" $i done