1
0

Add example kernel exploit skeleton

This commit is contained in:
2018-10-07 12:08:00 +00:00
parent 97842d8753
commit 6991877493
5 changed files with 59 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
/* TODO run exploit and create file with it */
return EXIT_FAILURE;
}