-
-
Save markwh245/35d29a8a140d9d981d00e0c82c882a9a to your computer and use it in GitHub Desktop.
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 characters
| #!/bin/sh | |
| while read -r domain | |
| do | |
| # Remember. Account for the fact that some sites don't exist on HTTP | |
| # And others don't exist on HTTPS. Prune later. | |
| curl -I "https://$domain" --max-time 3 -H "Origin: https://$domain.evil.com" | ./respirator& | |
| curl -I "http://$domain" --max-time 3 -H "Origin: http://$domain.evil.com" | ./respirator& | |
| done < "top1mdomains" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment