forked from antonputra/tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhack_password.py
38 lines (28 loc) · 1.07 KB
/
hack_password.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import hashlib
from urllib.request import urlopen
def hash(password):
result = hashlib.sha256(password.encode())
return result.hexdigest()
def get_wordlist(url):
try:
with urlopen(url) as f:
wordlist = f.read().decode('utf-8').splitlines()
return wordlist
except Exception as e:
print(f'failed to get wordlist: {e}')
exit(1)
def bruteforce(wordlist, password):
password_hash = hash(password)
for guess_password in wordlist:
if hash(guess_password) == password_hash:
return guess_password
if __name__ == '__main__':
WORDLIST_URL = 'https://raw.githubusercontent.com/berzerk0/Probable-Wordlists/2df55facf06c7742f2038a8f6607ea9071596128/Real-Passwords/Top1575-probable-v2.txt'
MY_PASSWORD = '$5hdf&3adh'
wordlist = get_wordlist(WORDLIST_URL)
print(f'wordlist contains {len(wordlist)} items')
password = bruteforce(wordlist, MY_PASSWORD)
if password is not None:
print('your password is:', password)
else:
print('your password is not in the wordlist')