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

httpntlm

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

httpntlm - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

24

package.json
{
"name": "httpntlm",
"version": "1.0.0",
"description": "httpntlm is a Node.js library to do HTTP NTLM authentication",
"version": "1.0.1",
"dependencies": {

@@ -8,3 +9,22 @@ "httpreq": "~0.3.4",

"agentkeepalive": "~0.1.5"
}
},
"author": {
"name": "Sam Decrock",
"url": "https://github.com/SamDecrock/"
},
"bugs": {
"url": "https://github.com/SamDecrock/node-http-ntlm/issues"
},
"engines": { "node": ">= 0.8.0" },
"repository": {
"type": "git",
"url": "git://github.com/SamDecrock/node-http-ntlm.git"
},
"main": "./httpntlm",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
]
}

23

README.md

@@ -1,7 +0,6 @@

node-http-ntlm
==============
# httpntlm
Node.js module to authenticate using HTTP NTLM
__httpntlm__ is a Node.js library to do HTTP NTLM authentication
Ported to JavaScript from python-ntlm: https://code.google.com/p/python-ntlm/ (currently one of the hardest things I did, but I like the result)
It's a port from the Python libary [python-ntml](https://code.google.com/p/python-ntlm/)

@@ -14,3 +13,3 @@ ## Install

__How to use__
## How to use

@@ -22,4 +21,4 @@ ```js

url: "https://someurl.com",
username: 'you',
password: 'stink',
username: 'm$',
password: 'stinks',
workstation: 'choose.something',

@@ -33,2 +32,10 @@ domain: ''

});
```
```
Currently only supports __https__
## More information
* [python-ntlm](https://code.google.com/p/python-ntlm/)
* [NTLM Authentication Scheme for HTTP](http://www.innovation.ch/personal/ronald/ntlm.html)
* [LM hash on Wikipedia](http://en.wikipedia.org/wiki/LM_hash)
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