Began restructuring project to include payload building

This commit is contained in:
2019-12-07 15:23:21 -05:00
parent 889ff825cd
commit 45caec0b07
14 changed files with 24 additions and 14 deletions

13
checkm8_remote/main.c Normal file
View File

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