node-ldapjs
node-ldapjs copied to clipboard
LDAP Client and Server API for node.js
Hello, I am using a ppolicy setup and I am trying to get more information out of a client.bind operation. For example I get the same error msg for a...
Perhaps set some flag on the SearchRequest when '+' is observed in the attribute list?
I understand that attribute names are case insensitive, but with other LDAP systems you can put in mixed case and get out mixed case. With ldapjs, the attribute name is...
Noticed that when I query a group for the member attribute, the member attribute is returned as a string if there is only one member, and as an array if...
I was just going over the code in ldapjs version 2.3.3 In file **lib/client/request-queue/enqueue.js** there are lines around line 17 `if (this._queue.length >= this.size || this._frozen) { return false }`...
As requested in the clean slate notification, I'm opening a new issue. Feature request: Implement SASL / GSSAPI binding. There are a couple of TODOs in the code regarding this.
I'm encountering issues with LDAP Result Code 118 (CANCELED) using ldapjs version 3.0.7. The error manifests as follows: ``` // LDAPJS TEST ERR 118 undefined /var/www/html/dev/dashboard-backend/node_modules/ldapjs/lib/errors/index.js:100 return new E(res.errorMessage ||...
I've set up an LDAP server in Node.js using the ldapjs library, and it responds perfectly when using 'ldapsearch' as a tool. I attempted to configure FreeRADIUS to contact the...
While implementing ldap authentication against AD with ldapjs, I have noticed the following : When searching for a user with non-ascii characters, I noticed AD returns the DN encoded. example...
### Actual result ```javascript > require('ldapjs').parseDN('cn=проба,ou=пера,dc=example,dc=com').toString() 'cn=\\d0\\bf\\d1\\80\\d0\\be\\d0\\b1\\d0\\b0,ou=\\d0\\bf\\d0\\b5\\d1\\80\\d0\\b0,dc=example,dc=com' ``` ### Expected result ```javascript > require('ldapjs').parseDN('cn=проба,ou=пера,dc=example,dc=com').toString() 'cn=проба,ou=пера,dc=example,dc=com' ``` ## In wild life At least microsoft AD supports (and returns) utf8 DNs.