7 lines
94 B
C
7 lines
94 B
C
#include <unistd.h>
|
|
#include <stdio.h>
|
|
int main(){
|
|
execve("/bin/sh",0,0);
|
|
return 0;
|
|
}
|