Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
c9a6b69
feat: implement private user vaults, OTP reset, and secure login
CodeByRachit Mar 7, 2026
082c1bd
fix: resolve security vulnerabilities, add CSRF protection, and fix p…
CodeByRachit Mar 8, 2026
ec2e1cd
feat: add profile picture upload and animated logout button
CodeByRachit Mar 8, 2026
8e4320a
style: final polish for profile dashboard and logout button
CodeByRachit Mar 8, 2026
49cf3f1
feat: implement TOTP two-factor authentication and secure password up…
CodeByRachit Mar 9, 2026
4102221
chore: update dependencies for 2FA libraries
CodeByRachit Mar 9, 2026
d10a701
feat: implement AES-256 at-rest encryption and secure file serving route
CodeByRachit Mar 10, 2026
ff635d6
feat: implement FastAPI-WSGI gateway with AES-256 vaulting and MongoD…
CodeByRachit Mar 12, 2026
824148e
chore: update requirements.txt with FastAPI, Motor, and async depende…
CodeByRachit Mar 12, 2026
dd745f2
feat: implement async NoSQL vaulting and AES-256 decryption loop
CodeByRachit Mar 12, 2026
fa9a4c8
feat: optimize ingestion architecture for memory-constrained environm…
CodeByRachit Mar 13, 2026
3e6ea56
perf: implement memory-resilient streaming ingestion
CodeByRachit Mar 13, 2026
082053f
feat: implement streaming decryption pipeline with 100% integrity
CodeByRachit Mar 13, 2026
eff1737
feat: add paginated search API for vault metadata
CodeByRachit Mar 14, 2026
b879df8
feat: implement RBAC with Admin/Owner dashboards and real-time growth…
CodeByRachit Mar 15, 2026
66f1e0f
feat: implement admin vault review and secure file decryption
CodeByRachit Mar 17, 2026
bb96332
feat: improve auth UX and implement strong password validation
CodeByRachit Mar 18, 2026
62c9a2d
feat: secure email update pipeline with OTP against ATO attacks
CodeByRachit Mar 20, 2026
003824e
chore: add global HTTP security headers against clickjacking
CodeByRachit Mar 21, 2026
6aa2f67
feat(security): implement strict AES-256 CTR streaming and fail-fast …
CodeByRachit Mar 22, 2026
94befc5
Implement rate limiting and resolve auth test conflicts
CodeByRachit Apr 7, 2026
a4bb9fa
fixed resolve critical security edge cases raised by code review
CodeByRachit Apr 7, 2026
7106a54
implement rate limiting and resolve auth test conflicts
CodeByRachit Apr 10, 2026
439062c
feat(ui): redesign brute-force lockout timer alert
CodeByRachit Apr 12, 2026
70d867a
add autofocus to login email input
CodeByRachit Apr 17, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -205,3 +205,13 @@ cython_debug/
marimo/_static/
marimo/_lsp/
__marimo__/

.env
.venv/
venv/
__pycache__/
*.pyc
instance/
.pytest_cache/
vault_core.db
.DS_Store
Loading