pox/examples/victim.c
alemi fab29c5423
feat: search for symbols in exported but also elf
this allows finding non-exported symbols on non-stripped elfs. requires
being able to read the executable that created this process. also added
example code in C to target with this tool
2023-03-30 01:38:21 +02:00

34 lines
602 B
C

#define _GNU_SOURCE
#include <dlfcn.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
int load_secret();
int main(int argc, char** argv) {
int secret;
Dl_info info;
if (argc > 1 && dladdr(dlopen, &info)) {
printf("> dlopen addr: %p\n", info.dli_saddr);
}
puts("> working...");
srand(42);
while (1) {
printf("> generating secret ");
fflush(stdout);
for (int i = 0; i < 20; i++) {
usleep(200 * 1000);
printf(".");
fflush(stdout);
}
secret = load_secret();
printf(" saved!\n");
}
}
int load_secret() {
return rand();
}