From a2064fd6a702733bf5e0823902060b786a6f2c15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Zmys=C5=82owski?= Date: Mon, 14 Jul 2025 11:49:47 +0200 Subject: [PATCH] Update ntlm.js Suppression for the MD4 usage - this is a part of NTLM v1 specification --- api/opensource/node-http-ntlm/ntlm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/opensource/node-http-ntlm/ntlm.js b/api/opensource/node-http-ntlm/ntlm.js index 5a776c32..d349af46 100644 --- a/api/opensource/node-http-ntlm/ntlm.js +++ b/api/opensource/node-http-ntlm/ntlm.js @@ -338,7 +338,7 @@ function binaryArray2bytes(array){ function create_NT_hashed_password_v1(password){ var buf = new Buffer(password, 'utf16le'); - var md4 = crypto.createHash('md4'); + var md4 = crypto.createHash('md4'); // CodeQL [SM04514] Required by NTLM v1 specification md4.update(buf); return new Buffer(md4.digest()); }