17 lines
186 B
C
17 lines
186 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
void run(void)
|
|
{
|
|
fwrite("Good... Wait what?\n", 1, 19, stdout);
|
|
system("/bin/sh");
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
char buf[76];
|
|
|
|
gets(buf);
|
|
return 0;
|
|
}
|