'SystemProcesses' parameter of Inject Library function

c++ / delphi package - dll injection and api hooking
Post Reply
manutai
Posts: 85
Joined: Sun Aug 03, 2008 1:40 am

'SystemProcesses' parameter of Inject Library function

Post by manutai »

Hi MadShi,

We were exploring the meaning of 'systemProcesses' parameter of Inject Library function in DLL injection section.
Currently, we are passing this as TRUE.

But we don't want to inject any dll in system processes,
If we pass it as FALSE, which all processes it will exclude.

We did a quick dry run, but it was still getting injected in conhost.exe.
We want to know what is the meaning of systemProcesses?

Does it mean processes running from System Account? Or processes which are part of core OS?

Awaiting your reply.
madshi
Site Admin
Posts: 10754
Joined: Sun Mar 21, 2004 5:25 pm

Re: 'SystemProcesses' parameter of Inject Library function

Post by madshi »

Basically it's the user account the process runs under. madCodeHook looks at the process user SID to decide whether to inject or not. You can see the user name listed in the task manager.

Usually the system processes and services are excluded when you set "SystemProcesses = false", but when using stuff like "runas", things can become slightly more complicated.
Post Reply