Webhook Writer is a tool for sending a specified or unspecified number of Webhook messages. It is one of the most efficient solutions of this type publicly available!
It's very simple! Just follow these steps:
- Download the program files from this repository.
git clone https://github.com/stainowy/WebhookWriter
- Make sure you have all the required libraries from the
requirements.txt
file:- You can install them using the following command:
pip install -r requirements.txt
- You can install them using the following command:
- Run the program and follow the console instructions:
python main.py
- The software allows you to send messages at the same time from many different webhooks
- The software allows you to send messages via webhook with a message limit or without a limit!
- Two modes: Safe Mode which waits politely for the cool Discord API (Slower) and Attacker Mode which ignores API limits and spams webhooks without looking at anything (Faster and risky)
- Possibility to permanently store webhooks in a txt file
To configure the program, open the
config.json5
file:
{
{
debug: "false",
// Enable debug mode for detailed logging
// Only "true" or "false"
location_type: "file",
// Select the location from which the webhook data will be retrieved.
// Only "file" or "ask"
// "file" = download data from webhooks.txt
// "ask" = ask for the webhook link
location_path: "webhooks.txt"
// The path to the file containing the webhook URLs.
// Only used if location_type is "file"
}
}
- debug – Option responsible for enabling DEBUG messages. Accepts only
"true"
or"false"
(as strings). - location_type – Option that defines where the webhook link will be retrieved from. Accepts:
"file"
– retrieves the information from the file specified inlocation_path
,"ask"
– the user will be prompted to enter the link upon program startup.
- location_path – Field for specifying the path to a
.txt
file containing the webhook URLs. This is only used iflocation_type
is set to"file"
.
If you decide to use webhooks in a txt file, let's see what you need to prepare in the file.
// _________________________________________________
// | |
// | Paste your webhook links here. |
// | Remember to change the locations in config! |
// | Each subsequent webhook on a new line |
// |_________________________________________________|
https://discord.com/api/webhooks/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
https://discord.com/api/webhooks/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
https://discord.com/api/webhooks/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
https://discord.com/api/webhooks/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
In the txt file you need to put links to Discord webhooks. Each one on a new line. We allow adding comments using
//
characters at the beginning of the commented line.
- The program works based on Discord webhooks. Please note that spamming may result in blocking the webhook.
- The program was written for EDUCATIONAL purposes only.
- The author is not responsible for the use of the software or damage caused by it.
- The project is provided "as is".
- For more information, see the license
❤ Made with passion by @stainowy