Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working with pretty old, big CMS (TeamSite) and it has an example how to connect it to an LDAP server. I've read the example and it work in very bizarre way. It just store a password in the "userPassword" field as expected but it does the validation manually instead of using the bind command.

This doesn't make sense to me but I can be wrong here as I haven't worked with LDAP servers before. Do you have any idea why somebody would like to manually compare the password instead of using bind?

Here is how the code looks like:

  Attribute attrPassword = attrs.get("userPassword");
  if (attrPassword.size() > 0)
  {
    String storedPassword = new String((byte[])attrPassword.get(0));

    if (password.equals(storedPassword))
    {  
      ///.....
share|improve this question

2 Answers

up vote 6 down vote accepted

That doesn't make sense to me either. The password in the LDAP shouldn't be the actual password itself, it should be a hash of the password. If you retrieve the field and do a comparison, you need to know what kind of hash it's using and hash the password you're comparing yourself in the same way. It also requires that the userPassword attribute in the LDAP be available for retrieval, which shouldn't be necessary I don't think.

In short, no... I think you should be using bind.

share|improve this answer
Seconded. I'd like to add that some LDAP implementations do not allow read access to the userPassword but only allow you to use it in queries. – Philipp Jardas Oct 26 '10 at 17:03
That would explain why I've seen the password stored in the "comment" field in another example :) – Piotr Czapla Oct 27 '10 at 8:14
Regarding the plain text password. I've found somewhere in the comments that JavaScript makes SHA1 digest from the password before submitting the form. – Piotr Czapla Oct 27 '10 at 8:21

LDAP supports a compare on passwords, but backwards from the way your code seems to be doing it.

Generally, the client trying to compare, provides the password, the LDAP server does the compare, and returns true or false.

Your code looks like it is trying to read the password from LDAP then do the compare in its process space.

This seems unlikely to work with most any LDAP server, unless the hashing method is known and the storedPassword value is prehashed.

You might consider bind vs compare if you want (or do not want) a login event to happen. A login event can be useful to track account activity. (For PCI compliance, for example, you would want people not to be deactivated due to inactivity, which would be determined by logins).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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