-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspammer.py
42 lines (28 loc) · 1.39 KB
/
spammer.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
import requests
import os
import colorama
from colorama import Fore
colorama.init()
os.system('title Made by Azakiwlex')
print (Fore.BLUE + f"""
::: ::::::::: :::::::: ::::::::: ::: :::: :::: :::: :::: :::::::::: :::::::::
:+: :+: :+: :+: :+: :+: :+: :+: :+: +:+:+: :+:+:+ +:+:+: :+:+:+ :+: :+: :+:
+:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+:+ +:+ +:+ +:+:+ +:+ +:+ +:+ +:+
+#++:++#++: +#+ +#++:++#++ +#++:++#+ +#++:++#++: +#+ +:+ +#+ +#+ +:+ +#+ +#++:++# +#++:++#:
+#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+
#+# #+# #+# #+# #+# #+# #+# #+# #+# #+# #+# #+# #+# #+# #+#
### ### ######### ######## ### ### ### ### ### ### ### ########## ### ###
""" )
webhook = input (Fore.RED + 'Webhook url: ')
print("Spameando la Webhook. CTRL + C para detener")
while True:
data = {
'avatar_url': 'https://cdn.discordapp.com/attachments/990801275962679296/1078037397482258576/MOSHED-2023-2-22-12-26-53.png',
'username': 'KugelBlitz Destroyer',
'Content': 'Hello',
'embeds': [{
'title': 'GET REKT',
'description': 'GET REKT'
}]
}
x = requests.post(webhook, json=data)