Helper libraries for process injection used by CoreHook on Linux and macOS.
First, clone the repository with:
git clone https://github.com/unknownv2/CoreHook.ProcessInjection.git
cd CoreHook.ProcessInjection
Make sure you have clang
installed, then build with:
cd Linux
make
It will produce inject.so
which you will copy to the output directory of the program you build.
Then build the injection library found here by kubo.
Copy the libinjector.so
file produced by the make command to the output directory of the program you build.
Note: As described here, the Linux
injection method uses ptrace
to attach and inject the library into the target process, which is prevented on some systems by the kernel if the target process was not created by the process attempting injection.
To disable this security feature until the next reboot, use the command:
echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope
You need Xcode
installed, then build with:
cd macOS
xcodebuild -workspace CoreHook.ProcessInjection.xcworkspace -scheme inject
xcodebuild -workspace CoreHook.ProcessInjection.xcworkspace -scheme bootstrap