Added new helper program to be used with the execve hijacking module

This commit is contained in:
h3xduck
2022-02-05 19:00:25 -05:00
parent 41ef733520
commit 05baa8fb8a
3 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#include <stdio.h>
int main(int argc, char* argv[]){
printf("Hello world from execve hijacker\n");
for(int ii=0; ii<argc; ii++){
printf("Argument %i is %s\n", ii, argv[ii]);
}
return 0;
}