feat(crypto): PBKDF2 iterations 100k → 600k with transparent re-encryption
Bumps the PBKDF2-SHA256 iteration count from 100,000 (OWASP 2017) to
600,000 (OWASP 2023). 6x slowdown on every brute-force attempt against
either the server-stored auth hash OR the AES-GCM ciphertext of the
entries — both currently use the same PBKDF2 output (see KNOWN ISSUE
below for why that's another problem to fix later).
Schema
======
users.kdf_iterations INTEGER DEFAULT 100000
Per-user iteration count. Legacy rows predating the column default
to 100k via the DEFAULT clause. New accounts insert 600k explicitly.
Migration flow
==============
Atomic from the user's perspective. No partial state ever persisted.
1. /login (or /reauth):
server reads users.kdf_iterations and verifies the master pw at
that count. Login succeeds at the legacy strength. Response now
includes kdfIterations (current) and optionally kdfMigration =
{ target: 600000 } when an upgrade is recommended.
2. Client:
derives the AES key at the OLD count to decrypt current entries
(state.cryptoKey). enterApp() loads the vault normally.
3. runKdfMigration() (background, after enterApp):
- derives the NEW key at target iterations
- decrypts every entry with the old key
- re-encrypts every entry with the new key + fresh random IVs
- POSTs { masterPassword, entries: [...] } to /migrate-kdf
4. /migrate-kdf (new endpoint):
- verifies the master pw against the OLD hash
- in a single transaction:
UPDATE users SET password_hash = pbkdf2(pw, salt, 600k),
kdf_iterations = 600000
UPDATE vault_entries SET encrypted_password, iv (per entry)
- on any failure: ROLLBACK. User stays at legacy config, retries
at next login. No half-migrated state possible.
5. Client (post-commit):
swaps state.cryptoKey to the new key, persists it, updates the
cached ciphertext in state.entries, shows a "Vault security
upgraded" toast.
Idempotency: server's /migrate-kdf short-circuits with "Already at
target" if users.kdf_iterations >= PBKDF2_ITERATIONS_TARGET.
Race conditions: two concurrent migrations from two tabs both
recompute the SAME new key (deterministic PBKDF2). The losing
transaction's entries get re-encrypted with the winning one's IVs,
but both clients can decrypt because the keys are identical.
KNOWN ISSUE (not fixed by this commit)
======================================
The server's password_hash IS the client's AES key, in hex form —
both sides compute PBKDF2(pw, salt, iters) and store/use the same
32 bytes. This means a stolen vault.db gives the attacker the
encryption key directly, without needing to brute-force anything.
The 100k → 600k bump still helps because the AES-GCM ciphertext
itself is also a brute-force target, but the architectural fix
(server stores SHA256(aes_key) instead of aes_key in hex) is a
separate concern that needs its own migration.
Other changes
=============
- HandleRegister: new accounts insert kdf_iterations=600000.
- HandleReauth: response upgraded to JSON with kdfIterations
+ optional kdfMigration. Unlock path now also triggers migration.
- SendAuthSuccess: extended signature, all callers updated.
- deriveKey(pwd, saltHex, iterations) in app.js: iterations param
required, defaults to 100000 for back-compat with any legacy caller.
This commit is contained in:
@@ -26,7 +26,15 @@ uses
|
||||
PM.Session, PM.RateLimit, PM.Audit;
|
||||
|
||||
const
|
||||
// Legacy iteration count from the initial 2025 release. Kept around to
|
||||
// verify pre-migration login attempts (each user row records its own
|
||||
// value in users.kdf_iterations). New code paths should reference
|
||||
// PBKDF2_ITERATIONS_TARGET instead.
|
||||
PBKDF2_ITERATIONS = 100000;
|
||||
// Current target. New accounts hash at this strength; legacy accounts
|
||||
// are transparently upgraded at next login (see HandleLogin/HandleReauth).
|
||||
// Value picked per OWASP 2023 PBKDF2-SHA256 recommendation.
|
||||
PBKDF2_ITERATIONS_TARGET = 600000;
|
||||
DEFAULT_FOLDERS: array[0..4] of string = ('All', 'Social', 'Banking', 'Work', 'Personal');
|
||||
|
||||
procedure EnsureDefaultFolders(AUserId: Integer);
|
||||
@@ -56,9 +64,10 @@ begin
|
||||
end;
|
||||
|
||||
procedure SendAuthSuccess(AResponse: TIdHTTPResponseInfo;
|
||||
AUserId: Integer; const AToken, ASalt, ACSRFToken: string);
|
||||
AUserId: Integer; const AToken, ASalt, ACSRFToken: string;
|
||||
AKdfIterations: Integer; ANeedsMigration: Boolean);
|
||||
var
|
||||
LObj: TJSONObject;
|
||||
LObj, LMig: TJSONObject;
|
||||
begin
|
||||
LObj := TJSONObject.Create;
|
||||
LObj.AddPair('message', 'OK');
|
||||
@@ -66,6 +75,17 @@ begin
|
||||
LObj.AddPair('userId', TJSONNumber.Create(AUserId));
|
||||
LObj.AddPair('salt', ASalt);
|
||||
LObj.AddPair('csrfToken', ACSRFToken);
|
||||
// kdfIterations is the iteration count the client must use when deriving
|
||||
// the AES-GCM key for THIS session — matches the count under which the
|
||||
// existing entries are encrypted. If the server signals migration, the
|
||||
// client should re-encrypt with the new target and call /migrate-kdf.
|
||||
LObj.AddPair('kdfIterations', TJSONNumber.Create(AKdfIterations));
|
||||
if ANeedsMigration then
|
||||
begin
|
||||
LMig := TJSONObject.Create;
|
||||
LMig.AddPair('target', TJSONNumber.Create(PBKDF2_ITERATIONS_TARGET));
|
||||
LObj.AddPair('kdfMigration', LMig);
|
||||
end;
|
||||
TJSONHelper.SendJSON(AResponse, LObj);
|
||||
end;
|
||||
|
||||
@@ -118,17 +138,20 @@ begin
|
||||
end;
|
||||
|
||||
LSalt := RandomHex(32);
|
||||
LHash := PBKDF2_SHA256_Hex(LPwd, LSalt, PBKDF2_ITERATIONS);
|
||||
// New accounts use the current target iteration count — no migration
|
||||
// path needed since this is a brand-new vault with zero entries.
|
||||
LHash := PBKDF2_SHA256_Hex(LPwd, LSalt, PBKDF2_ITERATIONS_TARGET);
|
||||
|
||||
LQ := TFDQuery.Create(nil);
|
||||
try
|
||||
LQ.Connection := DB.Connection;
|
||||
LQ.SQL.Text :=
|
||||
'INSERT INTO users (username, password_hash, salt, hash_algo) ' +
|
||||
'VALUES (:u, :h, :s, ''pbkdf2'')';
|
||||
'INSERT INTO users (username, password_hash, salt, hash_algo, kdf_iterations) ' +
|
||||
'VALUES (:u, :h, :s, ''pbkdf2'', :it)';
|
||||
LQ.ParamByName('u').AsString := LUser;
|
||||
LQ.ParamByName('h').AsString := LHash;
|
||||
LQ.ParamByName('s').AsString := LSalt;
|
||||
LQ.ParamByName('it').AsInteger := PBKDF2_ITERATIONS_TARGET;
|
||||
LQ.ExecSQL;
|
||||
LUserId := DB.Connection.GetLastAutoGenValue('users');
|
||||
finally
|
||||
@@ -141,7 +164,9 @@ begin
|
||||
EnsureDefaultFolders(LUserId);
|
||||
CreateSession(LUserId, LToken, LCSRF);
|
||||
LogAudit(LUserId, 'register', LIP);
|
||||
SendAuthSuccess(AResponse, LUserId, LToken, LSalt, LCSRF);
|
||||
// No migration ever needed for fresh accounts.
|
||||
SendAuthSuccess(AResponse, LUserId, LToken, LSalt, LCSRF,
|
||||
PBKDF2_ITERATIONS_TARGET, False);
|
||||
end;
|
||||
|
||||
// ===== /login ================================================================
|
||||
@@ -151,7 +176,7 @@ procedure HandleLogin(ARequest: TIdHTTPRequestInfo;
|
||||
var
|
||||
LBody: TJSONObject;
|
||||
LUser, LPwd, LSalt, LStoredHash, LAlgo, LToken, LCSRF, LIP: string;
|
||||
LUserId: Integer;
|
||||
LUserId, LKdfIters: Integer;
|
||||
LQ: TFDQuery;
|
||||
LComputed: string;
|
||||
LValid: Boolean;
|
||||
@@ -182,7 +207,8 @@ begin
|
||||
try
|
||||
LQ.Connection := DB.Connection;
|
||||
LQ.SQL.Text :=
|
||||
'SELECT id, password_hash, salt, hash_algo FROM users WHERE username = :u';
|
||||
'SELECT id, password_hash, salt, hash_algo, kdf_iterations ' +
|
||||
'FROM users WHERE username = :u';
|
||||
LQ.ParamByName('u').AsString := LUser;
|
||||
LQ.Open;
|
||||
if LQ.IsEmpty then
|
||||
@@ -201,7 +227,11 @@ begin
|
||||
LStoredHash := LQ.FieldByName('password_hash').AsString;
|
||||
LSalt := LQ.FieldByName('salt').AsString;
|
||||
LAlgo := LQ.FieldByName('hash_algo').AsString;
|
||||
LKdfIters := LQ.FieldByName('kdf_iterations').AsInteger;
|
||||
if LAlgo = '' then LAlgo := 'pbkdf2';
|
||||
// Legacy rows predating the kdf_iterations column have NULL → 0 here;
|
||||
// treat as the original 100k value used by api.php and early Delphi.
|
||||
if LKdfIters <= 0 then LKdfIters := PBKDF2_ITERATIONS;
|
||||
finally
|
||||
LQ.Free;
|
||||
end;
|
||||
@@ -212,7 +242,10 @@ begin
|
||||
LValid := False;
|
||||
if SameText(LAlgo, 'pbkdf2') then
|
||||
begin
|
||||
LComputed := PBKDF2_SHA256_Hex(LPwd, LSalt, PBKDF2_ITERATIONS);
|
||||
// Verify with the user's own iteration count (NOT the global constant).
|
||||
// Legacy users at 100k still need to log in successfully so the client
|
||||
// can decrypt their entries before triggering the /migrate-kdf flow.
|
||||
LComputed := PBKDF2_SHA256_Hex(LPwd, LSalt, LKdfIters);
|
||||
LValid := ConstantTimeEquals(LComputed, LStoredHash);
|
||||
end
|
||||
else if SameText(LAlgo, 'bcrypt') then
|
||||
@@ -242,7 +275,11 @@ begin
|
||||
EnsureDefaultFolders(LUserId);
|
||||
CreateSession(LUserId, LToken, LCSRF);
|
||||
LogAudit(LUserId, 'login', LIP);
|
||||
SendAuthSuccess(AResponse, LUserId, LToken, LSalt, LCSRF);
|
||||
// Signal migration when the user's current iteration count is below the
|
||||
// target. The client will re-encrypt all entries and call /migrate-kdf
|
||||
// to commit everything atomically.
|
||||
SendAuthSuccess(AResponse, LUserId, LToken, LSalt, LCSRF,
|
||||
LKdfIters, LKdfIters < PBKDF2_ITERATIONS_TARGET);
|
||||
end;
|
||||
|
||||
// ===== /logout ===============================================================
|
||||
@@ -276,7 +313,7 @@ end;
|
||||
procedure HandleReauth(ARequest: TIdHTTPRequestInfo;
|
||||
AResponse: TIdHTTPResponseInfo; const AParams: TArray<string>);
|
||||
var
|
||||
LUserId: Integer;
|
||||
LUserId, LKdfIters: Integer;
|
||||
LBody: TJSONObject;
|
||||
LUser, LPwd, LStoredHash, LSalt, LAlgo, LIP, LComputed: string;
|
||||
LQ: TFDQuery;
|
||||
@@ -310,7 +347,8 @@ begin
|
||||
LQ.Connection := DB.Connection;
|
||||
// Pull username too — needed for the per-account lockout calls.
|
||||
LQ.SQL.Text :=
|
||||
'SELECT username, password_hash, salt, hash_algo FROM users WHERE id = :uid';
|
||||
'SELECT username, password_hash, salt, hash_algo, kdf_iterations ' +
|
||||
'FROM users WHERE id = :uid';
|
||||
LQ.ParamByName('uid').AsInteger := LUserId;
|
||||
LQ.Open;
|
||||
if LQ.IsEmpty then
|
||||
@@ -323,7 +361,9 @@ begin
|
||||
LStoredHash := LQ.FieldByName('password_hash').AsString;
|
||||
LSalt := LQ.FieldByName('salt').AsString;
|
||||
LAlgo := LQ.FieldByName('hash_algo').AsString;
|
||||
LKdfIters := LQ.FieldByName('kdf_iterations').AsInteger;
|
||||
if LAlgo = '' then LAlgo := 'pbkdf2';
|
||||
if LKdfIters <= 0 then LKdfIters := PBKDF2_ITERATIONS;
|
||||
finally
|
||||
LQ.Free;
|
||||
end;
|
||||
@@ -340,7 +380,8 @@ begin
|
||||
LValid := False;
|
||||
if SameText(LAlgo, 'pbkdf2') then
|
||||
begin
|
||||
LComputed := PBKDF2_SHA256_Hex(LPwd, LSalt, PBKDF2_ITERATIONS);
|
||||
// Verify with the user's stored iteration count, same as HandleLogin.
|
||||
LComputed := PBKDF2_SHA256_Hex(LPwd, LSalt, LKdfIters);
|
||||
LValid := ConstantTimeEquals(LComputed, LStoredHash);
|
||||
end;
|
||||
|
||||
@@ -356,13 +397,183 @@ begin
|
||||
ClearAttempts(LIP);
|
||||
ClearAccountLockout(LUser);
|
||||
LogAudit(LUserId, 'reauth', LIP);
|
||||
TJSONHelper.SendOK(AResponse, 'OK');
|
||||
|
||||
// Return KDF state so the client can detect legacy accounts that haven't
|
||||
// been migrated yet — unlock from a locked state goes through reauth, not
|
||||
// login, so we need the same migration signaling here.
|
||||
begin
|
||||
var LObj := TJSONObject.Create;
|
||||
LObj.AddPair('message', 'OK');
|
||||
LObj.AddPair('kdfIterations', TJSONNumber.Create(LKdfIters));
|
||||
if LKdfIters < PBKDF2_ITERATIONS_TARGET then
|
||||
begin
|
||||
var LMig := TJSONObject.Create;
|
||||
LMig.AddPair('target', TJSONNumber.Create(PBKDF2_ITERATIONS_TARGET));
|
||||
LObj.AddPair('kdfMigration', LMig);
|
||||
end;
|
||||
TJSONHelper.SendJSON(AResponse, LObj);
|
||||
end;
|
||||
end;
|
||||
|
||||
// ===== /migrate-kdf ==========================================================
|
||||
// Atomic transition from an old PBKDF2 iteration count to the current target.
|
||||
// Client side: derive both old and new AES keys, decrypt each entry with old,
|
||||
// re-encrypt with new, then POST the new ciphertext blob to this endpoint
|
||||
// along with the master password (so we can recompute the new server hash).
|
||||
// Server side: verify the master pw with the old hash, then in a single
|
||||
// transaction: update users.password_hash to the new PBKDF2 output, set
|
||||
// kdf_iterations to TARGET, and replace each entry's encrypted_password/iv.
|
||||
// All-or-nothing: if anything fails, the user stays on the old config.
|
||||
procedure HandleMigrateKdf(ARequest: TIdHTTPRequestInfo;
|
||||
AResponse: TIdHTTPResponseInfo; const AParams: TArray<string>);
|
||||
var
|
||||
LUserId, LOldIters, I: Integer;
|
||||
LBody, LEntry: TJSONObject;
|
||||
LEntries: TJSONArray;
|
||||
LUser, LPwd, LSalt, LStoredHash, LAlgo, LIP, LComputed, LNewHash: string;
|
||||
LQ: TFDQuery;
|
||||
LValid: Boolean;
|
||||
LEntryId: Integer;
|
||||
LEncPwd, LIv: string;
|
||||
begin
|
||||
try
|
||||
LUserId := Authenticate(ARequest, AResponse);
|
||||
RequireCSRF(ARequest, AResponse, LUserId);
|
||||
except
|
||||
on ESessionRejected do Exit;
|
||||
end;
|
||||
|
||||
LIP := GetClientIP(ARequest);
|
||||
|
||||
LBody := TJSONHelper.ReadBody(ARequest);
|
||||
try
|
||||
LPwd := LBody.GetValue<string>('masterPassword', '');
|
||||
LEntries := LBody.GetValue<TJSONArray>('entries');
|
||||
if LEntries = nil then
|
||||
begin
|
||||
TJSONHelper.SendError(AResponse, 400, 'Missing entries array');
|
||||
Exit;
|
||||
end;
|
||||
|
||||
DB.Lock;
|
||||
try
|
||||
// Step 1: load current user state.
|
||||
LQ := TFDQuery.Create(nil);
|
||||
try
|
||||
LQ.Connection := DB.Connection;
|
||||
LQ.SQL.Text :=
|
||||
'SELECT username, password_hash, salt, hash_algo, kdf_iterations ' +
|
||||
'FROM users WHERE id = :uid';
|
||||
LQ.ParamByName('uid').AsInteger := LUserId;
|
||||
LQ.Open;
|
||||
if LQ.IsEmpty then
|
||||
begin
|
||||
TJSONHelper.SendError(AResponse, 401, 'User not found');
|
||||
Exit;
|
||||
end;
|
||||
LUser := LQ.FieldByName('username').AsString;
|
||||
LStoredHash := LQ.FieldByName('password_hash').AsString;
|
||||
LSalt := LQ.FieldByName('salt').AsString;
|
||||
LAlgo := LQ.FieldByName('hash_algo').AsString;
|
||||
LOldIters := LQ.FieldByName('kdf_iterations').AsInteger;
|
||||
if LAlgo = '' then LAlgo := 'pbkdf2';
|
||||
if LOldIters <= 0 then LOldIters := PBKDF2_ITERATIONS;
|
||||
finally
|
||||
LQ.Free;
|
||||
end;
|
||||
|
||||
// Idempotency: if already at target, nothing to do.
|
||||
if LOldIters >= PBKDF2_ITERATIONS_TARGET then
|
||||
begin
|
||||
TJSONHelper.SendOK(AResponse, 'Already at target');
|
||||
Exit;
|
||||
end;
|
||||
|
||||
// Step 2: verify the master pw against the CURRENT (old) hash.
|
||||
LValid := False;
|
||||
if SameText(LAlgo, 'pbkdf2') then
|
||||
begin
|
||||
LComputed := PBKDF2_SHA256_Hex(LPwd, LSalt, LOldIters);
|
||||
LValid := ConstantTimeEquals(LComputed, LStoredHash);
|
||||
end;
|
||||
if not LValid then
|
||||
begin
|
||||
RecordFailedAccountAttempt(LUser, LIP);
|
||||
LogAudit(LUserId, 'failed_migrate_kdf', LIP);
|
||||
TJSONHelper.SendError(AResponse, 401, 'Invalid password');
|
||||
Exit;
|
||||
end;
|
||||
|
||||
// Step 3: compute the new password hash with target iterations.
|
||||
LNewHash := PBKDF2_SHA256_Hex(LPwd, LSalt, PBKDF2_ITERATIONS_TARGET);
|
||||
|
||||
// Step 4: atomic transaction — update user hash AND every entry's
|
||||
// ciphertext together. Any failure rolls back, leaving the user on
|
||||
// the legacy config (safe to retry next login).
|
||||
DB.Connection.StartTransaction;
|
||||
try
|
||||
LQ := TFDQuery.Create(nil);
|
||||
try
|
||||
LQ.Connection := DB.Connection;
|
||||
LQ.SQL.Text :=
|
||||
'UPDATE users SET password_hash = :h, kdf_iterations = :it ' +
|
||||
'WHERE id = :uid';
|
||||
LQ.ParamByName('h').AsString := LNewHash;
|
||||
LQ.ParamByName('it').AsInteger := PBKDF2_ITERATIONS_TARGET;
|
||||
LQ.ParamByName('uid').AsInteger := LUserId;
|
||||
LQ.ExecSQL;
|
||||
finally
|
||||
LQ.Free;
|
||||
end;
|
||||
|
||||
LQ := TFDQuery.Create(nil);
|
||||
try
|
||||
LQ.Connection := DB.Connection;
|
||||
LQ.SQL.Text :=
|
||||
'UPDATE vault_entries ' +
|
||||
'SET encrypted_password = :ep, iv = :iv, updated_at = CURRENT_TIMESTAMP ' +
|
||||
'WHERE id = :id AND user_id = :uid';
|
||||
|
||||
for I := 0 to LEntries.Count - 1 do
|
||||
begin
|
||||
LEntry := LEntries.Items[I] as TJSONObject;
|
||||
LEntryId := LEntry.GetValue<Integer>('id', 0);
|
||||
LEncPwd := LEntry.GetValue<string>('encrypted_password', '');
|
||||
LIv := LEntry.GetValue<string>('iv', '');
|
||||
if (LEntryId <= 0) or (LEncPwd = '') or (LIv = '') then
|
||||
raise Exception.CreateFmt('Invalid entry payload at index %d', [I]);
|
||||
|
||||
LQ.ParamByName('id').AsInteger := LEntryId;
|
||||
LQ.ParamByName('uid').AsInteger := LUserId;
|
||||
LQ.ParamByName('ep').AsString := LEncPwd;
|
||||
LQ.ParamByName('iv').AsString := LIv;
|
||||
LQ.ExecSQL;
|
||||
end;
|
||||
finally
|
||||
LQ.Free;
|
||||
end;
|
||||
|
||||
DB.Connection.Commit;
|
||||
except
|
||||
DB.Connection.Rollback;
|
||||
raise;
|
||||
end;
|
||||
finally
|
||||
DB.Unlock;
|
||||
end;
|
||||
finally
|
||||
LBody.Free;
|
||||
end;
|
||||
|
||||
LogAudit(LUserId, Format('migrate_kdf %d->%d', [LOldIters, PBKDF2_ITERATIONS_TARGET]), LIP);
|
||||
TJSONHelper.SendOK(AResponse, 'Migration complete');
|
||||
end;
|
||||
|
||||
initialization
|
||||
Router.Register('POST', '/register', HandleRegister);
|
||||
Router.Register('POST', '/login', HandleLogin);
|
||||
Router.Register('POST', '/logout', HandleLogout);
|
||||
Router.Register('POST', '/reauth', HandleReauth);
|
||||
Router.Register('POST', '/register', HandleRegister);
|
||||
Router.Register('POST', '/login', HandleLogin);
|
||||
Router.Register('POST', '/logout', HandleLogout);
|
||||
Router.Register('POST', '/reauth', HandleReauth);
|
||||
Router.Register('POST', '/migrate-kdf', HandleMigrateKdf);
|
||||
|
||||
end.
|
||||
|
||||
Reference in New Issue
Block a user