Skip to content

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

Notifications You must be signed in to change notification settings

Sebastian-git/KeyLogger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 

Repository files navigation

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

About

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

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages