-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
43 lines (38 loc) · 1.72 KB
/
main.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
import requests
import os
import time
import colorama
from colorama import Fore
colorama.init(autoreset=True)
os.system('title DWS by toastedpumpkin - session not logged in yet')
login = input(f"{Fore.LIGHTWHITE_EX}> Username: ")
os.system('title DWS by toastedpumpkin - logged in as ' + login)
print(f"{Fore.GREEN}[+] Successfully logged in.")
print(f"{Fore.LIGHTYELLOW_EX}Loading DWS...")
time.sleep(1)
os.system('cls')
print(f"{Fore.MAGENTA} █████▄ █ █░ ██████ ")
print(f"{Fore.MAGENTA}▒██▀ ██▌ ▓█░ █ ░█░ ▒██ ▒ ")
print(f"{Fore.MAGENTA}░██ █▌ ▒█░ █ ░█ ░ ▓██▄")
print(f"{Fore.MAGENTA}░▓█▄ ▌ ░█░ █ ░█ ▒ ██▒")
print(f"{Fore.MAGENTA}░▒████▓ ░░██▒██▓ ▒██████▒▒")
print(f"{Fore.MAGENTA} ▒▒▓ ▒ ░ ▓░▒ ▒ ▒ ▒▓▒ ▒ ░")
print(f"{Fore.MAGENTA} ░ ▒ ▒ ▒ ░ ░ ░ ░▒ ░ ░")
print(f"{Fore.MAGENTA} ░ ░ ░ ░ ░ ░ ░ ░ ")
print(f"{Fore.MAGENTA} ░ ░ ░ ")
print(f"{Fore.MAGENTA} ░ ")
time.sleep(0.3)
if login == "toastedpumpkin" or login == "nic":
print(f"{Fore.LIGHTMAGENTA_EX}Welcome Back, Master.")
if login == "Paw" or login == "paw":
print(f"{Fore.LIGHTMAGENTA_EX}lemons and demons LMAOO")
time.sleep(0.5)
wbhk = input(f"{Fore.LIGHTWHITE_EX}> Webhook: ")
pyld = input(f"{Fore.LIGHTWHITE_EX}> Payload: ")
print(f"{Fore.RED}[+] Awesome sauce.")
def function():
requests.post(wbhk,json={'content': pyld,})
while True:
function()
time.sleep(0.15)
print(f"{Fore.GREEN}[+] Message sent!")