Created
March 21, 2015 04:41
-
-
Save anonymous/8917a1c8da1616e8c48e to your computer and use it in GitHub Desktop.
Check 1 Million SSL Certificates
This file contains 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 characters
cat top-1m.csv | sed -e 's_.*,\(.*\)_echo | openssl s\_client -connect \1:443 > certs/\1.pem\&_' > certs.sh | |
ls certs | xargs -L1 -I DOMAIN echo 'openssl x509 -in certs/DOMAIN -text -noout > checks/DOMAIN.check' > checks.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment