Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×
Programming

Journal QBasicer's Journal: Process Injection 1

Well, I've managed to pull a few things together and now I have a program/library type thing where I can inject a DLL into the "Start Menu" on any Windows system.

My first test was creating a DLL to inject that disabled a few keys (ALT+TAB, CTRL+ESC, ALT+ESC). Once doing that, I created a second one for fun that disabled all keys.

For you techies out there, all it does is open a HWND, write some stuff to it's address space, and call loadlibrary on that process (I didn't write that part). Once doing that, the DLL creates a hook. By injecting it into another process that's on all the time, you can effectivly create something that can't be unhooked.

This discussion has been archived. No new comments can be posted.

Process Injection

Comments Filter:

Old programmers never die, they just hit account block limit.

Working...