tagged [ldap]
Some attributes don't appear to be returned on oracle ldap search
Some attributes don't appear to be returned on oracle ldap search For some reason my LDAP search doesn't seem to be returning all the attributes available for a given DN. Using the folling code: (Wher...
IIS complaining about Identity Impersonation using LDAP Authentication
IIS complaining about Identity Impersonation using LDAP Authentication I followed a tutorial to implement LDAP authentication in an ASP.NET/C# 4.0 web application. I did so in Visual Studio 2010. The ...
- Modified
- 10 Dec at 16:31
Which ldap object mapper for python can you recommend?
Which ldap object mapper for python can you recommend? I have to synchronize two different LDAP servers with different schemas. To make my life easier I'm searching for an object mapper for python lik...
How to search in multiple domains using System.DirectoryServices.AccountManagement?
How to search in multiple domains using System.DirectoryServices.AccountManagement? I have three or more domains like `main.com`, `sub.main.com`, `sub2.main.com` and etc I have a code: ``` using (Prin...
- Modified
- 5 May at 08:13
Listing All Active Directory Groups
Listing All Active Directory Groups The following code lists some, but not all, Active Directory Groups. Why? I am trying to list all security groups, distribution groups, computer groups etc. Have I ...
- Modified
- 22 Nov at 04:45
LDAP: error code 49 - 80090308: LdapErr: DSID-0C0903A9, comment: AcceptSecurityContext error, data 52e, v1db1
LDAP: error code 49 - 80090308: LdapErr: DSID-0C0903A9, comment: AcceptSecurityContext error, data 52e, v1db1 > LDAP: error code 49 - 80090308: LdapErr: DSID-0C0903A9, comment: AcceptSecurityContext e...
- Modified
- 14 Feb at 14:37
Unknown Error (0x80005000) with LDAPS Connection
Unknown Error (0x80005000) with LDAPS Connection I've been stuck for the last couple of hours on an annoying Active Directory bit. What I'm trying to accomplish is connect to an Active Directory via L...
- Modified
- 3 Apr at 22:38
How to get the current user's Active Directory details in C#
How to get the current user's Active Directory details in C# I am working on an C# and ASP.Net application, that uses Windows Authentication. i.e. in Web.config: I want to get details for the current ...
- Modified
- 20 May at 05:40
Adding and removing users from Active Directory groups in .NET
Adding and removing users from Active Directory groups in .NET I am writing the following methods to add and remove users from active directory in C#. How best to implement these methods? Here is some...
- Modified
- 26 Jan at 22:12
Using C# to authenticate user against LDAP
Using C# to authenticate user against LDAP I'm using DirectorySearcher to search for a user entry in LDAP server. ``` DirectoryEntry de = new DirectoryEntry(); de.Path = "LDAP://myserver/OU=People,O=...
- Modified
- 28 Jun at 06:5
ASP.NET 5 / MVC 6 On-Premises Active Directory
ASP.NET 5 / MVC 6 On-Premises Active Directory For earlier versions of .NET application templates i.e. 4.5.2 you can create a new Web Application, Change the Authentication to 'Work and School Account...
- Modified
- 17 Jan at 02:36
using wildcards in LDAP search filters/queries
using wildcards in LDAP search filters/queries I have very limited knowledge in AD and LDAP queries so I have a simple question on how to use wildcards. Supposed there is object with a displayName of ...
- Modified
- 5 Mar at 09:14
How can I determine if an AD group contains a given DirectoryEntry from another (trusted) domain?
How can I determine if an AD group contains a given DirectoryEntry from another (trusted) domain? I am trying to beef up my code that determines whether a user is a member of a given AD group. It esse...
- Modified
- 10 Mar at 02:44
How to get all the AD groups for a particular user?
How to get all the AD groups for a particular user? I checked [this](https://stackoverflow.com/questions/90572/how-to-get-ad-user-groups-for-user-in-asp-net) post already. But it doesn't answer my que...
- Modified
- 23 May at 12:17
How do I validate Active Directory creds over LDAP + SSL?
How do I validate Active Directory creds over LDAP + SSL? I'm trying to use the .NET 3.5 `System.DirectoryServices.AccountManagement` namespace to validate user credentials against our Active Director...
- Modified
- 1 Jun at 13:4
How do a LDAP search/authenticate against this LDAP in Java
How do a LDAP search/authenticate against this LDAP in Java I am playing with LDAP and Java search. Here's my LDIF export with a simple organization ``` version: 1 dn: dc=example,dc=com objectClass: o...
Active Directory (LDAP) - Check account locked out / Password expired
Active Directory (LDAP) - Check account locked out / Password expired Currently I authenticate users against some AD using the following code: ``` DirectoryEntry entry = new DirectoryEntry(_path, user...
- Modified
- 8 Sep at 13:25
ASP.NET Core 2.0 LDAP Active Directory Authentication
ASP.NET Core 2.0 LDAP Active Directory Authentication I have found a lot of information from the past saying that [LDAP authentication isn't enabled yet but you can get around that using third party p...
- Modified
- 5 Apr at 23:4
How to set/change Active Directory user password across domains using C# .NET?
How to set/change Active Directory user password across domains using C# .NET? I have been searching around for quite some time now how to set/change a password and revoke/restore a user but have yet ...
- Modified
- 19 Jun at 19:53
Active Directory - Check username / password
Active Directory - Check username / password I'm using the following code on Windows Vista Ultimate SP1 to query our active directory server to check the user name and password of a user on a domain. ...
- Modified
- 23 May at 12:19
Working with DirectoryServices in ASP.NET Core
Working with DirectoryServices in ASP.NET Core I am upgrading my ASP.NET Core RC1 application to RC2. I have some references to `System.DirectoryServices` and `System.DirectoryServices.AccountManageme...
- Modified
- 3 May at 19:14
How to Authenticate LDAP in .NET
How to Authenticate LDAP in .NET I would like to authenticate username and passwords for my application on a windows operating system with any directory service. For example it could be microsoft acti...
Getting all direct Reports from Active Directory
Getting all direct Reports from Active Directory I'm trying to get all the direct reports of a User through Active Directory, recursively. So given a user, i will end up with a list of all users who h...
- Modified
- 10 Mar at 03:30
Novell LDAP C# - Novell.Directory.Ldap - Has anybody made it work?
Novell LDAP C# - Novell.Directory.Ldap - Has anybody made it work? I'm trying to use the library released by Novell (Novell.Directory.Ldap). Version 2.1.10. What I've done so far: - I tested the conne...