gitextract_pxdwiiwx/ ├── .github/ │ └── workflows/ │ ├── gh-pages.yml │ └── test.yml ├── .gitignore ├── Doxyfile ├── LICENSE_GPL.txt ├── LICENSE_LGPL.txt ├── Makefile ├── Makefile.win32 ├── README.md ├── cmd/ │ ├── Makefile │ ├── Makefile.win32 │ ├── macos-sign/ │ │ ├── entitlement.xml │ │ ├── genkey.sh │ │ └── sign.sh │ └── main.c ├── include/ │ └── injector.h ├── src/ │ ├── linux/ │ │ ├── Makefile │ │ ├── elf.c │ │ ├── injector.c │ │ ├── injector_internal.h │ │ ├── ptrace.c │ │ ├── remote_call.c │ │ ├── shellcode.S │ │ └── util.c │ ├── macos/ │ │ ├── Makefile │ │ ├── exc_handler.c │ │ ├── injector.c │ │ ├── injector_internal.h │ │ ├── mach.c │ │ ├── mach_exc.h │ │ ├── mach_excServer.c │ │ ├── ptrace.c │ │ ├── remote_call.c │ │ └── util.c │ └── windows/ │ ├── GNUmakefile │ ├── Makefile.win32 │ ├── injector.c │ └── injector.def ├── tests/ │ ├── Makefile │ ├── Makefile.win32 │ ├── test-library.c │ ├── test-prog.c │ └── test-target.c └── util/ ├── ya_getopt.c └── ya_getopt.h