10 lines
175 B
C
10 lines
175 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
/* TODO run exploit and create file with it */
|
|
puts("Dummy exploit test");
|
|
return EXIT_FAILURE;
|
|
}
|