fixed virustotal check failure

This commit is contained in:
antelle 2020-12-30 12:44:48 +01:00
parent 9d5e7be105
commit 18775e3cea
No known key found for this signature in database
GPG Key ID: 63C9777AAB7C563C
2 changed files with 15 additions and 14 deletions

View File

@ -83,7 +83,8 @@ Object.defineProperty(SecureInput.prototype, 'value', {
let ch; let ch;
let bytes; let bytes;
for (let i = 0; i < len; i++) { for (let i = 0; i < len; i++) {
ch = String.fromCharCode(pseudoValue.charCodeAt(i) ^ salt[i]); const pseudoCharCode = pseudoValue.charCodeAt(i);
ch = String.fromCharCode(salt[i] ^ pseudoCharCode);
bytes = kdbxweb.ByteUtils.stringToBytes(ch); bytes = kdbxweb.ByteUtils.stringToBytes(ch);
for (let j = 0; j < bytes.length; j++) { for (let j = 0; j < bytes.length; j++) {
valueBytes[byteLength] = bytes[j] ^ saltBytes[byteLength]; valueBytes[byteLength] = bytes[j] ^ saltBytes[byteLength];

View File

@ -260,12 +260,7 @@ class StorageWebDav extends StorageBase {
if (opts.password) { if (opts.password) {
const fileId = file.uuid; const fileId = file.uuid;
const password = opts.password; const password = opts.password;
let encpass = ''; const encpass = this._xorString(password, fileId);
for (let i = 0; i < password.length; i++) {
encpass += String.fromCharCode(
password.charCodeAt(i) ^ fileId.charCodeAt(i % fileId.length)
);
}
result.encpass = btoa(encpass); result.encpass = btoa(encpass);
} }
return result; return result;
@ -276,13 +271,18 @@ class StorageWebDav extends StorageBase {
if (opts.encpass) { if (opts.encpass) {
const fileId = file.uuid; const fileId = file.uuid;
const encpass = atob(opts.encpass); const encpass = atob(opts.encpass);
let password = ''; result.password = this._xorString(encpass, fileId);
for (let i = 0; i < encpass.length; i++) { }
password += String.fromCharCode( return result;
encpass.charCodeAt(i) ^ fileId.charCodeAt(i % fileId.length) }
);
} _xorString(str, another) {
result.password = password; let result = '';
for (let i = 0; i < str.length; i++) {
const strCharCode = str.charCodeAt(i);
const anotherCharCode = another.charCodeAt(i % another.length);
const resultCharCode = strCharCode ^ anotherCharCode;
result += String.fromCharCode(resultCharCode);
} }
return result; return result;
} }