mirror of
https://github.com/h3xduck/TripleCross.git
synced 2025-12-16 23:33:06 +08:00
15 lines
285 B
C
15 lines
285 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <sys/types.h>
|
|
#include <dlfcn.h>
|
|
|
|
int main(int argc, char* argv[]){
|
|
|
|
void *handle = dlopen("/home/osboxes/TFG/src/helpers/injection_lib.so", RTLD_LAZY);
|
|
|
|
if(handle==NULL){
|
|
perror(dlerror());
|
|
}
|
|
|
|
return 0;
|
|
} |