Skip to content

Instantly share code, notes, and snippets.

@maxdavid
Created October 24, 2013 01:00
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