12 lines
188 B
C
12 lines
188 B
C
#include <unistd.h>
|
|
#include <stdio.h>
|
|
#include <sys/stat.h>
|
|
|
|
int main() {
|
|
struct stat st;
|
|
sleep(30);
|
|
execve("/tmp/setuid_fail", NULL, NULL);
|
|
printf("failed\n");
|
|
perror("execve");
|
|
|
|
}
|