A self-hosted, single-user password manager. Deployable locally and to popular cloud platforms.
Go to file
mitchell 0795f88aa0 Add README.md and LICENSE 2019-06-02 15:34:45 -07:00
cli Refactored config management strategy for spc 2019-06-02 01:47:19 -07:00
cmd Refactored config management strategy for spc 2019-06-02 01:47:19 -07:00
credentials Refactored config management strategy for spc 2019-06-02 01:47:19 -07:00
crypto Implemented all but update from cli client to server; 2019-05-27 18:16:50 -07:00
.gitignore Update list and get commands to use better choosing strategy; 2019-06-01 13:32:11 -07:00
Dockerfile Refactored Docker and Make files; increased command context timeouts; 2019-05-29 23:32:56 -07:00
LICENSE Add README.md and LICENSE 2019-06-02 15:34:45 -07:00
Makefile Add additional commands to machine-create-google command 2019-06-02 12:37:39 -07:00
README.md Add README.md and LICENSE 2019-06-02 15:34:45 -07:00
docker-compose.prod.yml Added redis.conf and Makefile commands to assist in machine setup 2019-06-01 19:42:46 -07:00
docker-compose.yml Added redis.conf and Makefile commands to assist in machine setup 2019-06-01 19:42:46 -07:00
gen_certs_go.sh Implemented all but update from cli client to server; 2019-05-27 18:16:50 -07:00
go.mod Added redis.conf and Makefile commands to assist in machine setup 2019-06-01 19:42:46 -07:00
go.sum Added redis.conf and Makefile commands to assist in machine setup 2019-06-01 19:42:46 -07:00
redis.conf Added redis.conf and Makefile commands to assist in machine setup 2019-06-01 19:42:46 -07:00

README.md

selfpass

This is the project home of selfpass, the self-hosted password manager. This project is intended to be a single-user (or trusted multi-user) password manager capable of encrypting/decrypting credentials and storing them remotely through encrypted transportation, all of which is deployable locally or to popular cloud platforms such as GCP and AWS.

It is still currently in development. However, the service is already capable of serving a gRPC based API using mutual TLS encryption, backed by Redis and Docker. It is also capable of being deployed in a semi-automated fashion locally and to GCP thanks to Docker.

In addition to the service there is spc (selfpass CLI), which is a fully fledged selfpass client capable of interacting with the whole selfpass API and creating AES-CBC encrypted credentials using a private key and master password. All of which is done using mutual TLS and an AES-CBC encrypted config.

Service Roadmap

Goal Progress Comment
Support credentials CRUD on gRPC API. 100%
Enable server-side mutual TLS, using cfssl. 100%
Deployable on Docker. 100%
Automatically deployable to GCP using docker-machine and Terraform. 50% TODO: Terraform
Automatically deployable to AWS using docker-machine and Terraform. 0%

SPC Roadmap

Goal Progress Comment
Support credentials CRUD via gRPC. 80% TODO: Update
Support mutual TLS. 100%
Support storage of certs, PK, and host in AES-CBC encrypted config. 100%
Support AES-CBC encryption of passes and OTP secrets, using MP and PK. 100%
Support AES-CBC encryption of local files, using MP and PK. 100%

Unplanned Goals

  • Web client.
  • Sensitive financial info support.
  • Miscellaneous text/file encryption and storage support.
  • Vault separation.

3rd-party Technologies in Use (and where):

  • Golang (all)
  • Go-Kit (all)
  • gRPC (all)
  • Cobra Commander & Viper Config (spc)
  • Redis (service)
  • Docker (service)
  • Debian (docker images and machines)