Advertisement
NewBestPastebins

Discord Webhook Tool

Dec 25th, 2024 (edited)
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 2.60 KB | None | 0 0
  1. @echo off
  2. color 2
  3. chcp 65001
  4. cls
  5. title Webhook Tool - By NewBestPastebins
  6. echo.
  7. echo.   ██╗    ██╗███████╗██████╗ ██╗  ██╗ ██████╗  ██████╗ ██╗  ██╗    ████████╗ ██████╗  ██████╗ ██╗    
  8. echo.   ██║    ██║██╔════╝██╔══██╗██║  ██║██╔═══██╗██╔═══██╗██║ ██╔╝    ╚══██╔══╝██╔═══██╗██╔═══██╗██║    
  9. echo.   ██║ █╗ ██║█████╗  ██████╔╝███████║██║   ██║██║   ██║█████╔╝        ██║   ██║   ██║██║   ██║██║    
  10. echo.   ██║███╗██║██╔══╝  ██╔══██╗██╔══██║██║   ██║██║   ██║██╔═██╗        ██║   ██║   ██║██║   ██║██║    
  11. echo.   ╚███╔███╔╝███████╗██████╔╝██║  ██║╚██████╔╝╚██████╔╝██║  ██╗       ██║   ╚██████╔╝╚██████╔╝███████╗
  12. echo.    ╚══╝╚══╝ ╚══════╝╚═════╝ ╚═╝  ╚═╝ ╚═════╝  ╚═════╝ ╚═╝  ╚═╝       ╚═╝    ╚═════╝  ╚═════╝ ╚══════╝
  13. echo.                                               By NewBestPastebins
  14.                                                                                                    
  15. echo.
  16. set /p "WEBHOOK= Discord webhook URL: "
  17. echo.
  18.  
  19. :MENU
  20. cls
  21. echo Choose an option:
  22. echo 1. Send messages
  23. echo 2. Spammer
  24. echo 3. Exit
  25. set /p "CHOICE=Enter choice (1, 2, 3): "
  26.  
  27. if "%CHOICE%"=="1" goto SEND_MESSAGE
  28. if "%CHOICE%"=="2" goto SPAMMER
  29. if "%CHOICE%"=="3" exit
  30.  
  31. :SEND_MESSAGE
  32. cls
  33. echo Enter message:
  34. set /p "MESSAGE="
  35. curl -H "Content-Type: application/json" -X POST -d "{\"content\":\"%MESSAGE%\"}" "%WEBHOOK%"
  36. echo Message sent
  37. pause
  38. goto MENU
  39.  
  40. :SPAMMER
  41. cls
  42. echo Enter the message to spam:
  43. set /p "SPAM_MESSAGE="
  44. echo How many times do you want to send it?
  45. set /p "COUNT=Enter the number of times: "
  46. echo Spamming %COUNT% times...
  47. for /l %%i in (1,1,%COUNT%) do (
  48.     curl -H "Content-Type: application/json" -X POST -d "{\"content\":\"%SPAM_MESSAGE%\"}" "%WEBHOOK%"
  49. )
  50. echo Spam successful
  51. pause
  52. goto MENU
  53.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement