#include /* standard I/O library */ #include /* standard library */ #include /* definition of symbols */ #include #include /*---------------------------------------------------------------------------*/ /* */ /* H A U P T P R O G R A M M */ /* */ /* (from: Reinhard Drube ) */ /*---------------------------------------------------------------------------*/ main(int argc,char *argv[]) { (void) setuid((uid_t)0); (void) seteuid((uid_t)0); if (argc == 1) { if(execl("/usr/bin/pkill", "/usr/bin/pkill", "-x", "-u", "0", "vold", NULL)) { perror("execl"); exit(0); } else exit(0); } }