1 2 3 4 5 6 7 8 9 10 11 12 13 14
// _suping.c #include <unistd.h> // This a piece of lameness to convince ping to do a floodping. int main( int argc, char **argv ) { setuid( 0 ); execvp( "ping", argv ); perror( "What, no ping?" ); exit( 1 ); } // EOF