Fixed using timed OTP when backup codes are not allowed (#4268)

This commit is contained in:
Ylian Saint-Hilaire 2022-07-14 13:55:28 -07:00
parent 636f801bd7
commit 138fc507c8
2 changed files with 6 additions and 18 deletions

View File

@ -3330,9 +3330,6 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
// Do not allow this command if 2FA's are locked
if ((domain.passwordrequirements) && (domain.passwordrequirements.lock2factor == true)) { ws.send(JSON.stringify({ action: 'otpauth-request', err: 1 })); return; }
// Do not allow this command if backup codes are not allowed
if ((domain.passwordrequirements) && (domain.passwordrequirements.backupcode2factor == false)) { ws.send(JSON.stringify({ action: 'otpauth-request', err: 2 })); return; }
// Do not allow this command when logged in using a login token
if (req.session.loginToken != null) { ws.send(JSON.stringify({ action: 'otpauth-request', err: 3 })); return; }
@ -3361,9 +3358,6 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
// Do not allow this command if 2FA's are locked
if ((domain.passwordrequirements) && (domain.passwordrequirements.lock2factor == true)) return;
// Do not allow this command if backup codes are not allowed
if ((domain.passwordrequirements) && (domain.passwordrequirements.backupcode2factor == false)) return;
// Do not allow this command when logged in using a login token
if (req.session.loginToken != null) break;

View File

@ -2931,11 +2931,9 @@
QS('dialog').bottom = '80px';
QS('dialog').top = QS('dialog').left = QS('dialog').right = '100px';
if (d4EditEncodingVal == 1) {
// UTF8 Encoding
Q('d4editorarea').value = decode_utf8(atob(message.data));
Q('d4editorarea').value = decode_utf8(atob(message.data)); // UTF8 Encoding
} else {
// RAW Encoding
Q('d4editorarea').value = atob(message.data);
Q('d4editorarea').value = atob(message.data); // RAW Encoding
}
break;
}
@ -10717,11 +10715,9 @@
QS('dialog').bottom = '80px';
QS('dialog').top = QS('dialog').left = QS('dialog').right = '100px';
if (d4EditEncodingVal == 1) {
// UTF8 Encoding
Q('d4editorarea').value = decode_utf8(gdownloadFile.data);
Q('d4editorarea').value = decode_utf8(gdownloadFile.data); // UTF8 Encoding
} else {
// RAW Encoding
Q('d4editorarea').value = gdownloadFile.data;
Q('d4editorarea').value = gdownloadFile.data; // RAW Encoding
}
gdownloadFile = null;
} else {
@ -10767,11 +10763,9 @@
function p13editSaveBack(b, tag) {
var data;
if (d4EditEncodingVal == 1) {
// UTF8 encoding
data = new TextEncoder().encode(Q('d4editorarea').value);
data = new TextEncoder().encode(Q('d4editorarea').value); // UTF8 encoding
} else {
// RAW encoding
data = new TextEncoder().encode(decode_utf8(Q('d4editorarea').value));
data = new TextEncoder().encode(decode_utf8(Q('d4editorarea').value)); // RAW encoding
}
p13uploadFileContinue(1, [{ name: tag, size: data.byteLength, type: 'text/plain', xdata: data }]);
}