Giter Site home page Giter Site logo

password-manager's Introduction

Password Manager

A simple, secure command-line password manager built with Python.

Features

  • Secure password storage using encryption
  • CRUD operations for password management
  • Simple command-line interface

Requirements

  • Docker (optional, for running in a container)

Installation

Using Installer Script

  1. Download the installer script install.sh.
  2. Download the pre-built binary from the releases page.
  3. Make the script executable:
chmod +x install.sh
  1. Run the installer:
sudo ./install.sh

Using Pre-built Binary

  1. Download the pre-built binary from the releases page.
  2. Make the binary executable:
chmod +x main
  1. Move the binary to a directory in your PATH, e.g., /usr/local/bin:
sudo mv main /usr/local/bin/password-manager
  1. Verify the installation:
password-manager

Usage

To start the password manager, run:

password-manager

Follow the on-screen prompts to manage your passwords securely.

Running with Docker

Build the Docker image:

docker build -t password-manager .

To run it with a persistent volume

docker run -it --rm -v password_manager_data:/app/data -e \
PASSWORD_MANAGER_DB_PATH=/app/data/passwords.db -e \
PASSWORD_MANAGER_KEY_PATH=/app/data/secret.key \
password_manager

password-manager's People

Contributors

jokezor avatar

Watchers

 avatar

password-manager's Issues

Secret key stored in same binary as db

This will lead to anyone who can access the directory can now read any encrypted data.

Thus the secret should be stored elsewhere.
But then the question is where?

Could be supplied by user on startup?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.