-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwa-spam.py
542 lines (470 loc) · 24.2 KB
/
wa-spam.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
# Import some module for style and gui
from rich.console import Console
from colorama import Fore, Style
import pyfiglet
# Import modules for interacting with the display and GUI
import pyautogui
import urllib.request
import time
import random
import string
import os
# Help section for new users
def tool_help():
print(Fore.RED + """
_ _ ____ _ ___ ____ ____ ____ ___ _ ____ _ _
|__| |___ | |__] [__ |___ | | | | | |- |
| | |___ |___ | ___] |___ |___ | | |__| | -|
""" + Style.RESET_ALL + Fore.GREEN + """
Features """ + Style.RESET_ALL + Fore.MAGENTA + """
- User-Typed Message:""" + Style.RESET_ALL + Fore.BLUE + """ Manually type and send messages repeatedly. """ + Style.RESET_ALL + Fore.MAGENTA + """
- Auto-Typed Message:""" + Style.RESET_ALL + Fore.BLUE + """ Automated message-sending options: """ + Style.RESET_ALL + Fore.LIGHTYELLOW_EX + """
- Message with Counting:""" + Style.RESET_ALL + Fore.BLUE + """ Sends sequentially numbered messages. """ + Style.RESET_ALL + Fore.LIGHTYELLOW_EX + """
- Random Message Generator:""" + Style.RESET_ALL + Fore.BLUE + """ Sends messages with random words or sentences. """ + Style.RESET_ALL + Fore.LIGHTYELLOW_EX + """
- Meaningless Message Generator:""" + Style.RESET_ALL + Fore.BLUE + """ Sends messages with random, nonsensical content.
""" + Style.RESET_ALL + Fore.RED + """
Help Section """ + Style.RESET_ALL + Fore.GREEN + """
Main Menu """ + Style.RESET_ALL + Fore.BLUE + """
Choose an option from the following:
- [1] User Typed Message
- [2] Auto Typed Message
- [4] Help
- [0] Quit
- Enter Option -> """ + Style.RESET_ALL + Fore.MAGENTA + """
[1] User Typed Message (Option 1) """ + Style.RESET_ALL + Fore.BLUE + """
- Selecting this option allows you to manually input messages that will be sent repeatedly.
You will be prompted with:
- [*] User typed message <SELECTED>
- [N] How many messages do you have?
- [0] Enter 0 to quit and exit tool.
- [+] Enter Number of Messages (Default: 1) ->
Enter the number of messages you want to send. The default is 1. Enter 0 to quit.
Next, you will be asked to enter your message:
- [+] Enter your message here (default [ERROR!]) ->
Specify how many times you want the message to be sent:
- [N] How many times would you like to send these messages?
- [0] Enter 0 to quit and exit tool.
- [+] Enter Number of Times (Default: 1) ->
- After inputting the required details, move your cursor to the message box in WhatsApp and prepare to send the messages.
- You will receive a final prompt:
- [ALERT!!!] Now you have only 10 seconds to move the cursor on message box tab.
- After 10 second messages will be sent, and you will see:
- Message Sent...
- The given task has been completed.
Then you will be returned to the main menu to choose the next task or quit.
""" + Style.RESET_ALL + Fore.MAGENTA + """
[2] Auto Typed Message (Option 2) """ + Style.RESET_ALL + Fore.BLUE + """
Select this option for automated message-sending functionalities:
- [*] Auto typed message <SELECTED>
- Choose an option from the following:
- [1] Message with Counting
- [2] Random Message Generator
- [3] Meaningless Message Generator
- [0] Quit
- [+] Enter Option -> """ + Style.RESET_ALL + Fore.LIGHTYELLOW_EX + """
[1] Message with Counting (Sub-option 1) """ + Style.RESET_ALL + Fore.BLUE + """
- Enter the number of messages to send:
- [N] How many messages do you want to send?
- [0] Enter 0 to quit and exit tool.
- [+] Enter Number of Messages (Default: 1) ->
- Input the message to be sent with counting:
- [N] Enter the message you want to send with counting
-The message looks like [Message 1]
- [0] Enter 0 to quit and exit tool.
- [+] Enter Your Message (Default: ERROR) ->
Prepare to send messages as per the instructions provided. """ + Style.RESET_ALL + Fore.LIGHTYELLOW_EX + """
[2] Random Message Generator (Sub-option 2) """ + Style.RESET_ALL + Fore.BLUE + """
- Enter the number of messages:
- [N] How many messages do you want to send?
- [0] Enter 0 to quit and exit tool.
- [+] Enter Number of Messages (Default: 1) ->
- Specify the number of words per message:
- [N] How many words can each message contain?
- [0] Enter 0 to quit and exit tool.
- [+] Enter Length of Message (Default: 1 Word) -> """ + Style.RESET_ALL + Fore.LIGHTYELLOW_EX + """
[3] Meaningless Message Generator (Sub-option 3) """ + Style.RESET_ALL + Fore.BLUE + """
- Enter the number of messages:
- [N] How many messages do you want to send?
- [0] Enter 0 to quit and exit tool.
- [+] Enter Number of Messages (Default: 1) ->
- Specify the number of words per message:
- [N] How many words can each message contain?
- [0] Enter 0 to quit and exit tool.
- [+] Enter Length of Message (Default: 1 Word) ->
For all auto-typed options, you will be prompted to prepare WhatsApp for sending messages, with a 10-second alert.
""" + Style.RESET_ALL)
spammer()
# User is able to type a message and send what they want
def user_typed_message():
print(Fore.LIGHTMAGENTA_EX + "\n[*] User typed message" + Style.RESET_ALL + Fore.RED + "\t\t<SELECTED>" + Style.RESET_ALL)
# Ask the user how many messages are available to send
print("[N] How many messages do you have?\n[0] Enter 0 for quite and exit tool.")
available_smg = input(Fore.GREEN + Style.BRIGHT + "[+] Enter Number of Messages (Default 1 Message) -> " + Style.RESET_ALL)
# Check if the input is empty and set default to 1
if available_smg.strip() == "":
available_smg = 1
elif available_smg == "0":
exit_from_tool()
else:
try:
# Try to convert the input to an integer
available_smg = int(available_smg)
except ValueError:
print(Fore.RED + "Invalid value entered. Please choose a valid number.\n" + Style.RESET_ALL, end="")
time.sleep(1.5)
user_typed_message()
# Store messages in list
num_of_smg = 0
list_of_smg = []
print()
while num_of_smg < available_smg:
smg = input(Fore.GREEN + "[+] Enter your message hare (default [ERROR!]) -> " + Style.RESET_ALL)
if smg.strip() == "":
list_of_smg.append("ERROR!")
else:
list_of_smg.append(smg)
num_of_smg += 1
# How many times would you like to send these messages repeatedly?
print("\n[N] How many times would you like to send these messages?\n[0] Enter 0 for quite and exit tool.")
number_of_smg = input(Fore.GREEN + Style.BRIGHT + "[+] Enter Number of Time (Default 1 Time) -> "+ Style.RESET_ALL)
if number_of_smg.strip() == "":
number_of_smg = 1
elif number_of_smg == "0":
exit_from_tool()
else:
try:
# Try to convert the input to an integer
number_of_smg = int(number_of_smg)
except ValueError:
print(Fore.RED + "Invalid value entered. Please choose a valid number.\n" + Style.RESET_ALL, end="")
time.sleep(1.5)
user_typed_message()
# Show warning
print(Fore.RED + "\nNow open the WhatsApp tab and move the cursor to the message box where you can type your message.\n" + Style.RESET_ALL, end="")
# Check user is ready
print("Are you ready? If you are ready...\n[1] Press Enter or 1 to continue\n[0] Enter 0 for quite and exit tool.")
user_is_ready = input(Fore.GREEN + Style.BRIGHT + "[+] Enter Option -> "+ Style.RESET_ALL)
if user_is_ready.strip() == "" or user_is_ready.strip() == "1":
# Warn to user, code is running now
print(Fore.RED + "[ALERT!!!] Now you have only 10 seconds to move the cursor on message box tab.\n" + Style.RESET_ALL, end="")
# Wait for 10 second to move message box tab
time.sleep(10)
start_smg = 0
while start_smg < number_of_smg:
start_smg += 1
for message in list_of_smg:
# write a messages
pyautogui.write(message)
# send a messages
pyautogui.press('enter')
print("Message Sended...")
# Show message after Task is completed and Ask What is next task
print(Fore.GREEN + Style.BRIGHT + "The given task has been completed.\n\n"+ Style.RESET_ALL)
print(Fore.BLUE + Style.BRIGHT + "What is the next task?\nIf there are no more tasks, you can quit or exit the tool by using '0'."+ Style.RESET_ALL)
spammer()
elif user_is_ready == "0":
exit_from_tool()
else:
print(Fore.RED + "Invalid value entered. Please choose a valid number.\n" + Style.RESET_ALL)
time.sleep(1.5)
user_typed_message()
# This function can allow to user send messages with counting
def message_with_counting():
print(Fore.LIGHTMAGENTA_EX + "\n[*] Message with counting" + Style.RESET_ALL + Fore.RED + "\t<SELECTED>" + Style.RESET_ALL)
# Set how many time user want to send a messages
print("[N] How many messages do you want to send?\n[0] Enter 0 for quite and exit tool.")
no_of_messages = input(Fore.GREEN + Style.BRIGHT + "[+] Enter Number of Message (Default 1 Message) -> " + Style.RESET_ALL)
# Set default number of Message
if no_of_messages.strip() == "":
no_of_messages = 1
elif no_of_messages == "0":
exit_from_tool() # exit from code
else:
try :
no_of_messages = int(no_of_messages)
except:
print(Fore.RED + "Invalid value entered. Please choose a valid number.\n" + Style.RESET_ALL, end="")
time.sleep(1.5)
# Recall random_message_generator if user enter wrong value
message_with_counting()
# Set a message that you want use with counting
print("\n[N] Enter the message you want to send with counting\n\t-The message looks like [Message 1]\n[0] Enter 0 for quite and exit tool.")
message = input(Fore.GREEN + Style.BRIGHT + "[+] Enter Your Message (Default ERROR) -> " + Style.RESET_ALL)
# Set a default value of Message
if message.strip() == "":
message = "ERROR"
elif message == "0":
exit_from_tool() # exit from code
# Show warning
print(Fore.RED + "\nNow open the WhatsApp tab and move the cursor to the message box where you can type your message.\n" + Style.RESET_ALL, end="")
# Check user is ready
print("Are you ready? If you are ready...\n[1] Press Enter or 1 to continue\n[0] Enter 0 for quite and exit tool.")
user_is_ready = input(Fore.GREEN + Style.BRIGHT + "[+] Enter Option -> "+ Style.RESET_ALL)
if user_is_ready.strip() == "" or user_is_ready.strip() == "1":
# Warn to user, code is running now
print(Fore.RED + "[ALERT!!!] Now you have only 10 seconds to move the cursor on message box tab.\n" + Style.RESET_ALL, end="")
# Wait for 10 second to move message box tab
time.sleep(10)
for no_of_message in range(no_of_messages):
no_of_message += 1
# write a messages
pyautogui.write(message + " " + str(no_of_message))
# send a messages
pyautogui.press('enter')
print("Message Sended...")
# Show message after Task is completed and Ask What is next task
print(Fore.GREEN + Style.BRIGHT + "The given task has been completed.\n\n"+ Style.RESET_ALL)
print(Fore.BLUE + Style.BRIGHT + "What is the next task?\nIf there are no more tasks, you can quit or exit the tool by using '0'."+ Style.RESET_ALL)
spammer()
elif user_is_ready == "0":
exit_from_tool()
else:
print(Fore.RED + "Invalid value entered. Please choose a valid number.\n" + Style.RESET_ALL)
time.sleep(1.5)
message_with_counting()
# This function can allow to user send random messages with random words
def random_message_generator():
print(Fore.LIGHTMAGENTA_EX + "\n[*] Random Message Generator" + Style.RESET_ALL + Fore.RED + "\t<SELECTED>" + Style.RESET_ALL)
# URL of the word list
url = "https://www.mit.edu/~ecprice/wordlist.10000"
# Fetch the word list from the URL once
try:
response = urllib.request.urlopen(url)
word_list = response.read().decode().splitlines()
except Exception as e:
if isinstance(e, urllib.error.URLError):
print("\nInternet connection error")
else:
print("Something went wrong:", e)
word_list = [] # Ensure word_list is defined even if there is an error
# Set how many time user want to send a messages
print("[N] How many messages do you want to send?\n[0] Enter 0 for quite and exit tool.")
no_of_message = input(Fore.GREEN + Style.BRIGHT + "[+] Enter Number of Message (Default 1 Message) -> " + Style.RESET_ALL)
# Set default number of Message
if no_of_message.strip() == "":
no_of_message = 1
elif no_of_message == "0":
exit_from_tool() # exit from code
else:
try :
no_of_message = int(no_of_message)
except:
print(Fore.RED + "Invalid value entered. Please choose a valid number.\n" + Style.RESET_ALL, end="")
time.sleep(1.5)
# Recall random_message_generator if user enter wrong value
random_message_generator()
# Set a lenght of words in message
print("[N] How many words can contain every message?\n[0] Enter 0 for quite and exit tool.")
message_length = input(Fore.GREEN + Style.BRIGHT + "[+] Enter Length of Message (Default 1 Word) -> " + Style.RESET_ALL)
# Set default lenght of Message
if message_length.strip() == "":
message_length = 1
elif message_length == "0":
exit_from_tool() # exit from code
else:
try :
message_length = int(message_length)
except:
print(Fore.RED + "Invalid value entered. Please choose a valid number.\n" + Style.RESET_ALL, end="")
time.sleep(1.5)
# Recall random_message_generator if user enter wrong value
random_message_generator()
# Show warning
print(Fore.RED + "\nNow open the WhatsApp tab and move the cursor to the message box where you can type your message.\n" + Style.RESET_ALL, end="")
# Check user is ready
print("Are you ready? If you are ready...\n[1] Press Enter or 1 to continue\n[0] Enter 0 for quite and exit tool.")
user_is_ready = input(Fore.GREEN + Style.BRIGHT + "[+] Enter Option -> "+ Style.RESET_ALL)
if user_is_ready.strip() == "" or user_is_ready.strip() == "1":
# Warn to user, code is running now
print(Fore.RED + "[ALERT!!!] Now you have only 10 seconds to move the cursor on message box tab.\n" + Style.RESET_ALL, end="")
# Wait for 10 second to move message box tab
time.sleep(10)
for _ in range(no_of_message):
# Initialize sentence for add random words and create a sentence
sentence = ""
# punctuation marks for add to the end of sentence
punctuation_marks = [".", "?", ".", "?", "!", ".", "?", "!", "...", ".", "!", "!!", "?", ";"]
# Generate the message
for _ in range(message_length):
if word_list: # Check if the word_list is not empty
sentence += random.choice(word_list) + " "
else:
sentence += "ERROR "
# Create a finnal meassage
message = sentence + random.choice(punctuation_marks)
# write a messages
pyautogui.write(message)
# send a messages
pyautogui.press('enter')
print("Message Sended...")
# Show message after Task is completed and Ask What is next task
print(Fore.GREEN + Style.BRIGHT + "The given task has been completed.\n\n"+ Style.RESET_ALL)
print(Fore.BLUE + Style.BRIGHT + "What is the next task?\nIf there are no more tasks, you can quit or exit the tool by using '0'."+ Style.RESET_ALL)
spammer()
elif user_is_ready == "0":
exit_from_tool()
else:
print(Fore.RED + "Invalid value entered. Please choose a valid number.\n" + Style.RESET_ALL)
time.sleep(1.5)
random_message_generator()
# This function can allow to user send messages with meaningless words, that words contains charecter, number and symble.
def meaningless_message_generator():
print(Fore.LIGHTMAGENTA_EX + "\n[*] Meaningless Message Generator" + Style.RESET_ALL + Fore.RED + "\t<SELECTED>" + Style.RESET_ALL)
# Set how many time user want to send a messages
print("[N] How many messages do you want to send?\n[0] Enter 0 for quite and exit tool.")
no_of_message = input(Fore.GREEN + Style.BRIGHT + "[+] Enter Number of Message (Default 1 Message) -> " + Style.RESET_ALL)
# Set default number of Message
if no_of_message.strip() == "":
no_of_message = 1
elif no_of_message == "0":
exit_from_tool() # exit from code
else:
try :
no_of_message = int(no_of_message)
except:
print(Fore.RED + "Invalid value entered. Please choose a valid number.\n" + Style.RESET_ALL)
time.sleep(1.5)
# Recall meaningless_message_generator if user enter wrong value
meaningless_message_generator()
# Set a lenght of words in message
print("[N] How many words can contain every message?\n[0] Enter 0 for quite and exit tool.")
message_length = input(Fore.GREEN + Style.BRIGHT + "[+] Enter Length of Message (Default 1 Word) -> " + Style.RESET_ALL)
# Set default lenght of Message
if message_length.strip() == "":
message_length = 1
elif message_length == "0":
exit_from_tool() # exit from code
else:
try :
message_length = int(message_length)
except:
print(Fore.RED + "Invalid value entered. Please choose a valid number.\n" + Style.RESET_ALL)
time.sleep(1.5)
# Recall meaningless_message_generator if user enter wrong value
meaningless_message_generator()
# Show warning
print(Fore.RED + "\nNow open the WhatsApp tab and move the cursor to the message box where you can type your message.\n" + Style.RESET_ALL, end="")
# Check user is ready
print("Are you ready? If you are ready...\n[1] Press Enter or 1 to continue\n[0] Enter 0 for quite and exit tool.")
user_is_ready = input(Fore.GREEN + Style.BRIGHT + "[+] Enter Option -> "+ Style.RESET_ALL)
if user_is_ready.strip() == "" or user_is_ready.strip() == "1":
# Warn to user, code is running now
print(Fore.RED + "[ALERT!!!] Now you have only 10 seconds to move the cursor on message box tab.\n" + Style.RESET_ALL, end="")
# Wait for 10 second to move message box tab
time.sleep(10)
for _ in range(no_of_message):
# Initialize sentence for add random words and create a sentence
sentence = ""
# punctuation marks for add to the end of sentence
punctuation_marks = [".", "?", ".", "?", "!", ".", "?", "!", "...", ".", "!", "!!", "?", ";"]
# Generate the message
for _ in range(message_length):
characters = string.ascii_uppercase + string.ascii_lowercase
lenght_of_word = random.randint(3,10)
sentence += ''.join(random.choice(characters) for _ in range(lenght_of_word)) + " "
# Create a finnal meassage
message = sentence + random.choice(punctuation_marks)
# write a messages
pyautogui.write(message)
# send a messages
pyautogui.press('enter')
print("Message Sended...")
# Show message after Task is completed and Ask What is next task
print(Fore.GREEN + Style.BRIGHT + "The given task has been completed.\n\n"+ Style.RESET_ALL)
print(Fore.BLUE + Style.BRIGHT + "What is the next task?\nIf there are no more tasks, you can quit or exit the tool by using '0'."+ Style.RESET_ALL)
spammer()
elif user_is_ready == "0":
exit_from_tool()
else:
print(Fore.RED + "Invalid value entered. Please choose a valid number.\n" + Style.RESET_ALL)
time.sleep(1.5)
meaningless_message_generator()
# User is not able to type a message; the tool will create random text using characters and numbers and send it
def auto_typed_message():
print(Fore.LIGHTMAGENTA_EX + "\n[*] Auto typed message" + Style.RESET_ALL + Fore.RED + "\t\t<SELECTED>" + Style.RESET_ALL)
# Print options for the user to choose from
print(Fore.YELLOW + "Choose an option from the following:" + Style.RESET_ALL)
print("[1] Message with counting")
print("[2] Random Message Generator")
print("[3] Meaningless Message Generator")
print("[0] Quite")
# Handle any errors if occur
try:
# Get user input and convert it to an integer
message_type = int(input(Fore.GREEN + Style.BRIGHT + "[+] Enter Option -> "+ Style.RESET_ALL))
# Add validation for user input
if message_type == 1:
message_with_counting()
elif message_type == 2:
random_message_generator()
elif message_type == 3:
meaningless_message_generator()
elif message_type == 0:
# Call the exit function
exit_from_tool()
else:
print(Fore.RED + "Invalid option. Please choose 1, 2 or 3.\r" + Style.RESET_ALL)
time.sleep(1.5)
auto_typed_message()
except:
print(Fore.RED + "Invalid option. Please choose 1, 2 or 3.\r" + Style.RESET_ALL)
time.sleep(1.5)
auto_typed_message()
# Starting function of the tool
def spammer():
# Print options for the user to choose from
print(Fore.YELLOW + "Choose an option from the following:" + Style.RESET_ALL)
print("[1] User typed message")
print("[2] Auto typed message")
print("[4] Help")
print("[0] Quite")
# Handle any errors if occur
try:
# Get user input and convert it to an integer
message_type = int(input(Fore.GREEN + Style.BRIGHT + "[+] Enter Option -> "+ Style.RESET_ALL))
# Add validation for user input
if message_type == 1:
user_typed_message()
elif message_type == 2:
auto_typed_message()
elif message_type == 4:
tool_help()
elif message_type == 0:
# Call the exit function
exit_from_tool()
else:
print(Fore.RED + "Invalid option. Please choose 1 or 2.\r" + Style.RESET_ALL,end="")
time.sleep(1.5)
spammer()
except:
print(Fore.RED + "Invalid option. Please choose 1 or 2.\r" + Style.RESET_ALL,end="")
time.sleep(1.5)
spammer()
# Exit function for exit from tool
def exit_from_tool():
# Simple Exit Loading Bar
start = 0
end = 50
load = (Fore.GREEN + Style.BRIGHT + '='+ Style.RESET_ALL)
unload = (Fore.RED + '_'+ Style.RESET_ALL)
print(Fore.RED + Style.BRIGHT + "\nPlease wait while we are exiting the tool" + Style.RESET_ALL)
while start <= 50:
print("\r"+load*start+">"+unload*end,end="")
print("\r\t\t\t",start*2,"\r",end="")
time.sleep(0.05)
start += 1
end -= 1
print("\n\n")
os._exit(0)
# Tool name designe
name_of_tool = pyfiglet.figlet_format("WA-Spam")
# List of colors
colors = ["red", "green", "blue", "yellow", "cyan", "magenta", "bold red", "light_green", "blue", "bold yellow", "bold cyan", "bold magenta"]
# Choose a random color
random_color = random.choice(colors)
# Name of Tool and Code Developer
name_of_tool_color = Console()
name_of_tool_color.print(name_of_tool, style=random_color, end="\t\t\t\t\t-")
print(Fore.GREEN + Style.BRIGHT + 'sh1vam.03'+ Style.RESET_ALL)
# Start tool
spammer()