-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbypassblacklist.py
67 lines (47 loc) · 1.49 KB
/
bypassblacklist.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#Report any issue on Github.
import os
import sys
import time
import pyfiglet
# Note : the str "word" is only the raw input by user, it will not change...
word = ""
banner = pyfiglet.figlet_format("DISCORD BLACKLISTED WORDS BYPASS 2022")
print(banner)
print("A tool by Xprogrammer777 \n")
word = str(input("[*] Type the word you want to bypass: "))
def startprocess():
if "a" in word:
bypassed = word.replace('a', '\u0430')
elif "c" in word:
bypassed = word.replace('c', '\u03F2')
elif "e" in word:
bypassed = word.replace('e', '\u0435')
elif "o" in word:
bypassed = word.replace('o', '\u043E')
elif "p" in word:
bypassed = word.replace('p', '\u0440')
elif "s" in word:
bypassed = word.replace('s', '\u0455')
elif "d" in word:
bypassed = word.replace('d', '\u0501')
elif "q" in word:
bypassed = word.replace('q', '\u051B')
elif "w" in word:
bypassed = word.replace('w', '\u051D')
else:
print("[!] Sorry, can't bypass this word, we will release a new update to bypass all words")
time.sleep(1)
print("[!] QUITTING!")
quit()
print("[*] Process succefully finished!")
time.sleep(1)
print("[*] COPY AND PASTE IN DISCORD THIS WORD: ", bypassed)
#print the result
if word == "":
time.sleep(1)
print("[!] Please type a word")
time.sleep(1)
else:
print("[*] Starting...")
time.sleep(1)
startprocess()