Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- color 2
- chcp 65001
- cls
- title Webhook Tool - By NewBestPastebins
- echo.
- echo. ██╗ ██╗███████╗██████╗ ██╗ ██╗ ██████╗ ██████╗ ██╗ ██╗ ████████╗ ██████╗ ██████╗ ██╗
- echo. ██║ ██║██╔════╝██╔══██╗██║ ██║██╔═══██╗██╔═══██╗██║ ██╔╝ ╚══██╔══╝██╔═══██╗██╔═══██╗██║
- echo. ██║ █╗ ██║█████╗ ██████╔╝███████║██║ ██║██║ ██║█████╔╝ ██║ ██║ ██║██║ ██║██║
- echo. ██║███╗██║██╔══╝ ██╔══██╗██╔══██║██║ ██║██║ ██║██╔═██╗ ██║ ██║ ██║██║ ██║██║
- echo. ╚███╔███╔╝███████╗██████╔╝██║ ██║╚██████╔╝╚██████╔╝██║ ██╗ ██║ ╚██████╔╝╚██████╔╝███████╗
- echo. ╚══╝╚══╝ ╚══════╝╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚══════╝
- echo. By NewBestPastebins
- echo.
- set /p "WEBHOOK= Discord webhook URL: "
- echo.
- :MENU
- cls
- echo Choose an option:
- echo 1. Send messages
- echo 2. Spammer
- echo 3. Exit
- set /p "CHOICE=Enter choice (1, 2, 3): "
- if "%CHOICE%"=="1" goto SEND_MESSAGE
- if "%CHOICE%"=="2" goto SPAMMER
- if "%CHOICE%"=="3" exit
- :SEND_MESSAGE
- cls
- echo Enter message:
- set /p "MESSAGE="
- curl -H "Content-Type: application/json" -X POST -d "{\"content\":\"%MESSAGE%\"}" "%WEBHOOK%"
- echo Message sent
- pause
- goto MENU
- :SPAMMER
- cls
- echo Enter the message to spam:
- set /p "SPAM_MESSAGE="
- echo How many times do you want to send it?
- set /p "COUNT=Enter the number of times: "
- echo Spamming %COUNT% times...
- for /l %%i in (1,1,%COUNT%) do (
- curl -H "Content-Type: application/json" -X POST -d "{\"content\":\"%SPAM_MESSAGE%\"}" "%WEBHOOK%"
- )
- echo Spam successful
- pause
- goto MENU
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement