Is there a way to prevent inject dll to sandboxed process?

robotman

New member
For some reason, The Security Software always likes to inject DLLs into other processes, but I do not want this happed in my sandboxed process.

Is there a way to prevent inject dll to sandboxed process?

what I can do to protect my sandboxed process ?
 
You can use
Code:
ConfidentialBox=y
to shield sandboxed processes against the host. Some processes might require the template
Code:
Template=LessConfidentialBox
(which allows audiodg.exe)

This can be set in the Sandbox Options > Security Options > [Box Protection]
"Protect processes within this box from host processes" (enables the first option)
"Allow useful Windows processes access to protected processes" (allows audiodg.exe, at the moment, the template might be updated at a future point)

In the list below, you can add processes that are allowed to access sandboxed processes or deny them access.
Code:
DenyHostAccess=programname.exe,y
 
Back
Top