Browse Source

fixup: bcrypt implementation

pull/712/head
Philip H. 1 year ago
committed by GitHub
parent
commit
e3fd6cf8b4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      src/lib/Server.js

9
src/lib/Server.js

@ -82,16 +82,9 @@ module.exports = class Server {
} }
if (req.path.startsWith('/api/') && req.headers['authorization']) { if (req.path.startsWith('/api/') && req.headers['authorization']) {
const authorizationHash = bcrypt.createHash('bcrypt') if (bcrypt.compareSync(req.headers['authorization'], bcrypt.hashSync(PASSWORD, 10))) {
.update(req.headers['authorization'])
.digest('hex');
const passwordHash = bcrypt.createHash('bcrypt')
.update(PASSWORD)
.digest('hex');
if (bcrypt.timingSafeEqual(Buffer.from(authorizationHash), Buffer.from(passwordHash))) {
return next(); return next();
} }
return res.status(401).json({ return res.status(401).json({
error: 'Incorrect Password', error: 'Incorrect Password',
}); });

Loading…
Cancel
Save