Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ldap-escape

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ldap-escape

Escape functions for LDAP filters and distinguished names to prevent LDAP injection attacks.

  • 1.1.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3.6K
decreased by-10.48%
Maintainers
1
Weekly downloads
 
Created
Source

ldap-escape

Escape functions for LDAP filters and distinguished names to prevent LDAP injection attacks. Uses the escape codes from Active Directory: Characters to Escape.

Installation

npm install --save ldap-escape

Specification

escapes for search filter

CharacterEscape
*\2A
(\28
)\29
\\5C
NUL\00

escapes for distinguished names

CharacterEscape
,\,
\\\
#\#
+\+
<\<
>\>
;\;
"\"
=\=
SPC (leading or trailing)\

API

ldapEscape.filter(format [, unsafe])

Parameters:

  • format string with ${propertyName} placeholder(s) where propertyName is the name of a property of unsafe
  • unsafe an object containing values to escape and substitute in the format string.

Returns:

  • safe string (when unsafe is supplied).
  • function (when unsafe is not supplied).

ldapEscape.dn(format [, unsafe])

Parameters:

  • format string with ${propertyName} placeholder(s) where propertyName is the name of a property of unsafe
  • unsafe an object containing values to escape and substitute in the format string.

Returns:

  • safe string (when unsafe is supplied).
  • function (when unsafe is not supplied).

Examples

Escape a Search Filter

"use strict";

var ldapEscape = require('ldap-escape');

var alice = {
    uid: 1337,
    cn: 'alice',
};

var safeFilter = ldapEscape.filter('(uid=${uid})', alice);
console.log(safeFilter); // -> '(uid=1337)'

Create a Function for Escaping Search Filters

"use strict";

var ldapEscape = require('ldap-escape');

var alice = {
    uid: 1337,
    cn: 'alice',
};

var bob = {
    uid: 42,
    cn: 'bob',
};

var userEscape = ldapEscape.filter('(uid=${uid})');

var safeFilter = userEscape(alice);
console.log(safeFilter); // -> '(uid=1337)'

safeFilter = userEscape(bob);
console.log(safeFilter); // -> '(uid=42)'

Escape a DN

"use strict";

var ldapEscape = require('ldap-escape');

var alice = {
    uid: 1337,
    cn: 'alice',
};

var safeDn = ldapEscape.dn('cn=${cn},dc=test', alice);
console.log(safeDn); // -> 'cn=alice,dc=test'

Create a Function for Escaping DNs

"use strict";

var ldapEscape = require('ldap-escape');

var alice = {
    uid: 1337,
    cn: 'alice',
};

var bob = {
    uid: 42,
    cn: 'bob',
};

var dnEscape = ldapEscape.dn('cn=${cn},dc=test');

var safeDn = dnEscape(alice);
console.log(safeDn); // -> 'cn=alice,dc=test'

safeDn = dnEscape(bob);
console.log(safeDn); // -> 'cn=bob,dc=test'

Testing

npm test

License

See LICENSE.md

Keywords

FAQs

Package last updated on 16 Jan 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc