idk i just wanted to see how webhooks can be used to exfiltrate data. basic python script that sends outputs from commands to a webhook. wip so no proper readme for now lol
THIS IS A PURELY EDUCATIONAL PROOF OF CONCEPT. It's made just to demonstrate how webhooks can be abused in spyware contexts. Don't use this for malicious stuff. I am not responsible for any damage caused by this code.
- sends login info on startup
- pseudo interactive shell (with working
cdkinda) - gets system info using
fastfetch - takes screenshot (
scrot) and sends it over - logs clipboard content
- grabs network info & external ip
- grabs .bashrc file
- i also made keylogger.py which im gonna use later
- open the script
- replace
WEBHOOK = "webhook"with your actual Discord/Slack/whatever webhook URL - install dependencies:
pip install requests pyperclip
3.5 if u wanna use keylogger.py alsopip install pynput - run it:
python main.py(or whatever you named it) - select options from the menu
cdis buggy sometimes- only works nicely on linux because of
scrot,ifconfig,fastfetchetc. - messy code, might clean later lol
mit