It looks like you're new here. If you want to get involved, click one of these buttons!
#!/usr/bin/perl
# Pointless MD5 finder I made when learning.
# Just enter a word and it'll search for your hash on rednoize.com.
# You need to install Digest::MD5 from cpan.org
# Semtex-Primed - iExploit.org
use LWP::UserAgent;
use Digest::MD5 qw(md5_hex);
$browser = LWP::UserAgent->new;
while(1){
print \"Enter word to search for:\n\";
$hash = <STDIN>;
chomp($hash);
$seek = \"http://md5.rednoize.com/?=$hash&b=MD5-Search\";
$browser->get($seek) or die \"Failed to send request!\n\";
print \"$hash\" . \":\" . md5_hex(\"$hash\") . \" found\" . \"\n\";
}