DLL Injection
com.etdon.winj.facade.hack.inject
An injector can be used to load and run arbitrary dynamic-link libraries in foreign processes. In order to achieve this, various techniques and design flaws related to the target platform have to be taken advantage off. Below you can find details regarding how to use each of the currently implemented strategies separated into tabs:
final LoadLibInjector injector = new LoadLibInjector(nativeContext);
final int result = injector.inject(pid, dllPath);
if (result == InjectionResult.SUCCESS) {
...
}
Last updated