ACL's Security

  • Thread starter Thread starter Sudeep Sachdev
  • Start date Start date
S

Sudeep Sachdev

Hi
I am implementing folder security through ACL's.I need ACE for two
standard access rights named 'MODIFY' and 'LIST FOLDER CONTENTS'.
 
Hi
I am implementing folder security through ACL's.I need ACE for two
standard access rights named 'MODIFY' and 'LIST FOLDER CONTENTS'.


Hi
Let's begin with an example .listed below are the ACE strings for
folder which gives all access rights to a folder.

#define SC_CONFIG_USER_DIR_DACL L"D:"\
L"(A;OICI;GA;;;SY)"\
L"(A;OICI;GA;;;BA)"\
L"(A;OICI;GA;;;%s)"\


"GA" -- GENERIC_ALL
"GR" -- GENERIC_READ
"GW" -- GENERIC_WRITE
"GX" -- GENERIC_EXECUTE

So i want rights for 'Modify' and 'List Folder Contents' . For this a
need the corresponding ACE.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top