Files
Camille Mougey ff8a03a326 Firejail no-exec
2024-10-03 10:29:10 +02:00

13 lines
273 B
C

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main() {
char *newargv[] = { "/bin/ls", "/", NULL };
char *newenviron[] = { NULL };
execve("/bin/ls", newargv, newenviron);
perror("execve"); /* execve() returns only on error */
exit(EXIT_FAILURE);
}