passff/passff
Fork: 85 Star: 1226 (更新于 2024-11-02 02:04:20)
license: GPL-2.0
Language: JavaScript .
Read-only mirror of https://codeberg.org/PassFF/passff Pull requests and issues on GitHub cannot be accepted and will be automatically closed.
最后发布版本: 1.17 ( 2024-05-08 21:17:00)
passff
zx2c4 pass management extension for Mozilla Firefox.
Official signed version can be found on the Mozilla add-on page
Overview
This extension will allow you to access your zx2c4 pass repository directly from your web browser.
You can choose to automatically fill and submit login forms if a matching password entry is found.
Browser compatibility
- Firefox 50+ (or 54 for full support)
Installation
zx2c4 pass repository
This extension requires zx2c4 pass to be installed and set up with a password repository. Make sure you can execute pass show some-password-name
in a terminal before continuing.
Host application
For the extension to communicate with your system's pass
script, you need to install what's called the host application from the official git repository.
The host application allows the extension to communicate with pass
on your system.
PassFF extension
Install the current release of PassFF for your browser:
Previous releases are available for download as XPI files from our releases page. However, this is strongly discouraged for security reasons!
A graphical pinentry program
This program prompts you for your passphrase. One is probably already installed. If PassFF does not work, install one of these programs:
- For Ubuntu/Debian:
pinentry-gtk
orpinentry-qt
orpinentry-fltk
- For CentOS/RHEL:
pinentry-qt4
orpinentry-qt
- For MacOS:
pinentry-mac
If that does not work for you, you may have to configure GnuPG to use the right pinentry program. See the Troubleshooting section.
Note: Since the host app runs non-interactively, a console pinentry such as pinentry-ncurses
is useless and may render PassFF unusable if this is the default pinentry.
One-time-password (OTP) Authentication
PassFF can generate tokens to fill OTP input fields if the pass-otp extension is installed and the key URI is configured in the password file.
Password formats
To make the most of the extension, you should format your password files according to our expected formats.
If you only want the extension to fill out passwords, you don't need any special format for your password files. But if you follow our formats, the extension can also visit the website's URL and fill out the username and other input fields for you.
Multi-line format
This is the preferred organizational scheme used by the author of pass.
<the_password>
login: <the_login>
url: <the_url>
<other_inputfield_name>: <inputfield_value>
You can change or configure additional names for the login
and url
fields in preferences.
If there are no colons (:
) on the second or third line, they are assumed to contain the username
and URL respectively (unless those lines are left empty):
<the_password>
<the_login>
<the_url>
<more_content>
If there is only a single line, or none of the provided fields matches a login field name, the username is taken from
the filename, e.g. example.com/janedoe
will have a default username of janedoe
:
<the_password>
url: <the_url>
<other_inputfield_name>: <inputfield_value>
If there is no url
field, but a login
field, the URL is taken from the filename, assuming a secure protocol,
e.g. shopping/example.com
will have a default URL of https://example.com
:
<the_password>
login: <the_login>
<other_inputfield_name>: <inputfield_value>
If there is neither a url
nor a login
field, the filename is used as username and the parent directory's
name is used as URL, e.g. example.com/janedoe
will have a default username of janedoe
and a default URL
of https://example.com
:
<the_password>
<other_inputfield_name>: <inputfield_value>
If your login credentials do not include any login name information (only a password), you can instruct PassFF to omit
filling any login name by adding login: PASSFF_OMIT_FIELD
to your pass entry. The same keyword can be used for
credentials without password, but only login name, or to prevent PassFF from filling specific (other) input fields.
Use symbolic links in your password store directory if the data is identical across pass entries. When you do, make sure
to use relative (instead of absolute) links since PassFF cannot resolve paths beyond the password store directory.
If individual fields are equal across pass entries, you can store the data in one entry and reference that entry from
others. For example, in order to instruct PassFF to use the password and login name stored in shopping/example.com
when dealing with shopping/example2.com
, you can use the syntax ->
followed by a relative or absolute path:
-> /shopping/example.com
login: -> example.com
url: https://example2.com
Lines besides the login and URL that match the format <other_inputfield_name>: <value>
can be used to fill in input
fields besides the login and password fields. The left hand side of the colon should match the input field's name
,
id
, autocomplete
, or placeholder
attribute. You can instruct PassFF to fill your login name, password, or
OTP token, by setting <value>
to one of PASSFF_FIELD_LOGIN
, PASSFF_FIELD_PASSWORD
, or PASSFF_FIELD_OTP
.
Alternatively, you can instruct PassFF explicitly not to fill the specified input field by using the
keyword PASSFF_OMIT_FIELD
.
Optionally, you can store your username, the URL, and additional (less sensitive) meta-data separate
from the password. For example, you can create the two entries shopping/example.com
and shopping/example.com.meta
. Whenever you select shopping/example.com
in PassFF, it will
automatically append the contents of the corresponding entry with .meta
extension before parsing
the multi-line format specified in this section.
Examples
nu8kzeo2Aese
login: bob
url: https://codeberg.org/login
Sae7gohsooquahCoh3ie
alice
AephieryZ2Ya
login: kevin
url: example.com
otpauth://totp/Example:alice@google.com?secret=JBSWY3DPEHPK3PXP&issuer=Example
pin: 1234
loginkey: PASSFF_FIELD_OTP
fancyinput: PASSFF_FIELD_LOGIN
File-structure format
Alternatively, you can organize your login information with file structure. For example, if you have this file structure:
- www
- supersite.com
- login
- password
- url
- totp
- mysite.com
- supersite.com
PassFF will
- get the login from the "login", the url from the "url" and the password from the "password" file under supersite.com
- get the login from the "login" field inside the mysite.com entry for mysite.com (see format above)
The file structure approach does not support custom input fields.
Note that the file structure format is recognized and assumed by PassFF whenever a file name matches a reserved field name such as user
, url
, password
or login
. This might cause unexpected behavior in cases where there is a file in multi-line format whose name happens to be a reserved field name.
Improve suggestions (contextual entries)
Unless you activate the preference "Index URL fields on startup", the auto-suggestions in the menus are based on matches of the current web page's URL against the names of password store entries. In the following, you find an explanation how you can improve matching quality by adapting the names and paths of your password store entries.
Generally speaking, the match quality is best if the exact hostname as well as all alphanumeric parts of the URL's path appear exactly in your entry's name. An entry is excluded from the matching if no part of the hostname is contained in its name. Matching (parts of) the hostname is more important than matching parts from the rest of the URL.
For the URL https://bugs.gentoo.org/index.cgi?GoAheadAndLogIn=1
, best match quality is reached if your password store entry contains the strings bugs.gentoo.org
, index
and GoAheadAndLogIn
in arbitrary order, but for it to be ranked in the matching process at all, it's enough for it to contain the strings bugs
or gentoo
.
Example with only one entry per hostname
If you don't have multiple credentials for one hostname in your password store, you get the best results from naming the entries after the exact hostname. In this scenario, if you name an entry /some/arbitrary/path/bugs.gentoo.org
, it will always rank highest on https://bugs.gentoo.org/index.cgi?GoAheadAndLogIn=1
.
Examples with more than one entry per hostname
If you happen to have several credentials for one hostname, you could name a directory in your password store after the hostname and list the different credentials inside that directory. Suppose you have different credentials for each of the following URLs:
https://my.example.com/cloud
https://my.example.com/blog?login
https://my.example.com/blog?admin
You could store them in your password store as
/some/path/my.example.com/cloud
/some/path/my.example.com/blog-login
/some/path/my.example.com/blog-admin
However, the following will work equally well:
/business/cloud/my.example.com
/personal/my.example.com-blog-login
/personal/my.example.com-blog-admin
For the rare case where you need several entries for one hostname but with different ports (e.g. if you have different
entries for http://example.com:2000/
and http://example.com/
), you might want to include the port number 2000
into the name of the entry for http://example.com:2000/
:
/business/cloud/example.com:2000
/business/cloud/example.com-2000
/business/cloud/example.com/port2000
Configuration and preferences
Extension preferences
Accessible from the gear button in the toolbar menu, preferences let you fine-tune the behaviour of PassFF.
Host application preferences
If you use a customized pass
installation: environment variables, customized repository path or extensions, you may have to configure the host application accordingly.
Usage
Once installed, you should have a new icon in your toolbar. Click the icon to browse your password repository or search using a fuzzy matching algorithm.
Keyboard shortcuts
The default shortcut to open the menu is ctrl+y.
With the menu open, you can press enter to execute one of the following commands, according to your preferences:
- Goto, fill and submit
- Goto and fill
- Fill and submit
- Fill
Input menu
PassFF can mark fillable input fields with the PassFF icon. It adds an icon in the fields that PassFF can automatically fill. The icon is clickable and pops up a menu to select the password. PassFF fills the input fields and optionally submit depending on your preferences. You can always override this behavior by clicking the pencil (Fill) or the paper plane (Fill & Submit).
This feature can be disabled in the preferences.
Contextual menu
In any input field, fillable or not, you can access a contextual menu (right-click) in order to:
- Add the input field's name in the Login input names for (auto)filling,
- Add the input field's name in the OTP input names for (auto)filling,
- Select a password to fill the input fields.
Adding new passwords
In order to add a password in your repository, select the 'plus' (+) icon in the toolbar menu.
Issues
If you're having problems, the most common causes are misconfigured preferences or an incorrect installation of the host application. You can get more information by debugging the extension.
First, make sure the host application is installed correctly.
Configure the script's execution parameters appropriately in the host app passff.py
: E.g., set COMMAND
to the path to the pass
binary (if installed with homebrew, the default location is /usr/local/bin/pass
). With those settings in place, the extension should be able to find your passwords.
Troubleshooting
-
I use an old version of Firefox and I experience weird behaviour
- PassFF is developed for the latest version of Firefox. PassFF should also work on previous versions above Firefox 50, which introduced native messaging for WebExtensions. However, HTTP authentication is available from Firefox 54 onwards.
-
I get a window saying: gpg: decryption failed: No secret key
Nothing happens when I click on a password and select an action
PassFF does not prompt me for the passphrase
PassFF works but only intermittently- It may be a problem with your pin-entry program, while your gpg-agent sometimes caches your passphrase. Possible solutions:
- Install a graphical pinentry program
- Configure GnuPG to call your pinentry program
- Add the line
pinentry-program /path/to/your/pinentry
to~/.gnupg/gpg-agent.conf
- You may need to create this file.
- See https://wiki.archlinux.org/index.php/GnuPG#pinentry
- Add the line
- Related issues:
- It may be a problem with your pin-entry program, while your gpg-agent sometimes caches your passphrase. Possible solutions:
-
The icon/toolbar menu suggests no or the wrong entries
- See the section Improve suggestions (contextual entries) above.
Contributing
Is the documentation too obscure?
Open a new issue. We will gratefully clarify the doc.
Would you like to translate PassFF?
Open a new issue to tell us about it, or make a pull request.
Would you like to code?
See CONTRIBUTING.
Thanks
Development and improvements
Russian translation : Grigorii Horos
最近版本更新:(数据更新于 2024-10-30 16:19:45)
2024-05-08 21:17:00 1.17
2023-12-01 17:22:35 1.16
2023-08-10 02:57:33 1.15
2023-02-12 19:42:17 1.14.1
2022-04-21 05:11:06 1.14
2021-10-06 01:46:50 1.13
2021-08-18 22:01:36 1.12.1
2021-08-18 05:34:25 1.12
2021-08-18 05:25:36 1.11.3
2021-07-14 17:12:13 1.11.2
主题(topics):
firefox-extension, javascript, password-manager, password-store, zx2c4-pass
passff/passff同语言 JavaScript最近更新仓库
2024-11-21 23:03:24 bia-pain-bache/BPB-Worker-Panel
2024-11-21 22:46:48 MHSanaei/3x-ui
2024-11-21 07:00:59 nodejs/node
2024-11-21 00:49:46 FortAwesome/Font-Awesome
2024-11-18 14:26:02 projectdiscovery/nuclei-templates
2024-11-17 14:42:23 koodo-reader/koodo-reader