Make a simple basic Keylogger in Python for Linux



Keylogger is a program used to monitor keystrokes. the keystrokes are stored in a file somewhere.
Lets say you want to see what other people were doing on your computer, when you were away. you can just start the keylogger and spy on them!

A Keylogger can be used by a hacker to record sensitive information like usernames, password or credit card detail etc.

NOTE: This piece of code should not be used for unethical means. if you do so you are on your own risk.

I have written a very simple keylogger in python using pyxhook module which is an implementation of  pyhook module (for Windows OS).

Let's first see how to run the keylogger and after that we will understand how it is written.
Read more »

Comments

Popular posts from this blog

How to Install Antlr4 in Ubuntu/Linux

How to install python-gst (pygst) in ubuntu 16.04

How to make a gui Calculator in Python using Tkinter