-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspammer.py
49 lines (43 loc) · 1.66 KB
/
spammer.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
import os
import time
import sys
from colored import fg, attr
from colorama import Fore, init, Style
from easygui import fileopenbox
import ctypes
from dhooks import Webhook
ctypes.windll.kernel32.SetConsoleTitleW("Webhooker - Vertixx")
os.system('cls')
logo = f'''{Fore.RED} __ __ _ _
/ / /\ \ \___| |__ /\ /\___ ___ | | _____ _ __
\ \/ \/ / _ \ '_ \ / /_/ / _ \ / _ \| |/ / _ \ '__|
\ /\ / __/ |_) / __ / (_) | (_) | < __/ |
\/ \/ \___|_.__/\/ /_/ \___/ \___/|_|\_\___|_|
'''
main = f'''{Fore.RED} __ __ _ _
/ / /\ \ \___| |__ /\ /\___ ___ | | _____ _ __
\ \/ \/ / _ \ '_ \ / /_/ / _ \ / _ \| |/ / _ \ '__|
\ /\ / __/ |_) / __ / (_) | (_) | < __/ |
\/ \/ \___|_.__/\/ /_/ \___/ \___/|_|\_\___|_|
{Fore.WHITE}[{Fore.LIGHTBLACK_EX}{Fore.RED}1{Fore.WHITE}{Fore.WHITE}] {Fore.LIGHTBLACK_EX}{Fore.WHITE}- {Fore.LIGHTBLACK_EX}{Fore.WHITE}Spammer
{Fore.WHITE}[{Fore.LIGHTBLACK_EX}{Fore.RED}3{Fore.WHITE}{Fore.WHITE}] {Fore.LIGHTBLACK_EX}{Fore.WHITE}- {Fore.LIGHTBLACK_EX}{Fore.WHITE}Exit
'''
print(main)
mainmenu = input('%s >> %s' % (fg(9), attr(0)))
if mainmenu == '1':
os.system('cls')
print(logo)
url = input(f'{Fore.WHITE}Your Webhook URL: ')
os.system('cls')
print(logo)
text = input(f'{Fore.WHITE}Your Text: ')
os.system('cls')
print(logo)
number = int(input(f'{Fore.WHITE}Number Of Messages: '))
os.system('cls')
print(logo)
hook = Webhook(url)
for x in range(number):
hook.send(f'{text}')
else:
print("Finished Spamming")