Posts

Showing posts with the label [PYTHON] Hash Cracker - Offline & Online

[PYTHON] Hash Cracker - Offline & Online

#!/usr/bin/env python # File_name: md5 hash cracker # Currently contains about 13 site for cracking # This program is free software: you can redistribute it and/or modify it import sys import time import urllib2 import urllib import re import hashlib if len(sys.argv) < 2:   print '\nUsage:'   print '\t%s --online [hash..] ' % sys.argv[0]   print '\t%s --offline [hash..] [dictionary..]'  % sys.argv[0]   sys.exit(1) def banner():   print '''                   ___           ___           ___           ___           ___       ___          /  /\         /  /\         /  /\         /  /\         /__/|      /  /\        /  /:/   ...