node-ldapjs icon indicating copy to clipboard operation
node-ldapjs copied to clipboard

LDAP Client and Server API for node.js

Results 127 node-ldapjs issues
Sort by recently updated
recently updated
newest added

When making a request to an ldapjs based server that includes a selection of attributes, and any of these attributes contain upper case letters, these attributes will not be included...

I'm following the [guide](http://ldapjs.org/guide.html) but I don't understand why I get an Operations error (1) when adding a new entry with ldapadd. ```sh pi@radiuspi:~/code/ldap $ sudo ldapadd -H ldap://localhost:1389 -x...

I think there issue it's a bit old on #873, but somehow I met a similar problems when I tried to write an helper (service) in NestJS. This issue not...

EDIT: My environment osixia/openldap + ldapjs:3.0.5 the error is happening on a LDAP SEARCH query ------ File `./lib/client/client.js` Line 1260 ``` let event = msg.constructor.name // Generate the event name...

I want to match subject and get output "true" but getting "false" in ldapjs version 3.0.0, it was "true" in ldapjs version 2.3.3. import ldapjs from 'ldapjs'; function subjectMatches(actual, expected)...

Due to the 3.0.6 update, I conducted a password policy test, and I referred to the code at the following URL: [issue-946.test.js](https://github.com/ldapjs/node-ldapjs/blob/master/test-integration/client/issue-946.test.js) [Response Control (for Password Policy)](https://datatracker.ietf.org/doc/html/draft-behera-ldap-password-policy-11#name-response-control) For expired password...

Hello, my ldapjs implemented LDAP server crashed with following backtrace ``` node:events:493 throw er; // Unhandled 'error' event ^ VError: Parser error for undefined:undefined: options.value must be a Buffer or...

bug

const ldapLogin = async ( request: Request, response: Response, next: NextFunction ) => { const { email, password } = request.body; const userDN = `uid=${email},${ldapConfig.userBaseDN}`; const SearchOptions: SearchOptions = {...

Hi Team, I have a requirement to create a user and set its default password using Node.js. I'm encountering an issue while attempting to set the password after creating the...

With the release of [v3.0.0](https://github.com/ldapjs/node-ldapjs/releases/tag/v3.0.0) we are closing and locking all outstanding issues and pull requests (except for one or two notable exceptions). We are doing this in order to...

discussion