👡🍟 Checkpoint

./server.js:933874/15281
This commit is contained in:
Glitch (hello-express) 2019-11-03 16:10:01 +00:00
parent 2f679e086b
commit 54536d3edd
1 changed files with 3 additions and 2 deletions

View File

@ -47,7 +47,8 @@ app.get("/status", (req, res) => {
// parse login and password from headers
const b64auth = (req.headers.authorization || "").split(" ")[1] || "";
const [_, login, password] = new Buffer(b64auth, 'base64').toString().match(/(.*):(.*)/) || []; // slightly modified as we use : in username
const [_, login, password] =
new Buffer(b64auth, "base64").toString().match(/(.*):(.*)/) || []; // slightly modified as we use : in username
if (
!login ||
@ -55,7 +56,7 @@ app.get("/status", (req, res) => {
login !== auth.login ||
password !== auth.password
) {
console.log(login, password)
console.log(login, password);
res.set("WWW-Authenticate", 'Basic realm="Authentication required"');
return res.status(401).send("Authentication required.");
}