Skip to content

Helper libraries for process injection used by CoreHook on Linux and macOS.

License

Notifications You must be signed in to change notification settings

unknownv2/CoreHook.ProcessInjection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CoreHook.ProcessInjection

Helper libraries for process injection used by CoreHook on Linux and macOS.

Building

First, clone the repository with:

git clone https://github.com/unknownv2/CoreHook.ProcessInjection.git
cd CoreHook.ProcessInjection

Linux

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

macOS

You need Xcode installed, then build with:

cd macOS
xcodebuild -workspace CoreHook.ProcessInjection.xcworkspace -scheme inject
xcodebuild -workspace CoreHook.ProcessInjection.xcworkspace -scheme bootstrap

References

About

Helper libraries for process injection used by CoreHook on Linux and macOS.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published