Passline is a command line-based password management system. Thanks to its simple and minimal usage syntax, Passline enables users to effectively manage various passwords across multiple devices within the terminal. All Passwords are stored AES-256 encrypted and can only be encrypted with a global password. Currently data can be stored localy on your computer or in your own firebase database.
Visit the contributing guidelines to learn more on how to translate this document into more languages.
Come over to Gitter or Twitter to share your thoughts on the project.
- Multiple storage modules (local, firestore)
- Passwords and recovery codes are AES-256 encryped
- Intuitive and fast command line interface
- Filtering allows fast selection of credentials
- Built-in update functionality
- Download the latest release for your platform.
- Copy the binary to your
/bin
folder or point the path environment variable to it.
snap install passline
snap alias passline pl # set alias
Note: Due to the Snapcraft's strictly confined nature, both storage & configuration files will be saved under the $SNAP_USER_DATA
environment variable instead of the generic $HOME
one.
> passline --help
NAME:
Passline - Password manager
USAGE:
passline [global options] command [command options] [arguments...]
VERSION:
1.5.4
DESCRIPTION:
Password manager for the command line
COMMANDS:
add, a Adds an existing password for a website
backup, b Creates a backup
delete, d Deletes an item
edit, e Edits an item
generate, g Generates a password for an website
list, ls Lists all websites/passwords
password, p Changes master password
restore, r Restores a backup
update, u Updates to the latest release
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--print, -p Displays password on the terminal (default: false)
--help, -h Shows help (default: false)
--version, -v Prints the version (default: false)
WEBSITE:
https://github.com/perryrh0dan/passline
To configure passline open to the ~/.passline/config.json file and modify any of the options to match your own preferences. To reset to the default values, simply delete the config file.
The following illustrates all the available options with their respective default values.
{
"Storage": "firestore",
"AutoClip": true,
"Notifications": true,
"QuickSelect": true,
"DefaultUsername": "thomaspoehlmann96@googlemail.com",
"DefaultCategory": "*"
}
Storage module. Currently there are two modules local
and firestore
Always copy the password to the clipboard
Display notifications
Copy username to clipboard
Default username to suggest
If this is set to something else then "*" only this category will be used to suggest items. This can be overwritten by the --category option.
When you want to use the local storage module there is no further configuration need. When you want to use the firestore module follow this steps:
- Create a new Project on the google cloud platform.
- Create a new service account for this project.
- Download the authorization.json file and insert it in the ~/.passline directory with the name
firestore.json
.
or follow this instruction page.
golangci-lint VS-Code settings
"go.lintTool":"golangci-lint",
"go.lintFlags": [
"--fast"
]
GOOS=windows GOARCH=amd64 go build
go test ./...
Icon is stored under notify/icon.go in dec. Use this tool to easy convert file to hex and then to dec.
- Thomas Pöhlmann (@perryrh0dan)
This repository was generated by tmpo