Lightweight Directory Access Protocol, an application protocol for reading and editing directories over an IP network.
44
votes
7answers
39k views
What are the differences between LDAP and Active Directory?
What are the differences between LDAP and Active Directory?
23
votes
9answers
2k views
What does LDAP solve?
I've been in touch with LDAP in many projects I've been involved in but, the truth be told, I don't really understand it. I thought it was just a person directory but after I discovered that it can ...
23
votes
8answers
14k views
Authenticating against active directory using python + ldap
How do I authenticate against AD using Python + LDAP. I'm currently using the python-ldap library and all it is producing is tears.
I can't even bind to perform a simple query:
import sys
import ...
18
votes
4answers
27k views
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.
public Object IsAuthenticated()
{
String ...
18
votes
6answers
11k views
LDAP through Ruby or Rails
I've been attempting to hook a Rails application up to ActiveDirectory. I'll be synchronizing data about users between AD and a database, currently MySQL (but may turn into SQL Server or PostgreSQL).
...
14
votes
4answers
43k views
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:
<system.web>
<authentication mode="Windows" />
</system.web>
I want to ...
14
votes
8answers
19k views
Authenticating against Active Directory with Java on Linux
I have a simple task of authenticating against Active Directory using Java. Just verifying credentials and nothing else. Let's say my domain is "fun.xyz.tld", OU path is unknown, and username/password ...
13
votes
3answers
242 views
ASP.NET refuses to respect my authority.
I've managed to impersonate a user successfully. Using the LogonUser Interop, e.g.
[DllImport("advapi32.dll", SetLastError = true)]
static extern bool LogonUser(
string principal,
...
13
votes
12answers
7k views
LDAP Java library
We are using J2EE to develop a security product that relies on LDAP for authentication and role-based user management.
The team has implemented this using the JNDI but we have run into various ...
13
votes
3answers
5k views
svnserve with LDAP
I would like to know how to setup an SVN repository with LDAP authentication.
I do not want to use Apache DAV though.
13
votes
5answers
12k views
Authenticating in PHP using LDAP through Active Directory
I'm looking for a way to authenticate users through LDAP with PHP (with Active Directory being the provider). Ideally, it should be able to run on IIS 7 (adLDAP does it on Apache). Anyone had done ...
12
votes
6answers
26k views
How do you authenticate against an Active Directory server using Spring Security?
I'm writing a Spring web application that requires users to login. My company has an Active Directory server that I'd like to make use of for this purpose. However, I'm having trouble using Spring ...
11
votes
3answers
41k views
How to write LDAP query to test if user is member of a group?
I want to write an LDAP query which tests whether a user (sAMAccountName) is a member of a particular group. Is it possible to do that so that I get either 0 or 1 result records?
I guess I can get ...
11
votes
3answers
33k views
How can I find out which server hosts LDAP on my windows domain?
I am trying develop an application (C#) to query an LDAP server. I don't know the actual server named to query - is there a way to find out using standard windows tools or something in .net?
I've ...
10
votes
1answer
225 views
How to add a course to an existing user in moodle remotely?
I'm using LDAP to create users in Moodle. However, after creating an user (adding to LDAP and running the sync script) i want to add a course to that user. How one does that? :)
9
votes
1answer
260 views
Connect to Sun LDAP with ADO
I want to connect (and get user's group) to a Sun LDAP server with a Delphi program.
I think ADSI works only with Microsoft LDAP. I try it with ADO, but I can't connect.
Can someone show some code ...
9
votes
6answers
7k views
LDAP Authentication in ASP.Net MVC
hi
I want to be able to authenticate a user by using their domain UserId and Password.
How can I do this, the default ASP.Net MVC application allows the user to register a userId and password and then ...
9
votes
1answer
1k views
Problem with custom Authentication Backend for Django
I'm having a problem with a custom Authentication Backend I've built for an Active Directory via LDAP authentication.
The problem is that from the admin login page, after it properly authenticates ...
9
votes
4answers
11k views
Authenticating user using LDAP from PHP
Hi my project is to make an module enrollment system for our university. So I contacted the IT people in my university for details to authenticate students to the system we are developin using the ...
9
votes
4answers
2k views
What is a good embeddable Java LDAP server?
I'm working on a Java web application that integrates with a few other external applications that are deployed along with it. Authentication information must be synchronized across everything and the ...
9
votes
4answers
18k views
Configuring Tomcat to authenticate using Windows Active Directory
What is the best way to configure Tomcat 5.5 or later to authenticate users from Windows Active Directory?
8
votes
3answers
384 views
Flask authentication using LDAP
I've googled an answer for this but have found nothing - maybe because it's so obvious. But I want to make sure.
What is the correct way to authenticate users using an LDAP server in a Flask web ...
8
votes
5answers
2k views
How to get all the AD groups for a particular user?
I checked this post already. But it doesn't answer my question. I want to get all the active directory groups in which a particular user is a member.
I've written the following code. But I'm not able ...
8
votes
2answers
645 views
Is LDAP obsolete?
Should I spend time implementing LDAP for authentication in my web application(php)? Is it a 'dead' technology?
If it is what are the alternatives? and, if its not, what are good resources i can ...
8
votes
4answers
504 views
Getting started with ActiveDirectory in C#
I'm working on a .NET application written in C# and WPF. In this application we will authenticate the users towards an Active Directory server. In the end we might want to support other LDAP ...
8
votes
7answers
16k views
Java LDAP - Determine if user in a given group?
We logon users to Active Directory via LDAP using the Java LDAP API. We want to enhance our logon functionality to further check if the user is in a given AD group. Does anyone know how to do this?
...
7
votes
1answer
237 views
7
votes
2answers
663 views
PHP connect via SSH tunnel to LDAP in other network
I'm developing website for my school. In that school we authenticate users via LDAP, so there was an idea to do the same via school-site. On that site everything is working perfectly, but during ...
7
votes
3answers
515 views
Preventing LDAP injection
I am working on my first desktop app that queries LDAP. I'm working in C under unix and using opends, and I'm new to LDAP. After woking a while on that I noticed that the user could be able to alter ...
7
votes
5answers
640 views
Reasons to store users' data in LDAP instead of RDBMS
It is often said that using LDAP is a good way to store data about users. That's beacause users' "directory" is hierarchical and it changes rarely. But in my opinion that doesn't exclude using RDBMS. ...
7
votes
1answer
2k views
Strange issue with System.DirectoryServices.AccountManagement.UserPrincipal.FindByIdentity
We're writing a system that allows a user to change their account password through a web application on our intranet.
At first, everything appeared to be running smoothly. During development ...
7
votes
4answers
5k views
Git with ldap authorization
Is there a way to authorize user via ldap on a git repository? Or phrased slightly differently: Is there a way to deny people pull/push if they are not in a specific ldap group?
Edit:
Yes, great idea ...
7
votes
6answers
8k views
Using LDAP (AD) for MySQL authenication
I'm trying to come up with a plan to allow users to auth with a MySQL database (many, actually) using LDAP. More specifically, ActiveDirectory. Database will likely be accessed through applications, ...
7
votes
5answers
530 views
Why aren't companies using LDAP as a central repository for other than users?
In every larger company I worked for they used LDAP as a way to access the central repository of user information, but very few have taken efforts to extend the schema to include objectClasses that ...
7
votes
3answers
3k views
What is the LDAP filter string length limit in Active Directory?
Can anyone point me to a resource that defines the maximum allowable length of the LDAP filter string in Active Directory?
6
votes
2answers
123 views
getting user details from AD is slow
Im using the following code to get a bunch of information about employees from specific departments and returning a list from AD...
Whilst it works, it appears to be quite slow, is a there more ...
6
votes
3answers
172 views
Querying an LDAP in C#
I haven't worked with an LDAP before so I am a bit lost. I need to connect to an LDAP source find a specific attribute and change it. The input for the program is a CSV file with a list of users. The ...
6
votes
2answers
507 views
C# and VB.NET LDAP Search Different?
Does anyone know if there is a difference between the implementation of the FindAll() method on the DirectorySearcher object in C# and VB.NET? From my understanding they both get "compiled" to MSIL ...
6
votes
2answers
468 views
Active Directory authentication for SaaS product
After some theoretical help on the best approach for allowing a SaaS product to authenticate users against a tenant's internal Active Directory (or other LDAP) server.
The application is hosted, but ...
6
votes
1answer
80 views
Is it safe to pass “raw” search filters to ldap_search() function?
I'm writing a PHP application that manages some LDAP entries. I have one page that shows entries from a given branch and filtering on some objectClasses (only to certain authorized users, etc. etc.).
...
6
votes
1answer
1k views
Examples using Active Directory/LDAP groups for permissions \ roles in Rails App
I was wondering how other people implemented this scenario. I have an internal rails app ( inventory management, label printing, shipping,etc). I'm rewriting security on the system, cause the old way ...
6
votes
3answers
1k views
Running Apache DS embedded in my application
I'm trying to run an embedded ApacheDS in my application. After reading http://directory.apache.org/apacheds/1.5/41-embedding-apacheds-into-an-application.html I build this:
public void ...
6
votes
3answers
1k views
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 like SQLobject/SQLAlchemy, but for LDAP.
I found the ...
6
votes
3answers
14k views
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, username, pwd);
try
{
// Bind to the native AdsObject to force ...
6
votes
1answer
1k views
Authenticating users using Active Directory in Client-Server Application
I've been asked to provide support for authenticating users against an Active Directory in our existing client server application.
At the moment a user supplies a user name and password from a ...
6
votes
3answers
9k views
LDAP: using a filter to avoid a sub OU in Active Directory
I have an application that pulls user information from an OU in Active Directory. The parameters it takes are a base for the search and a filter string.
I have an OU I want to pull information from, ...
6
votes
6answers
1k views
Could someone please explain LDAP?
I often hear things like "Can we load our employee info using LDAP?" Yet, the title "Lightweight Directory Access Protocol" makes me think of it as a protocol rather than a physical database ...
6
votes
4answers
41k views
Active Directory LDAP Query by sAMAccountName and Domain
How do you do a query of an LDAP store by sAMAccountName and Domain? What is the "domain" property named in Active Directory or LDAP terms?
This is what I have for the filter so far. I'd like to be ...
6
votes
1answer
698 views
Querying Active Directory with “SQL”?
I just wonder if anyone knows or made a wrapper around Active Directory to be able to easily query it in .net? Kind of like "LINQ-to-ActiveDirectory" or some SQL Dialect, i.e. to be able to do "SELECT ...
6
votes
5answers
685 views
Managing large user databases for single-signon
How would you implement a system with the following objectives:
Manage authentication,
authorization for
hundreds of thousands of existing users currently tightly integrated with a 3rd party ...