elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Introducción a Git (Primera Parte)


+  Foro de elhacker.net
|-+  Programación
| |-+  Scripting
| | |-+  [PyQT4] MD5 Crack Online 0.1
0 Usuarios y 1 Visitante están viendo este tema.
Páginas: [1] Ir Abajo Respuesta Imprimir
Autor Tema: [PyQT4] MD5 Crack Online 0.1  (Leído 1,387 veces)
BigBear


Desconectado Desconectado

Mensajes: 545



Ver Perfil
[PyQT4] MD5 Crack Online 0.1
« en: 3 Noviembre 2012, 15:38 pm »

Un simple script para crackear un hash MD5 mediante una pagina que ofrece ese servicio.

Una imagen de como quedo



El codigo

Código
  1. #!usr/bin/python
  2. #MD5 Crack Online 0.1
  3. #Coded By Doddy H
  4. #Test with 098f6bcd4621d373cade4e832627b4f6
  5.  
  6. import sys,urllib2,re
  7. from PyQt4 import QtCore,QtGui
  8.  
  9. def toma(web) :
  10. nave = urllib2.Request(web)
  11. 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');
  12. op = urllib2.build_opener()
  13. return op.open(nave).read()
  14.  
  15. def crackit(hash):
  16. if(len(hash) == 32):
  17.  code = toma("http://md5.hashcracking.com/search.php?md5="+hash)
  18.  if (re.findall("Cleartext of "+hash+" is (.*)",code)):
  19.   rex = re.findall("Cleartext of "+hash+" is (.*)",code)
  20.   return rex[0]
  21.  else:
  22.   return "Not Found"
  23. else:
  24.  print "Hash invalid"
  25.  
  26. def crack():
  27. new.result.setText(crackit(str(new.md5.text())))
  28.  
  29. app = QtGui.QApplication(sys.argv)
  30.  
  31. new = QtGui.QWidget()
  32.  
  33. new.setWindowTitle("MD5 Crack Online 0.1 || Coded By Doddy H")
  34. new.resize(800,70)
  35. new.setStyleSheet("QWidget {background-color: #000000;color: #00FFFF}")
  36.  
  37. new.label1 = QtGui.QLabel("MD5 : ",new)
  38. new.label1.setStyleSheet("QWidget {background-color: #000000;color: #00FFFF;font: normal 17px Verdana}")
  39. new.label1.setGeometry(20,23,80,20)
  40.  
  41. new.md5 = QtGui.QLineEdit(new)
  42. new.md5.setStyleSheet("QWidget {background-color: #000000; color: #00FFFF;border: 2px solid #00FFFF}")
  43. new.md5.setGeometry(75,23,247,25)
  44.  
  45. new.label2 = QtGui.QLabel("Result : ",new)
  46. new.label2.setStyleSheet("QWidget {background-color: #000000;color: #00FFFF;font: normal 17px Verdana}")
  47. new.label2.setGeometry(335,23,80,20)
  48.  
  49. new.result = QtGui.QLineEdit(new)
  50. new.result.setStyleSheet("QWidget {background-color: #000000; color: #00FFFF;border: 2px solid #00FFFF}")
  51. new.result.setGeometry(410,23,230,25)
  52.  
  53. new.search = QtGui.QPushButton("Crack",new)
  54. new.search.setGeometry(660,23,120,28)
  55. new.search.setStyleSheet("QWidget {background-color: #000000; color: #00FFFF;border: 2px solid #00FFFF}")
  56.  
  57. new.connect(new.search,QtCore.SIGNAL("clicked()"),crack)
  58.  
  59. new.show()
  60.  
  61. sys.exit(app.exec_())
  62.  
  63. # The End ?
  64.  


En línea

Páginas: [1] Ir Arriba Respuesta Imprimir 

Ir a:  

Mensajes similares
Asunto Iniciado por Respuestas Vistas Último mensaje
UNREAL TOURNAMENTE CRACK ONLINE
Juegos y Consolas
RAUNOS 1 1,582 Último mensaje 13 Marzo 2004, 17:32 pm
por Ðevastador
alguien sabe de ande se baja el crack pa juga online dl age of mythology?
Juegos y Consolas
bigsnake 2 1,768 Último mensaje 29 Marzo 2005, 08:06 am
por ¤ Nerviozzo ¤
[PyQT4] Whois Online 0.2
Scripting
BigBear 0 1,443 Último mensaje 27 Agosto 2012, 00:24 am
por BigBear
[PyQT4] URL Shorter 0.2
Scripting
BigBear 0 1,534 Último mensaje 27 Agosto 2012, 17:29 pm
por BigBear
[PyQT4] LocateIP 0.1
Scripting
BigBear 4 3,103 Último mensaje 29 Agosto 2012, 01:48 am
por -- KiLiaN --
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines