mirror of
https://github.com/rofl0r/proxychains-ng.git
synced 2025-09-02 13:56:59 +00:00
get own_dir by using dladdr() instead of argv[0]
This commit is contained in:
2
Makefile
2
Makefile
@ -86,7 +86,7 @@ $(LDSO_PATHNAME): $(LOBJS)
|
|||||||
-shared -o $@ $(LOBJS) $(SOCKET_LIBS)
|
-shared -o $@ $(LOBJS) $(SOCKET_LIBS)
|
||||||
|
|
||||||
$(ALL_TOOLS): $(OBJS)
|
$(ALL_TOOLS): $(OBJS)
|
||||||
$(CC) src/main.o src/common.o $(USER_LDFLAGS) -o $(PXCHAINS)
|
$(CC) src/main.o src/common.o $(USER_LDFLAGS) $(LIBDL) -o $(PXCHAINS)
|
||||||
|
|
||||||
|
|
||||||
.PHONY: all clean install install-config install-libs install-tools
|
.PHONY: all clean install install-config install-libs install-tools
|
||||||
|
@ -19,6 +19,11 @@
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
|
|
||||||
|
#ifdef IS_MAC
|
||||||
|
#define _DARWIN_C_SOURCE
|
||||||
|
#endif
|
||||||
|
#include <dlfcn.h>
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
|
||||||
static int usage(char **argv) {
|
static int usage(char **argv) {
|
||||||
@ -111,7 +116,9 @@ int main(int argc, char *argv[]) {
|
|||||||
|
|
||||||
// search DLL
|
// search DLL
|
||||||
|
|
||||||
set_own_dir(argv[0]);
|
Dl_info dli;
|
||||||
|
dladdr(own_dir, &dli);
|
||||||
|
set_own_dir(dli.dli_fname);
|
||||||
|
|
||||||
i = 0;
|
i = 0;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user