Simple Python Keylogger
added on 2021/03/18 @ 12:18:06 | 1599 views| category: hacking-security

A keylogger is one of the core features implemented by many malware to exfiltrate interesting data and learn about the victim. Besides the fact that interesting keystrokes can reveal sensitive information (usernames, passwords, IP addresses, hostnames, ...), just by having a look at the text typed on the keyboard, the attacker can profile his target and estimate if it's a juicy one or not.

The implementation in Python is extremely easy thanks to the pyHook module.

tags: #programming #security #python