Lotta changes

This commit is contained in:
2019-11-03 20:38:55 -05:00
parent 38477100a6
commit e86b2999c9
7 changed files with 303 additions and 129 deletions

15
main.c Normal file
View File

@@ -0,0 +1,15 @@
#include <stdio.h>
#include "exploit/checkm8.h"
int main()
{
int status = exploit_device();
if(status == 0)
{
printf("Successfully exploited device!\n");
}
else
{
printf("Failed to exploit device\n");
}
}