Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
1k views

WiX Permissions, how do I express 'Modify' in terms of DACL flags

I'm attempting to apply custom rights to a folder as part of a WiX 3.0.4318.0 installer. In terms of the Security properties UI in explorer, I want to add Modify to the rights for BUILTIN\Users. ...
2
votes
1answer
50 views

How can I prevent a process I spawn from spawning child processes?

My Windows XP/7 program launches a child process using the Windows API CreateProcess() function as part of its operations. I want to be able to "sandbox" the application in one but only one ...
2
votes
2answers
85 views

What lifetime is required of lpSecurityAttributes in CreateNamedPipe()?

How soon can I destroy the structure pointed to by lpSecurityAttributes passed to CreateNamedPipe()? Do I need a separate one for each pipe instance? The MSDN documentation for CreateNamedPipe() ...
2
votes
1answer
66 views

In CreateFile() what is the quickest way to assign Read-Only permissions to the standard user Everybody. And no permissions to anyone else

In Windows, I have an application that needs to set the access control to the user/group 'Everybody' only. And sets permissions to Read-Only. Under Linux a Simple open() call with octal 004 ...
2
votes
1answer
1k views

SACL on Services using C# || get a handle to a service that has the ACCESS_SYSTEM_SECURITY rights using C#

Anyone have any idea how to get the SACL's on a remote service using C#? I've tried numerous different methods, and basically nothing works. I can get the DACL's and SACL's on the local machine, but ...
1
vote
0answers
25 views

How to modify ACL of an object from kernel mode in Windows OS?

Is there a way to add an ACE to the DACL of a file/directory from kernel mode in windows? I'm found a reference about ZwQuerySecurityObject/ZwSetSecurityObject routines, but it is not defined in ...
1
vote
1answer
192 views

Is there a tool to view named pipe security DACL?

I tried using pipeacl and process explorer from sysinternals. pipeacl gave me an error, and sysinternals does not seem to support security for named pipes.
1
vote
1answer
902 views

Is there a way to modify a process DACL in C#

I have legacy C++ code that changes a process DACL and am trying to use the managed code classes in .NET 3.5. I found code on the web where someone created a SetAclOnServices class that extends the ...
0
votes
1answer
238 views

Win32 API CreateFile to Open File with empty DACL (Security Descriptor)

I'm using CreateFile to get a handle to a file to add ACE to its DACL. The problem is, when the file has no permissions, I get access denied error when I call the function CreateFile, I'm the OWNER of ...
0
votes
0answers
39 views

Prevent parent process from modifying your memory? (Windows)

I am trying to prevent a parent process (like a malicious loader, for example) from modifying the memory of my process. The windows API SetSecurityInfo can supposedly set the write access to your ...
0
votes
2answers
1k views

Am I using SetNamedSecurityInfo incorrectly? The ACL of my file doesn't seem to be being modified properly

I'm trying to enable and disable certain access privileges on a file. I figured out that to do this, you have to mess with DACLs. I'm using the following code to modify the file's DACL: void ...
0
votes
1answer
263 views

SetSecurityDescriptorSddlForm(string sddlForm)

I dont find any usefull website according to this API. What's the format of the String? The content? Thanks