Skip to content

Instantly share code, notes, and snippets.

@naholyr
Created January 5, 2012 09:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save naholyr/1564500 to your computer and use it in GitHub Desktop.
Save naholyr/1564500 to your computer and use it in GitHub Desktop.
Decode MD5 from live.free.fr
#!/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