forked from Pymmdrza/HEXER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhexer.py
36 lines (34 loc) · 2.59 KB
/
hexer.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
import time
from colorama import Fore, Style
mmdrza = '''
███╗ ███╗███╗ ███╗██████╗ ██████╗ ███████╗ █████╗ ██████╗ ██████╗ ███╗ ███╗
████╗ ████║████╗ ████║██╔══██╗██╔══██╗╚══███╔╝██╔══██╗ ██╔════╝██╔═══██╗████╗ ████║
██╔████╔██║██╔████╔██║██║ ██║██████╔╝ ███╔╝ ███████║ ██║ ██║ ██║██╔████╔██║
██║╚██╔╝██║██║╚██╔╝██║██║ ██║██╔══██╗ ███╔╝ ██╔══██║ ██║ ██║ ██║██║╚██╔╝██║
██║ ╚═╝ ██║██║ ╚═╝ ██║██████╔╝██║ ██║███████╗██║ ██║██╗╚██████╗╚██████╔╝██║ ╚═╝ ██║
╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝
--------- [email protected] ----------- Mmdrza.Com ------------- Dev.to/mmdrza ------------
'''
print(Fore.YELLOW, mmdrza)
stx = "Insert Word For first character hasher create Next Section Entered ...\n\n\n\n\n\n\n"
stt = Fore.GREEN + stx
for sta in stt:
print(sta, end='', flush=True)
time.sleep(.11)
chrc = input("Insert First Character Value = >>> ")
how = input("How Many Needed (JUST ENTER NUMBER) = >>> ")
print(Fore.YELLOW, "\n========================[ M M D R Z A . C o M ]========================\n")
z = 1
while z <= int(how):
print(Fore.YELLOW + str(chrc) + str(z) + " = str(random.choice('123456789abcdefABCDEF'))")
z += 1
f = open("print.txt", "a")
f.write(str(chrc) + str(z) + " = str(random.choice('123456789abcdefABCDEF'))\n")
f.close()
chap1 = "\n\n\n Your Data Code Created On This File -> print.txt \n For Donate Programmer = Bitcoin Address : " \
"16p9y6EstGYcnofGNvUJMEGKiAWhAr1uR8 \n Website : Mmdrza.Com \n Email : [email protected]\n " \
"------------------------------------------\n\n\n\n\n\n"
chap = Fore.WHITE, str(chap1)
for stq in chap:
print(stq, end='', flush=True)
time.sleep(.01)