2018-11-14 19:22:22 +00:00
|
|
|
---
|
|
|
|
layout: page
|
|
|
|
category-page: intermediate
|
|
|
|
category-title: Intermediate commands
|
|
|
|
tags: password dashlane keypass manager gpg encrypt sync
|
|
|
|
author: Claudio Maggioni
|
|
|
|
title: pass
|
|
|
|
---
|
|
|
|
<p>
|
2018-11-14 21:15:38 +00:00
|
|
|
The <code>pass</code> command, also known as <i>Password Store</i>, is an
|
|
|
|
entirely offline password manager that uses <i>GPG</i> for encryption with
|
|
|
|
the ability to sync the (entirely encrypted) passwords using <code>git</code>.
|
|
|
|
<code>pass</code> works on <i>MacOS</i> (avaliable via
|
|
|
|
<a href="https://brew.sh">Homebrew</a>), <i>Linux</i> and on
|
|
|
|
<i>Android</i> (with a GUI app). Think of it as an entirely FLOSS
|
|
|
|
alternative to services like <i>Keypass</i> or <i>Dashlane</i>.<br>
|
|
|
|
|
|
|
|
Excluding the initial setup (that requires the creation of a <i>GPG key</i>),
|
|
|
|
<code>pass</code> is very easy and straightforward to use: instead of
|
|
|
|
printing passwords to <i>stdout</i>, <code>pass</code> copies them in the
|
|
|
|
system clipboard, erasing them after a certain number of seconds (usually
|
|
|
|
<i>45</i>).<br>
|
|
|
|
|
|
|
|
<code>pass</code> has many unofficial GUI clients and migration scripts from
|
|
|
|
other password managers. For more information, check out
|
2018-11-15 07:53:23 +00:00
|
|
|
<a href=https://www.passwordstore.org/#other">the official website</a>.
|
|
|
|
</p>
|
2018-11-14 19:22:22 +00:00
|
|
|
|
|
|
|
<h3>Setup</h3>
|
|
|
|
|
2018-11-15 07:53:23 +00:00
|
|
|
<p>
|
2018-11-14 21:15:38 +00:00
|
|
|
An accurate walkthrough through the setup of <code>pass</code>, in addition
|
|
|
|
to some other useful sets of commands (such as how to migrate the password
|
|
|
|
repository to another computer) is provided
|
|
|
|
in this <a href="https://gist.github.com/flbuddymooreiv/a4f24da7e0c3552942ff">
|
|
|
|
GitHub Gist</a> by <a href="https://github.com/flbuddymooreiv">
|
|
|
|
<i>flbuddymooreiv</i></a>.<br>
|
2018-11-14 19:22:22 +00:00
|
|
|
|
2018-11-14 21:15:38 +00:00
|
|
|
For more detailed explainations on the setup process or on any commands
|
|
|
|
please check out the online version of the
|
|
|
|
<a href="https://git.zx2c4.com/password-store/about/">man page</a>, which is
|
|
|
|
surprisingly more readable that most of the man pages for other utilities.
|
2018-11-15 07:53:23 +00:00
|
|
|
</p>
|
2018-11-14 19:22:22 +00:00
|
|
|
|
|
|
|
<h3>Usage</h3>
|
|
|
|
|
2018-11-15 07:53:23 +00:00
|
|
|
<p>
|
2018-11-14 21:15:38 +00:00
|
|
|
Common <code>pass</code> commands are shown below. For more information refer
|
|
|
|
to the documentation linked above.<br>
|
2018-11-14 19:22:22 +00:00
|
|
|
|
2018-11-14 21:15:38 +00:00
|
|
|
Example: Initialize the password repository with a GPG key with id "0DEADBEEF"
|
2018-11-14 19:22:22 +00:00
|
|
|
|
|
|
|
<pre>
|
|
|
|
pass init 0DEADBEEF
|
|
|
|
</pre>
|
|
|
|
|
2018-11-14 21:15:38 +00:00
|
|
|
Example: Insert a password for <i>example.com</i> with username <i>bob</i> in
|
|
|
|
the password repository interactively
|
2018-11-14 19:22:22 +00:00
|
|
|
|
|
|
|
<pre>
|
|
|
|
pass insert example.com/bob
|
|
|
|
</pre>
|
|
|
|
|
2018-11-14 21:15:38 +00:00
|
|
|
Please note that the password <i>name</i> here follows the most common
|
|
|
|
naming convention in <code>pass</code>, which is
|
|
|
|
<code>{website}/{username}</code>. Passwords can be stored in
|
|
|
|
hierarchical structures (i.e. in nested folders), but the naming is up to the
|
|
|
|
user.<br>
|
2018-11-14 19:22:22 +00:00
|
|
|
|
2018-11-14 21:15:38 +00:00
|
|
|
Example: Generate a password for <i>zombo.com</i> of 16 characters and copy it in
|
|
|
|
the clipboard
|
2018-11-14 19:22:22 +00:00
|
|
|
|
|
|
|
<pre>
|
|
|
|
pass generate -c zombo.com/bob 16
|
|
|
|
</pre>
|
|
|
|
|
2018-11-14 21:15:38 +00:00
|
|
|
Example: Retrieve the password for <i>google.com</i> and copy it in the system
|
|
|
|
clipboard (<code>-c</code> flag)
|
2018-11-14 19:22:22 +00:00
|
|
|
|
|
|
|
<pre>
|
|
|
|
pass -c google.com/bob@gmail.com
|
|
|
|
</pre>
|
|
|
|
|
2018-11-14 21:15:38 +00:00
|
|
|
Example: Edit the password for <i>facebook.com</i> using the default editor
|
2018-11-14 19:22:22 +00:00
|
|
|
|
|
|
|
<pre>
|
|
|
|
pass edit facebook.com/bob
|
|
|
|
</pre>
|
|
|
|
|
2018-11-14 21:15:38 +00:00
|
|
|
Edit: Convert the password repository to a git repository for synchronization
|
2018-11-14 19:22:22 +00:00
|
|
|
|
|
|
|
<pre>
|
|
|
|
pass git init
|
|
|
|
</pre>
|
|
|
|
|
2018-11-14 21:15:38 +00:00
|
|
|
Every <code>git</code> command on the password repository must be given with
|
|
|
|
the prefix <code>pass git</code> (e.g. <code>pass git push</code>). An
|
|
|
|
automatic commit is performed whenever a password is created, edited or
|
|
|
|
deleted.
|
2018-11-14 19:22:22 +00:00
|
|
|
</p>
|