Click here to Skip to main content
15,881,715 members
Articles / Programming Languages / C#
Article

Access Control List in C# 2.0

Rate me:
Please Sign up or sign in to vote.
3.00/5 (6 votes)
5 Oct 2006CPOL1 min read 53.4K   772   20   2
A tool to enumerate all access control list entries
Sample Image - ADPermissions.jpg

Introduction

I have created an ACL Viewer utility which does the following:

  1. Resolve Sid in current domain and trusted domains only. Currently it does not resolve in the forest and few well-know sids
  2. Show all the permissions assigned to a Trustee
  3. Show inheritance information
  4. Resolve all the object-guids ==> property, property-set and object types

Microsoft has developed a very good architecture to get the data from Active Directory in .NET. However I did not find a good document on the same. I did some R&D and created an ACL viewer which I required to test my effective permission algorithm.

I will talk about effective permission in my next article. This is just the beginning for permission in active directory.

Algorithm

Input

  1. LDAP path of the Object
  2. Credentials => UserName and Password

Output

  • List all the permissions assigned on the given object

Algorithm

  1. Bind to the object using the credentials ==> Use DirectoryEntry class for this
  2. Get the security information from the object ==> Use ActiveDirectorySecurity class for this
  3. Get the Security Descriptor from the security information ==> In SDDL format (basically it's a string format)
  4. Get all the access rules, access control entries ==> Use AuthorizationRuleCollection class for this
  5. For each rule, resolve the SID and object-Type
  6. Display all the entries to the user

Code

C#
DirectoryEntry objDE = new DirectoryEntry(adPath, credUser, credPassword);
ActiveDirectorySecurity adSecurity = objDE.ObjectSecurity;
string sd = adSecurity.GetSecurityDescriptorSddlForm(AccessControlSections.All);
AuthorizationRuleCollection rules = 
    adSecurity.GetAccessRules(true, true, typeof(NTAccount);

NTAccount class resolves SIDs in the current domain. I have used ::LookupAccountSid to resolve SIDs in trusted domains and to resolve well-known SIDs.

To resolve Object-Types, I get all the object-types from the active directory and cache them. The code is really simple and you can figure it out very easily.

If you still have problems, please contact me at SumitKJain@hotmail.com.

History

  • 6th October, 2006: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
India India
Sumit Jain,Software Professional.

Comments and Discussions

 
QuestionHow can get Owner property of user in active diectory ? Pin
Member 36916288-Feb-12 22:48
Member 36916288-Feb-12 22:48 
QuestionPermissions Pin
Jonathan Mercer28-Mar-07 4:37
Jonathan Mercer28-Mar-07 4:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.