Created
January 5, 2012 09:55
-
-
Save naholyr/1564500 to your computer and use it in GitHub Desktop.
Decode MD5 from live.free.fr
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 | |
# <troll>If you don't have bash, go get a real OS.</troll> | |
curl -s "http://md5.noisette.ch/md5.php?hash=$(curl -s http://live.free.fr | gunzip | tail -n 36 | head -n 32 | grep '[a-f0-9]' -o | xargs echo -n | sed 's/ //g')" | grep '<string>' | sed 's/^.*\[CDATA\[\(.*\)\]\].*$/\1/' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment