Home
Softono
PassManagerWeb

PassManagerWeb

Open source Python
24
Stars
3
Forks
0
Issues
3
Watchers
1 week
Last Commit

About PassManagerWeb

Self-hosted password manager for secure online credentials.

Platforms

Web Self-hosted

Languages

Python

Links



Self-hosted password manager for secure online credentials.
Written in Python/Django

[!WARNING] This project should not be considered a replacement for professionally audited password managers. If you need a production ready solution for storing sensitive passwords there are more mature and tested alternatives available.

Features

  • [X] AES-256 GCM encryption with per-user keys derived from the master password and salt
  • [X] Multi-factor authentication for extra account protection
  • [X] Create, read, update and delete vault items
  • [X] Vault search
  • [X] Detect weak passwords across your vault
  • [X] Import and export vault data in csv format
  • [X] Configurable vault timeout with automatic locking
  • [X] Brute force login protection with rate limiting
  • [X] Automated discord webhook alerts for new account registrations

Database Schema

Database Schema

Usage

Local Development

First install uv and sync the project dependencies:

cd path/to/root/directory
pip install uv
uv sync
uv sync --extra dev  # for devs only

Migrate database:

uv run manage.py migrate

Run Django server:

uv run manage.py runserver

Access web application at http://127.0.0.1:8000 or http://localhost:8000.

Production Deployment (Docker)

Set up your environment variables:

cp .env.prod .env
nano .env  # modify file, instructions inside

Build and start the container in the background:

docker compose up -d --build

Access web application at http://127.0.0.1:8000 or http://localhost:8000.

Run Tests

uv run manage.py test

Demo Images

Vault

New Item

Edit Item

Password Checkup

Import Data

Account Settings

Contributing Guidelines

Pull Requests

  • Simplicity: Keep changes focused and easy to review.
  • Libraries: Avoid adding non-standard libraries unless discussed via an issue.
  • Testing: Ensure code runs error-free, passes all tests, and meets coding standards.

Bug Reports

  • Report bugs via GitHub Issues.
  • Submit pull requests via GitHub Pull Requests.

Thank you for supporting PassManager!