Socket
Socket
Sign inDemoInstall

ldapauth

Package Overview
Dependencies
15
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.2.0 to 2.2.1

8

CHANGES.md
# node-ldapauth Changelog
## 2.2.1
- Fix a bug where ldapauth `authenticate()` would raise an example on an empty
username.
## 2.2.0
- Update to latest ldapjs (0.5.6) and other deps.
Note: This makes ldapauth only work with node >=0.8 (because of internal dep
in ldapjs 0.5).

@@ -7,0 +15,0 @@

3

lib/ldapauth.js

@@ -111,2 +111,5 @@ /**

var self = this;
if (!username) {
return callback("empty username");
}
self._adminBind(function (err) {

@@ -113,0 +116,0 @@ if (err)

3

package.json
{
"name": "ldapauth",
"version": "2.2.0",
"version": "2.2.1",
"main": "./lib/ldapauth.js",

@@ -16,2 +16,3 @@ "description": "Authenticate against an LDAP server",

},
"engines": ["node >=0.8.0"],
"dependencies": {

@@ -18,0 +19,0 @@ "ldapjs": "0.5.6",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc