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, 05:15  


Tema destacado: Sigue las noticias más importantes de elhacker.net en ttwitter!

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

Desconectado Desconectado

Mensajes: 220



Ver Perfil
[Python] Simple Crack Hash
« en: 16 Octubre 2011, 02:51 »

Un simple programa para crackear hashes md5

Código
#Simple Crack Hash 
#(C) DOddy Hackman 2011
#Test with 202cb962ac59075b964b07152d234b70:123
 
import urllib2,re,sys
 
nave = urllib2.build_opener(urllib2.HTTPCookieProcessor())
nave.add_header = [('User-Agent','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5')]
 
 
def head():
print "\n\n== -- Crack Hash -- ==\n\n"
 
def copyright():
print "\n\n(C) Doddy HAckman 2011\n"
 
def uso():
print "\n[+] crackhash.py <hash>\n\n"
 
def crack(passw):
print "\n[+] Cracking...\n\n"
code = toma("http://md5.hashcracking.com/search.php?md5="+passw)
if re.findall("Cleartext of (.*) is (.*)",code):
 control = re.findall("Cleartext of (.*) is (.*)",code)
 print "[+] Password : "+control[0][1]
else:
 print "\n[-] Not Found\n\n"
 
def toma(web):
return nave.open(web).read()
 
head()
 
if len(sys.argv) == 2 :
crack(sys.argv[1])
else:
uso()
 
copyright()
 


En línea

Páginas: [1] Ir Arriba Respuesta Imprimir 

Ir a:  

Mensajes similares
Asunto Iniciado por Respuestas Vistas Último mensaje
Crack hash WIN2000 SP4
Hacking Avanzado
Rise 1 835 Último mensaje 18 Septiembre 2005, 14:13
por dxr
Crack HASH MD5
Hacking Básico
EvilGoblin 7 1,770 Último mensaje 10 Enero 2007, 20:56
por EvilGoblin
[Videos] Crack mysql hash + man in the middle propio
Hacking Avanzado
shargon 3 3,210 Último mensaje 10 Febrero 2009, 21:13
por shargon
[Python] Kaley, Keylogger simple en Python
Scripting
Fyrox 0 1,072 Último mensaje 21 Septiembre 2011, 23:24
por Fyrox
Snnifing - Hash - Crack
Criptografía
lubin89 1 1,095 Último mensaje 21 Enero 2012, 02:51
por APOKLIPTICO
Powered by SMF 1.1.16 | SMF © 2006-2008, Simple Machines