Summary
Throttle failed password unlock attempts to reduce brute force risk.
Background
Medium-effort, independently implementable task. Not part of Stellar Wave program tracking.
Scope
apps/extension-wallet/src/background/service-worker.ts
Files to create / modify
Track failures in session storage with exponential backoff.
Example implementation
if (failures >= 5) return { ok: false, retryAfterMs: backoffMs };
Acceptance criteria
Difficulty
Medium
Labels
enhancement, medium, security, extension
Summary
Throttle failed password unlock attempts to reduce brute force risk.
Background
Medium-effort, independently implementable task. Not part of Stellar Wave program tracking.
Scope
apps/extension-wallet/src/background/service-worker.tsFiles to create / modify
Track failures in session storage with exponential backoff.
Example implementation
Acceptance criteria
Difficulty
Medium
Labels
enhancement,medium,security,extension