vote up 0 vote down star

I have been requested to expose a web service for managing Active Directory Users via an intranet. I have been advised that LDAP is viewed as a security vulnerability and is not to be used.

Given this constraint, I have managed to connect via ADSI with a DirectoryEntry object like this:

DirectoryEntry de = new DirectoryEntry();
de.Path = "WinNT://TheDomain.local";
de.Username = "NTUser1";
de.Password = "pwdpwdpwd2";

I can loop through the children of this DirectoryEntry get the ones that are users. On the Users, I can see these basic properties: UserFlags, MaxStorage, PasswordAge, PasswordExpired, LoginHours, FullName, Description, BadPasswordAttempts, LastLogin, HomeDirectory, LoginScript, Profile, HomeDirDrive, Parameters, PrimaryGroupID, Name, MinPasswordLength, MaxPasswordAge, MinPasswordAge, PasswordHistoryLength, AutoUnlockInterval, LockoutObservationInterval, MaxBadPasswordsAllowed, objectSid.

There are a number of User properties that are visible in the Active Directory MMC that are not accessible from the DirectoryEntry object including: LastName, NameSuffix, Department, etc...

These other properties are all documented in msdn as being exposed by IADsUser (http://msdn.microsoft.com/en-us/library/aa746340%28VS.85%29.aspx).

1) Is LDAP actually a vulnerable protocol? More so than the ADSI (WinNT) connection shown above? LDAP seems to be pretty common for this purpose.

2) How can I retrieve/set these other properties of the User?

TIA

flag

Joel Kaplan (Co-author of "The .NET Developer's Guide to Directory Services Programming) explains that the WinNT provider simply doesn't expose a number of properties and describes 2 unsavory workarounds here: servernewsgroups.net/group/… (see his final post on the thread). So this explains the limitations of ADSI; does anyone want to weigh in on LDSI as vulnerable? – sympatric greg Sep 22 at 5:58
LDAP, not ADSI, sorry – sympatric greg Sep 22 at 6:00
Have you also been told why LDAP is considered a security vulnerability? – orsogufo Sep 22 at 7:14
I have not received a satisfactory explaination, I am getting the info 2nd hand. I am skeptical, but this is an area I don't know much about. – sympatric greg Sep 22 at 15:54
Seems like a lot of extra work to go down the path of rewriting what is already available in the existing tools. Why not look at delegated rights for different users or groups and just use the existing AD tools – benPearce Oct 12 at 7:04

1 Answer

vote up 0 vote down

LDAP will be used after all. I never did figure out what the aversion was. Thanks to all who commented.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.