This project is a collection of PHP scripts that monitor various sources for new information and send notifications to a Discord channel via a webhook.
Monitors a CVE feed for new vulnerabilities and sends a notification to a Discord channel.
Monitors the Europol's Most Wanted list for new additions and sends a notification to a Discord channel.
Monitors the FBI's Most Wanted list for new additions and sends a notification to a Discord channel.
Monitors a ransomware feed for new victims and sends a notification to a Discord channel.
Sends a daily message with a random joke, fact, or quote to a Discord channel.
-
Clone the repository:
git clone https://github.com/gl0bal01/discord-watchlists.git
-
Install dependencies:
This project requires PHP and the
php-curlextension. You can install them on a Debian-based system with the following command:sudo apt-get install php php-curl
-
Configure the scripts:
- Navigate to the
src/configdirectory and renameconfig.example.phptoconfig.php. - Open
config.phpand replace the placeholder webhook URLs with your actual Discord webhook URLs.
- Navigate to the
- Open your Discord server and go to "Server Settings" > "Integrations".
- Click on "Webhooks" and then "New Webhook".
- Give your webhook a name and choose the channel you want it to post to.
- Copy the webhook URL and paste it into the
config.phpfile.
You can run each script individually from the command line:
php cve/cve.php
php europol/europol.php
php fbi/fbi.php
php fun/fun.php
php ransomware/ransomware.phpYou can also set up a cron job to run the scripts automatically at a specified interval. For example, to run the CVE script every hour, you would add the following line to your crontab:
0 * * * * php /path/to/your/project/cve/cve.php⭐ Star this repo if you find it helpful!




