mirror of
https://github.com/h3xduck/TripleCross.git
synced 2025-12-19 08:13:08 +08:00
9 lines
212 B
C
9 lines
212 B
C
|
|
#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;
|
||
|
|
}
|