Skip to content

Instantly share code, notes, and snippets.

@maxdavid
Created October 24, 2013 01:00
Show Gist options
  • Save maxdavid/18e4ed2667efc42e1288 to your computer and use it in GitHub Desktop.
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
#!/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