Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
afterIife authored Apr 1, 2021
1 parent 2ec1f79 commit c358d39
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions webhook-spammer/webhook-spammer.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import discord_webhook
from discord_webhook import DiscordEmbed, DiscordWebhook
import string
import random
import discord
import os
import colorama
from colorama import Fore, Style
import requests
import time
from colorama import Fore
import time, datetime
import json
def sbammah():
webhook = input(f"[>]Enter The Webhook Link:")
message = input(f"[>]Enter The Message: ")
delay = float(input(f"[>]Enter The Delay:"))
print(Fore.RESET + '')

while True:

print(Fore.CYAN + "Sending.. " + message)
print(Fore.RESET + " ")
try:
time.sleep(delay)
_data = requests.post(webhook, json={'content': message})

if _data.status_code == 204:
print(Fore.CYAN + "Sent -> " + message)
except:
print("Something Happend! | Probably Broken Webhook -> " + webhook)
time.sleep(5)
exit()

x = 5
while x == 5:
sbammah()

0 comments on commit c358d39

Please sign in to comment.