Following scenario:
A random process (A) with full privileges (including enabled debug privilege) opens a handle to another process (B) with certain access rights (e.g. read and write access, but that's irrelevant here).
After that another fully privileged process (C) starts. Its objective is to protect process B from any outside access.
Now, to achieve this, you generally use SetEntriesInAcl() and SetSecurityInfo() to deny access in process B's DACL and call AdjustTokenPrivileges() to disable/remove process A's debug privilege (which automatically grants all access). The problem is, and I thoroughly tested this, that while this works perfectly for subsequent OpenProcess() calls (error: access denied), process A's handle to process B is still valid after that and calls to e.g. ReadProcessMemory() still succeed.
The question is, what is needed to achieve this? I suppose I need to close/destroy existing security objects/descriptors of/for process B, but right now I have no idea how to do that. In case someone wonders why I don't simply run process C at system boot, unfortunately in this case that's not possible (and I guess it still wouldn't be 100% reliable due to race conditions, etc.).
Thanks a lot in advance for your help! :)