Research
Security News
Malicious PyPI Package ‘pycord-self’ Targets Discord Developers with Token Theft and Backdoor Exploit
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
@elastic.io/ntlm-client
Advanced tools
A node.js NTLM client with support for NTLM and NTLMv2 authentication. Continuation of ntlm-client and node-ntlm-client.
A node.js NTLM client with support for NTLM and NTLMv2 authentication
npm install ntlm-client
const ntlmRequest = require('@elasticio/ntlm-client').request;
(async function makeExampleRequest() {
const { response } = await ntlmRequest({
username: 'MYDOMAIN\SomeUser',
password: 'P@$$word1!',
uri: 'https://api.someservice.com',
method: 'POST',
request: {
json: true, // Example of parameter passed to request.js
body: {
foo: 'bar'
},
headers: {
Date: 'Today'
}
}
});
console.log(`Received status code: ${response.statusCode} Body: ${response.body}`);
})()
A convenience function that tries to authenticate against a given URL using the request
module.
If NTLM is not supported, it will fallback to Basic Auth.
options
an object holding below options for the authentication process:
uri
the target URLmethod
the HTTP verbusername
password
request
this is optional. An object that holds options that should be passed to the request instancePromise
when resolved, the request
instance, the result and the response body will be passedCreates a type 1 NTLM message to initialize the NTLM handshake
workstation
Optional. If undefined
, os.hostname()
will be usedtarget
Optional. This is the domain/host we are trying to authenticate against.string
Complete NTLM string that should be sent to the server in the Authentication
headerDecodes a type 2 message received from the server including the NTLM challenge
str
Either the base64 encoded type 2 message, or the complete WWW-Authenticate
header, or an object containg the response headers (http.IncomingMessage
)type2Message
An object containing the following information about the received type 2 message: flags
, encoding
, version
, challenge
, targetName
, targetInfo
.Creates a type 3 message based on the type 2 message received from the server.
type2Message
The decoded type 2 message objectusername
password
workstation
Optional. If falsy, os.hostname()
will be usedtarget
Optional. If falsy, the target name from the type 2 message will be used. This is the domain/host we are trying to authenticate against.string
Complete NTLM string that should be sent to the server in the Authentication
header1.0.0 (March 5, 2020)
Accept
headerFAQs
A node.js NTLM client with support for NTLM and NTLMv2 authentication. Continuation of ntlm-client and node-ntlm-client.
We found that @elastic.io/ntlm-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 17 open source maintainers collaborating on the project.
Did you know?
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.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.