Skip to content

Send passwords from the standard unix password manager to passbolt

Notifications You must be signed in to change notification settings

eze-kiel/pass2passbolt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pass2passbolt

A command-line utility to send pass passwords to passbolt

Usage

The typical usage is the following:

pass show path/to/password | pass2passbolt --uri domain.com \
	--address https://passbolt.local \
	--main-password PassBoltPassword \
	--private-key ~/Documents/passbolt-priv-key.txt \
	--name PasswordName \
	--desc "Password description"

Where:

  • --uri is the domain on which the password will be used (twitter.com, google.com...)
  • --address is the Passbolt server address
  • --main-password is the account main passwords
  • --private-key is the path to the private key provided at registration
  • --name is the password name is Passbolt (optional)
  • --desc is the password description in Passbolt (optional)

If we admit that the pass user is "toto" and the pass password is "hunter2", this command creates the following entry:

created password

Installation

You can either:

  • grab the latest release here;
  • build your own version of pass2passbolt:
git clone https://github.com/eze-kiel/pass2passbolt.git
cd pass2passbolt/
make build

License

MIT