I have a bit of a reputation as an expert on hiding data in Active Directory. So I often get questions about how to hide X, where X changes a bit depending on the scenario. Lately I’ve gotten a flurry of such questions, and it’s become obvious to me that I should blog about this.
The key to all of these questions is understanding a few key Active Directory concepts. After you understand these few things, you can quickly find a solution for whatever your X is.
Outside of understanding how to achieve your goal, you also need to understand the implications or consequences. Sometimes those consequences are enough that you may decide not to implement.
This post is divided into 3 sections:
- Explaining background concepts needed to craft a solution
- Describing potential consequences
- Describing some real-world examples & the specific solutions
Background AD Security concepts
There are three methods or approaches to hiding things in AD.
Let’s agree to throw out one out of consideration straight out of the gate. AD supports marking an attribute as confidential (see http://support.microsoft.com/kb/922836). But it doesn’t only allows this to happen on attributes which are part of the base schema. So this solution is only valid for custom attributes you’ve added, and in my experience, no one really cares about hiding their custom attributes—it’s the base ones they are interested in.
The other two involve getting a lot more familiar with AD security descriptors. As background, you have to must know where every AD object gets the ACEs it has. There are three sources:
a) inherited ACEs from objects “above” it
b) explicit ACEs that have been added to that object
c) explicit ACEs that are set upon object creation from the default security descriptor defined by the object’s schema
You are in control of all three of these sources.
To my knowledge, Stanford is the only AD implementation which has changed c). Incidentally, if you have an AD implementation that has done this I’d love to hear about it. Stanford removed the default security descriptor from the user objectclass. They’ve set some inherited ACEs, and their provisioning then adds any explicit ACEs that they desire. With the exception of domain admin accounts, they don’t hide users.
I’d encourage you to take a close look at the default security descriptor on the user objectclass. You’ll see that a group called “Pre-Windows 2000 Compatible Access” is granted Read access. This ACE and the membership of this group is therefore critical to whether or not someone can see a given user. You’ll find this is also true for computers and groups.
Another point of background. You need to understand the order of permission processing for AD. This is:
- Explicit Deny ‘Owner Rights’
- Implicit Allow Owner (change permissions + change ownership)
- Explicit Deny
- Explicit Allow
- Inherited Deny
- Inherited Allow
Note that an explicit allow overrides an inherited deny. This means that if you want to either hide an AD object or hide attributes on an AD object, you must get into the business of managing explicit ACEs–there is no easy solution of setting a single inherited ACE that will achieve your aim.
Once you understand this background, the rest is usually just implementation details. Most solutions involve:
a) either remove the troublesome explicit allow ACEs or empty the membership of the groups referenced
b) add an inherited deny ACE
Working within this framework is the usual approach most AD implementations take when they need to hide information in AD,and it’s what I’ll focus on in the other sections. I should probably also mention that back in 2005/2006 timeframe I opened a very lengthy PSS engagement to validate that there were no APIs that didn’t respect the AD ACLs.
But there is one other approach (the third I mentioned earlier). That’s to turn on the “List Object” permission in AD (see http://technet.microsoft.com/en-us/library/cc546864.aspx on how to do this). I am not as familiar with how you’d use this approach, and whether it reduces the consequences. The “List Object” permission is not on by default, and information from Microsoft indicates this is because they thought there might be performance impacts to using it at larger scales (see http://msdn.microsoft.com/en-us/library/windows/desktop/ms675746(v=vs.85).aspx for that warning). More can said about List Object mode and using this approach, but in general I don’t know about many ADs that have used it, and have no direct experience to share. If you do have experience to share, let me know and I’ll share it here. 🙂
Potential Consequences
If you start to make changes to your AD ACLs, there are some consequences which you may not have anticipated.
For example, if you hide an object such as I mentioned Stanford does with its domain admin accounts, except for the AD itself, nothing can find that object. This means that others can *not* grant that account permissions to almost anything–about the only exceptions are granting access to AD objects or membership in AD based groups. This is because as soon as the object is hidden, the “behind the scenes” username -> objectSID operation that is required for almost all Windows access control changes fails.
The University of Washington (and many other universities) hide the member attribute on some groups, and the memberOf attribute on all users. You can see what we specifically did to achieve this documented at: https://itconnect.uw.edu/wares/msinf/design/arch/group-member-privacy/. I should probably mention that we have a C# code sample (and PowerShell–which is using the same stuff) of what’s there. There are a bunch of consequences that we have to live with, and find workarounds for.
The key issue for any scenario where you hide something in AD is that applications that integrate with AD may expect that they have read access to whatever you’ve hidden.
In our case, since we’ve hidden memberOf across all users and member on some groups, we sometimes run into applications that have problems doing access control. But there are obviously options you can implement to address it. For example for our scenario, assuming you do due diligence in evaluating whether that application “leaks” PII or only uses that group membership information for access decisions, you can grant the user account running that application the permissions to read the AD groups with private membership (and/or the user objects memberOf and tokenGroupsGlobalAndUniversal attributes).
But you’ll need a process to evaluate and approve granting that access. And the process will need to somehow take into account {getting permission/letting know} the owners of the membership private groups that application X can read their info.
More recently, we’ve been struggling with the tokenGroupsGlobalAndUniversal attribute (and its partner the Windows Authorization Access Group) since Microsoft seems to be leveraging it with greater frequency in its products, but not doing a very good job documenting this dependency in product documentation. Exchange 2007+, Sharepoint 2007+ (Search security trimming), SCOM (reporting services), and maybe SCVMM all make some use of this mechanism. In some cases, for certain user attributes, you can just add an ACE granting access to whatever the special application or need is. For example, for Likewise (a unix/mac AD integration solution) we opened up the userAccountControl attribute to all computer objects. Nothing really earth shattering about that, but you do have to be willing to do a little extra work to find out what these applications need. And that may introduce unexpected friction between your AD team and project teams. And it often doesn’t help to be proactive–many times I’ve been in the situation where I was explaining to highly-paid consultants that when I previously asked them if this new application they were deploying needed read access, I was referring to the critical problem their application was now experiencing. This gets back to lack of deep understanding of how a given application makes authorization decisions.
Unfortunately, when you do want to authorize an application, there aren’t many good fine-grain solutions within AD for making that happen. For example, we end up granting an application account permissions to read all user accounts, even if that application only has a user population that is a small fraction of all of our users. We hope that Microsoft will eventually extend its Dynamic Access control capabilities to Active Directory resources to help solve this problem of granularity of access control, but that hasn’t happened yet.
In terms of hiding entire objects, I generally try to discourage others from doing it. There are alternatives. For example, while I was at Stanford, Chelsea Clinton was a student. She had a user account, but the name associated with it was not her actual name. So obfuscation. We do something similar here at the UW. A key thing to keep in mind is that you generally aren’t obligated to hide an entire object—it’s generally the case that what is considered sensitive data is a combination of attribute values in conjunction with each other. For example, in our case it’s the ability to tie a course name with a person. If there is no public way to determine that a given person has a given user account, then we wouldn’t need to hide the course group membership at all.
Real World Examples
I’ve already mentioned the UW solution. But I didn’t really explain much of the business reason behind it. So let me backtrack a bit. The US government has this law called FERPA. It allows students to control who has access to their student records. Whether a given student is taking a course or not is considered part of their student record. So group membership in a group that represent a specific course are FERPA protected information. We are obligated to limit access to business functions. Beyond this, we believe that other group memberships are confidential in nature. The nice thing about hiding the membership of groups is that they can still be referenced in ACLs and many Windows security processes work just fine without any need to directly read the membership of the relevant group or user objects. I’ve already mentioned the consequences we deal with, and there are applications that we do need to help to enable.
I’m aware of several universities in Canada which have interpreted FIPPA legislation (which is similar to FERPA) to mean that they must hide user objects. I advised against this, but I believe some of them proceeded. I haven’t heard how that worked out for them, but I’ll update this if I do.
I’ve heard from someone wanting to hide the mail attribute on a specific user. Here’s what I told them:
The mail attribute is part of the property set called “Public-Information”. An explicit ‘allow Authenticated Users: Public-Information’ is granted by default as part of the defaultSecurityDescriptor from the schema definition of the user object class. If you want to hide mail, in addition to emptying the ‘pre-windows 2000 compatible access’ group (or just removing the explicit ACE on that one user object), you’ll also need to remove the explicit Public-Information allow ACE from the relevant user object. But Public-Information includes a whole slew of attributes that frankly are really important to have read access to. So you’ll then need to re-add explicit allow ACEs to each of the attributes in that property set except for mail. That’s like 63 ACEs or so (I’m a bit behind on AD schema analysis, so that number is only good circa 2010 schema). And you’ll need to watch all future Microsoft schema changes to find new attributes they add to Public-Information and manually add those too. Doable, but yucky.
Wrap Up
So as you can see, you can hide information in AD. There is a cost to doing so that you will continue to pay beyond implementation. You’ll need to make a decision whether the value you get is worth that cost.
—
Some presentations I’ve given about this topic:
- 2009: Microsoft HiEd conference: FERPA and Active Directory: http://staff.washington.edu/barkills/ferpaAndAD.pptx
- 2007: Microsoft HiEd conference: Trusts and AD Privacy Groups: http://staff.washington.edu/barkills/HiEdConf2007FillInTopics-Barkills.pptx