Tagged Questions
4
votes
2answers
2k views
What is the maximum length of a SID in SDDL format
I'm building Active Directory Authentication into my application and I am planning to link my application's internal accounts to a user's domain SID. It is easier for me to work with the string ...
3
votes
1answer
2k views
ASP.NET - Get the Principal / Relative Identifier (RID) for a DirectoryEntry / SID
I am using Active Directory in a custom MembershipProvider class to authenticate users in an ASP.NET 2.0 intranet application and associate their sid with a profile for the application.
When the ...
2
votes
3answers
1k views
VB.NET - How to Convert SID to Group Name with Active Directory
Using VB.NET, How do you Convert the sid to Group Name with Active Directory?
example: I need to get "group_test" and not "S-1-5-32-544"
The code I'm using is:
Public ReadOnly Property Groups As ...
1
vote
3answers
760 views
VB.NET - How to see if Current User's Group Name matches a specified Group Name using Active Directory Roles and SID's
I'm trying to match up a specific group name and see if it exists for the currently logged in user using Active Directory roles. If the Group Name exists for the Current User, I want that group name ...
1
vote
1answer
109 views
Comparing 2 string format SIDs
Can I compare 2 string-format SIDs for equality?
As per my understanding, a Group SID is a unique identifier in an Active Directory forest, so the string that I get by using ConvertSidToStringSid ...
0
votes
1answer
240 views
How to convert hex sid to SDDL in c#?
I am doing an LDAP query to get the distinguesd name of a User , DN contains Guid and SID sections and SID section is HEX but I need in SDDL , How can I convert a hex sid to SDDL format ?
0
votes
1answer
338 views
How to obtain all the security identifiers (SID) that match a Windows user?
Using .NET, I would like to programmatically get a list of all the groups for which a Windows user is a member as well as all other SID (Security identifiers) that represent a logged in user. The ...