Created
October 24, 2013 01:00
-
-
Save maxdavid/18e4ed2667efc42e1288 to your computer and use it in GitHub Desktop.
Script for hack.lu that attempts to access a URL from as many different countries as possible. cat the output to a file while running in the background and you're ready to gravy
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
#!/bin/bash | |
while true; do | |
pidof tor | xargs kill -HUP # get a new tor identity | |
torify wget -qO- https://ctf.fluxfingers.net/ref/oSaBba5IScd8V2a --no-check-certificate | grep "successfully" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment