Last active
September 17, 2024 04:01
-
-
Save JoeStanton/64697ebcd865d6d1145d020475d7a0f4 to your computer and use it in GitHub Desktop.
NTLM Authentication with node-fetch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint-disable no-console */ | |
const https = require('https'); | |
const fetch = require('node-fetch'); | |
const ntlm = require('httpntlm').ntlm; | |
const keepAlive = new https.Agent({ keepAlive: true }); | |
const handleErrors = (response) => { | |
if (!response.ok) { | |
throw Error(response.statusText); | |
} | |
return response; | |
}; | |
const handshake = (url, authOpts) => fetch(url, { | |
headers: { | |
Connection: 'keep-alive', | |
Authorization: ntlm.createType1Message(authOpts), | |
}, | |
agent: keepAlive, | |
}) | |
.then(response => response.headers.get('www-authenticate')) | |
.then((auth) => { | |
if (!auth) { | |
throw new Error('Stage 1 NTLM handshake failed.'); | |
} | |
const type2 = ntlm.parseType2Message(auth); | |
return ntlm.createType3Message(type2, authOpts); | |
}); | |
const url = 'http://my-ntlm-auth-endpoint.com/abc'; | |
const authOpts = { | |
username: 'AD_USERNAME', | |
password: 'AD_PASSWORD', | |
domain: 'AD_DOMAIN', | |
workstation: '', | |
}; | |
handshake(url, authOpts).then(auth => | |
fetch(url, { | |
headers: { | |
Authorization: auth, | |
'Content-Type': 'application/zip', | |
}, | |
agent: keepAlive, | |
body: deploymentPkg, | |
})) | |
.then(handleErrors) | |
.then(() => console.log(`Done`)) | |
.catch(e => console.error('Failed', e)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
what is deplymentpkg at line 50 ?