Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Top Posters

Who's Online (1)

Powered by Vanilla. Made with Bootstrap.
MD5 hash finder
  • Sh3llc0d3
    Posts: 1,910
    Here's a script I was messing about with to learn perl. Read my comments if you want to run it. It doesn't crack hashes you enter a word and it searches for the hash.

    #!/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\";
    }
  • sangf
    Posts: 203
    nice, i'm impressed that can be done in only 10 lines~ perl is scary.
  • Sh3llc0d3
    Posts: 1,910
    Perl is awesome. End of :)
  • Xin
    Posts: 3,251
    Wow if that was VB it would be like 2 pages :L
    Xin
  • Sh3llc0d3
    Posts: 1,910
    I know, perl is good for nice simple application like this :)