• Stars
    star
    192
  • Rank 202,019 (Top 4 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 11 years ago
  • Updated 5 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Node.js module to authenticate using HTTP NTLM

httpntlm

httpntlm is a Node.js library to do HTTP NTLM authentication

It's a port from the Python libary python-ntml with added NTLMv2 support.

Snyk security scan

Known Vulnerabilities

Donate

If you've benefited from this module in any way, please consider donating!

Donations:

Name amount when
Tina Lacey $ 20 June 2018

Last update: March 2023

Thank you for your support!

Install

You can install httpntlm using the Node Package Manager (npm):

npm install httpntlm

How to use

var httpntlm = require('httpntlm');

httpntlm.get({
  url: "https://someurl.com",
  username: 'm$',
  password: 'stinks',
  workstation: 'choose.something',
  domain: ''
}, function (err, res){
  if(err) return console.log(err);

  console.log(res.headers);
  console.log(res.body);
});

Options

  • url: {String} URL to connect. (Required)
  • username: {String} Username (optional, default: '')
  • password: {String} Password (optional, default: '')
  • workstation: {String} Name of workstation (optional, default: '')
  • domain: {String} Name of domain (optional, default: '')
  • agent: {Agent} In case you want to reuse the keepaliveAgent over different calls (optional)
  • headers: {Object} Add in custom headers. The following headers are used by NTLM and cannot be passed: Connection, Authorization (optional)

if you already got the encrypted password,you should use this two param to replace the 'password' param.

  • lm_password {Buffer} encrypted lm password.(Required)
  • nt_password {Buffer} encrypted nt password. (Required)

You can also pass along all other options of httpreq, including custom headers, cookies, body data, ... and use POST, PUT or DELETE instead of GET.

NTLMv2

When NTLMv2 extended security and target information can be negotiated with the server, this library assumes the server supports NTLMv2 and creates responses according to the NTLMv2 specification (the actually supported NTLM version cannot be negotiated). Otherwise, NTLMv1 or NTLMv1 with NTLMv2 extended security will be used.

Advanced

pre-encrypt the password

var httpntlm = require('httpntlm');
var ntlm = httpntlm.ntlm;
var lm = ntlm.create_LM_hashed_password('Azx123456');
var nt = ntlm.create_NT_hashed_password('Azx123456');


httpntlm.get({
  url: "https://someurl.com",
  username: 'm$',
  lm_password: lm,
  nt_password: nt,
  workstation: 'choose.something',
  domain: ''
}, function (err, res){
  if(err) return console.log(err);

  console.log(res.headers);
  console.log(res.body);
});

Use the NTLM-functions yourself

If you want to use the NTLM-functions yourself, you can access the ntlm-library like this (https example):

var ntlm = require('httpntlm').ntlm;
var async = require('async');
var httpreq = require('httpreq');
var HttpsAgent = require('agentkeepalive').HttpsAgent;
var keepaliveAgent = new HttpsAgent();

var options = {
  url: "https://someurl.com",
  username: 'm$',
  password: 'stinks',
  workstation: 'choose.something',
  domain: ''
};

async.waterfall([
  function (callback){
    var type1msg = ntlm.createType1Message(options);

    httpreq.get(options.url, {
      headers:{
        'Connection' : 'keep-alive',
        'Authorization': type1msg
      },
      agent: keepaliveAgent
    }, callback);
  },

  function (res, callback){
    if(!res.headers['www-authenticate'])
      return callback(new Error('www-authenticate not found on response of second request'));

    var type2msg = ntlm.parseType2Message(res.headers['www-authenticate']);
    var type3msg = ntlm.createType3Message(type2msg, options);

    setImmediate(function() {
      httpreq.get(options.url, {
        headers:{
          'Connection' : 'Close',
          'Authorization': type3msg
        },
        allowRedirects: false,
        agent: keepaliveAgent
      }, callback);
    });
  }
], function (err, res) {
  if(err) return console.log(err);

  console.log(res.headers);
  console.log(res.body);
});

Download binary files

httpntlm.get({
  url: "https://someurl.com/file.xls",
  username: 'm$',
  password: 'stinks',
  workstation: 'choose.something',
  domain: '',
  binary: true
}, function (err, response) {
  if(err) return console.log(err);
  fs.writeFile("file.xls", response.body, function (err) {
    if(err) return console.log("error writing file");
    console.log("file.xls saved!");
  });
});

Pass in custom headers

httpntlm.get({
  url: "http://localhost:3000",
  username: 'm$',
  password: 'stinks',
  workstation: 'choose.something',
  domain: 'somedomain',
  headers: {
    'User-Agent': 'my-useragent'
  }
}, function (err, res){
  if(err) return console.log(err);

  console.log(res.headers);
  console.log(res.body);
});

More examples

You can find more examples on Snyk.

More information

Tests

Running tests in an open source package is crucial for ensuring the quality and reliability of the codebase. When you submit code changes, it's essential to ensure that these changes don't break existing functionality or introduce new bugs.

Tests are written with Mocha.

To run tests, simply run:

npm test

Note that the integration tests start up a simple express.js server with NTLM support. You might see some extra debugging info from that server when running integration tests.

License (MIT)

Copyright (c) Sam Decrock https://github.com/SamDecrock/

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

node-tcp-hole-punching

Node.js script to demonstrate TCP hole punching through NAT
JavaScript
72
star
2

node-udp-hole-punching

Node.js script to demonstrate UDP hole punching through NAT
JavaScript
54
star
3

node-httpreq

a node.js library to do HTTP(S) requests the easy way
JavaScript
51
star
4

node-pushover

node.js pushover module for https://pushover.net/api
JavaScript
37
star
5

pdf2table

pdf2table is a node.js library that attempts to extract tables from a pdf.
JavaScript
34
star
6

node-xmlreader

An xml reader for node that uses a different approach than all other xml readers/parsers out there
JavaScript
26
star
7

discount-code-bruteforcer

Small script to brute force discount codes
JavaScript
15
star
8

DLNA-downloader

Node.js application to download DLNA content
Python
12
star
9

node-cve-2018-4407

Node.js PoC exploit code for CVE-2018-4407
JavaScript
11
star
10

node-download-complete-page

Node module to download a complete html webpage
JavaScript
6
star
11

rc-switch-pi-examples

Examples showing how to use rc-switch on a Raspberry Pi
C++
6
star
12

wpedemo

Simple Node.js demo application that runs on a Pi with WPE WebKit
JavaScript
4
star
13

face-tracking-js

Project aiming at tracking facial expressions and mapping them on a 2D avatar
JavaScript
4
star
14

stepmania5-http-post-scores

Fork of Stepmania 5 (Xcode4.4 branch) that adds posting scores to a http webserver
C
2
star
15

fdcdomoweb

Domotica webinterface
JavaScript
2
star
16

raspberry-lights

Using a Raspberry PI, node.js, some php and the Pusher service to control 2 simple LED lights
PHP
2
star
17

multiplayermario

Connect some USB NES gamepads and race for the first to reach the finish
JavaScript
1
star
18

easy-agresso

Simple web interface for the overcomplexed Agresso Business World here at work :p
JavaScript
1
star
19

node-leitzicon

A node.js module to print labels using the Leitz Icon printer.
JavaScript
1
star
20

docker-sshserver

Dockerfile for https://hub.docker.com/r/samdecrock/sshserver
Shell
1
star
21

node-tcp-spy

TCP Spy is a simple node.js library to intercept raw TCP connections. Mostly used to reverse engineer TCP protocols.
JavaScript
1
star
22

ibanbicbulk.be

Converts a series of bban numbers to iban and bic numbers
JavaScript
1
star
23

node-google-io-watcher

Node.js script to watch the #io13 feed for new messages
JavaScript
1
star
24

node-png2lwxl

Node version of pbm2lwxl using png as input format.
JavaScript
1
star
25

countdownclock-with-controller

A countdown clock with a control page to play extra sounds
JavaScript
1
star
26

node-google-io-hammer

Some realy simple peace of code to hammer the google I/O registration endpoint.. writting while registration was open :p
JavaScript
1
star