Skip to content

Commit

Permalink
Update main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
toastedpumpkin authored Dec 5, 2023
1 parent eae3325 commit d9081fd
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
import requests
import os
import time
import colorama
from colorama import Fore, Back, Style
colorama.init(autoreset=True)

pcname = (os.getenv('COMPUTERNAME'))
os.system('title DWS by toastedpumpkin - thanks for using this tool ' + pcname)

print(f"{Fore.MAGENTA} █████▄ █ █░ ██████ ")
print(f"{Fore.MAGENTA}▒██▀ ██▌ ▓█░ █ ░█░ ▒██ ▒ ")
print(f"{Fore.MAGENTA}░██ █▌ ▒█░ █ ░█ ░ ▓██▄")
Expand All @@ -15,20 +19,17 @@
print(f"{Fore.MAGENTA} ░ ░ ░ ")
print(f"{Fore.MAGENTA} ░ ")
time.sleep(0.3)
print(f"{Fore.MAGENTA}https://discord.gg/cHzvPFHPVd")
print(f"{Fore.MAGENTA}by toastedpumpkin - https://discord.gg/cHzvPFHPVd")
time.sleep(0.5)

wbhk = input(f"{Fore.LIGHTWHITE_EX}> webhook: ")
pyld = input(f"{Fore.LIGHTWHITE_EX}> payload: ")
lmao = ("awesome sauce 😈, you've just been webhook spammed")
print(f"{Fore.RED}awesome sauce")

requests.post(wbhk,json={'content': lmao,})
print(f"{Fore.RED}[+] Awesome sauce.")

def function():
requests.post(wbhk,json={'content': pyld,})

while True:
function()
time.sleep(0.2)
time.sleep(0.3)
print(f"{Fore.GREEN}[+] Message sent!")

0 comments on commit d9081fd

Please sign in to comment.