fix: remove empty bytes from password buffer in StaticAuth #116

master
simon 3 years ago
parent 5290ac37c0
commit a06026f887

@ -16,7 +16,7 @@ export class UserPasswordPacketHandler implements IPacketHandler {
const username = packet.attributes['User-Name'];
let password = packet.attributes['User-Password'];
if (typeof password !== 'string' && password.indexOf(0x00) > 0) {
if (Buffer.isBuffer(password) && password.indexOf(0x00) > 0) {
// check if there is a 0x00 in it, and trim it from there
password = password.slice(0, password.indexOf(0x00));
}

Loading…
Cancel
Save