Passlane
Passlane is a password manager for the command line and for the Web. There is also a web interface at passlanevault.com that you can use to access your credentials on any device.
Passlane CLI is written in Rust.

Features
- You control the encryption keys: Your keys, your data.
- CLI and Web user interfaces (see below)
- Generate and save passwords
- Full management features
- Online storage with access from any device
- Import passwords from CSV files
Installation
- Download the latest release
- Unpack the archive
- Place the unarchived binary
passlaneto your $PATH
To compile from sources
- Install rust development environment: rustup
- Clone this repo
- Run build:
cargo build --release - Add the built
passlanebinary to your$PATH
Create an account
The Passlane Vault is secured by Auth0 and OAuth 2.0. All passwords are stored encrypted.
Passlane stores the encryption key on your device. It never sends it out to the passlane vault servers or anywhere else. Only you, the end user, can access the encrypted data in the vault. You are the only person who has access to the encryption key.
Head over to passlanevault.com and sign up for a free account. Once you have the account, run
to connect the CLI with the vault. The connection will stay active after that. Use the lock and unlock commands to open and close access to the vault contents after you have logged in.
Usage
)
Locking and unlocking
Before accessing your passwords you should unlock:
passlane unlock
This will ask for your master password which is then used to generate an encryption key. The encryption key is used for encrypting and storing password entries, and for retrieveing and decrypting these entries.
At the end of the session, lock the vaults and nobody can access the data.
passlane lock
Generating and saving passwords
To generate a new password without saving it. The generated password value is also copied to the clipboard.
passlane
To save a password from clipboard:
passlane add -c
To generate a new password and save it with one command:
passlane add -g
Using saved credentials
You can search and show saved passwords with regular expressions
passlane show <regexp>
Run passlane show foobard.com --> shows foobar.com's password and alco copies the value to the clipboard.
If the search finds more than one matches:
| | | |
+=========================================================================+
| | | |
||
| | | |
||
| | | |
||
| | | |
||
Migrating from 1Password, LastPass, Dashlane etc.
You can import credentials from a CSV file. With this approach, you can easily migrate from less elegant and often expensive commercial services.
First, make sure that the CSV file has a header line (1st line) with the following column titles:
- username
- password
- service
The service field is the URL or name of the service. When importing from Dashlane, the only necessary preparation is to rename url to service.
To export the credentials to a CSV file and import the file into Passlane:
Here are links to instructions for doing the CSV export:
Roadmap
2.0
Encryption keys
Next
- Update Web UI. Check this component.
- Encrypt evertyhing in the entries?
3.0
- Export of vault contents
- push to vault from keychain
- multiple vaults support
- new vault items: payment cards, notes