/KeyLogger

Python Key logger that runs in the background and captures key strokes, then emails them to any specified gmail address after a set interval.

Primary LanguagePython

KeyLogger

Introduction

This Python created keylogger saves key strokes after a configerable amount of time and sends them to a specified email.

Usage

After opening the file, the program begins tracking key strokes and automatically sends the data in the background. Make sure to edit these variables before running your program.

Be sure to input your email and password into the raw code before running

GMAIL = ""
PASSWORD = ""

Edit the SAVINGDELAY variable before running to specify how long to wait before sending each email

SAVINGDELAY = 10

The STOPCOMBO variable are the keys you have to hold to stop the program from running in the background (default is alt+down arrow)

STOPCOMBO = {keyboard.Key.alt_l, keyboard.Key.down}

Launch

Python 3.6.3

Status:

In progress