• Earn real money by being active: Hello Guest, earn real money by simply being active on the forum — post quality content, get reactions, and help the community. Once you reach the minimum credit amount, you’ll be able to withdraw your balance directly. Learn how it works.

Perl Simple MD5 Brute-Force ( directory )

Status
Not open for further replies.

Spoofer

Little Hacker
User
Joined
Feb 2, 2013
Messages
753
Reputation
0
Reaction score
5,919
Points
243
Credits
0
‎12 Years of Service‎
16%
[HIDE-THANKS]

Code:
>#!/usr/bin/perl
#Developed by Marck ( @7mm5l )
#           _____
#           U  \>
#         _ . _ \>
#       <[|( )~( )|]>
#        <\.| | |./>
#         <|_____|>
#          __|.|__
#         |_______|

use Digest::MD5  qw(md5_hex);

if ($^O =~/Win32/ig) { system("cls"); }else{ system("clear"); }
print ".  ..__ ._,   .__        ,         .___            
|\\/||  \\|_    [__)._.. .-+- _  ___ [__  _ ._. _. _
|  ||__/._)   [__)[  (_| | (/,     |   (_)[  (_.(/,
use: $0  
";
if (length($ARGV[0])==0 or length($ARGV[1])==0){ exit(); }
if (length($ARGV[1])<32 or length($ARGV[1])>32){ print "\n[~]This hash is not MD5!\n"; exit(); }
print "\n\n[!] For best performance, only the final result will be shown!\n";
open(Word, $ARGV[0]) or die ("\n[!] Unable to open your Word-List!\n");  
while() {
my $pass = $_;
chomp $pass;
$codi = md5_hex($pass);
if ($codi eq $ARGV[1]){
print "\n\n[!]Found: $pass\n\n";
exit();
}
}
print "\n\n[~] String not found!\n\n";
[/HIDE-THANKS]

 
Status
Not open for further replies.
Back
Top