Created
February 10, 2023 15:42
-
-
Save R3DHULK/20676d0af310554314cfe3bf857e17d9 to your computer and use it in GitHub Desktop.
Whatsapp Message DOS Attack (Whatsapp Automation)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pyautogui | |
import time | |
number_of_messages = int(input('\033[92m [*] Enter number of messages: ')) | |
message_content = input('\033[92m [*] Enter message content: ') | |
time.sleep(3) | |
for num in range(number_of_messages): | |
pyautogui.write(message_content) | |
pyautogui.press('enter') | |
print('\033[92m [+] Script executed successfully') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment