1
0
Fork 0
out-of-tree/examples/kernel-exploit/CVE-2016-5195_test.c

10 lines
175 B
C
Raw Normal View History

2018-10-07 12:08:00 +00:00
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
/* TODO run exploit and create file with it */
2018-10-07 17:31:49 +00:00
puts("Dummy exploit test");
2018-10-07 12:08:00 +00:00
return EXIT_FAILURE;
}