How to hack with python code example
Example 1: hacking code of python
for i in range(1,85):
for j in range(1,8*85):
print("*",end=" ")
print( )
Example 2: simple python hack program
import hashlib
flag = 0
pass_hash = input("md5 hash: ")
wordlist = input("File name: ")
try:
pass_file = open(wordlist,"r")
except:
print("No file found :(")
quit()
for word in pass_file:
enc_wrd =word.encode('utf-8')
digest =hashlib.md5(enc_wrd.strip()).hexdigest()
if digest.strip() == pass_hash.strip():
print("password found")
print("Password is " + word)
flag = 1
break
if flag == 0:
print("password not in list")