🔐 Open source password manager with Nextcloud integration
Go to file
Nextcloud bot bec3a1784c
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-09-18 01:21:48 +00:00
.tx [tx-robot] Update transifex configuration 2022-10-01 02:48:21 +00:00
appinfo Bump version 2024-04-28 17:48:00 +02:00
css implement option to show vault password in vaults list #803 2024-04-06 00:10:19 +02:00
docs Fix markdown syntax / reformatting of api.md 2019-10-25 23:42:31 +02:00
img fix numix svgs with undetectable mime type 2021-09-23 18:35:02 +02:00
js Merge branch 'feature/vault-password-visibility-toggle' 2024-04-28 17:45:49 +02:00
l10n Fix(l10n): Update translations from Transifex 2024-09-18 01:21:48 +00:00
lib mark credential notification as processed even if the corresponding credential does not exist #488 2024-04-06 00:50:59 +02:00
sass implement option to show vault password in vaults list #803 2024-04-06 00:10:19 +02:00
templates implement option to show vault password in vaults list #803 2024-04-06 00:10:19 +02:00
tests Merge branch 'issue-581-fix-postgres-sharing' 2023-06-25 18:03:28 +02:00
.dockerignore Added dockerfile 2016-10-19 18:13:32 +02:00
.drone.yml Update drone config 2017-07-28 16:22:18 +02:00
.drone.yml.sig Signed yaml file 2017-07-28 17:35:38 +02:00
.gitignore Update ignore file 2016-12-21 22:07:31 +01:00
.jshintrc fix importer js 2021-08-22 15:12:57 +02:00
.scrutinizer.yml fixed scrutinizer ci 2023-06-19 13:33:20 +02:00
.travis.yml Merge branch 'master' into fix/noid/travismysqlerror 2021-03-22 15:24:51 +01:00
AUTHORS.md Initial commit 2016-09-09 17:36:35 +02:00
bower.json fix bower dependencies (except llqrcode) 2021-03-12 01:00:14 +01:00
CHANGELOG.md This fixes the decryption error happening when auto login is enabled and user changes vault password. 2016-12-28 15:26:26 +01:00
CNAME Create CNAME 2017-02-05 17:23:45 +01:00
composer.json Add icons to credentials 2017-10-29 13:31:18 +01:00
CONTRIBUTING.md add link to nextcloud server wiki on how to sign commits 2017-10-29 11:11:22 +01:00
COPYING Initial commit 2016-09-09 17:36:35 +02:00
Dockerfile New dockerfile version that works with the latest NC and passman versions 2021-08-01 21:04:26 +02:00
entrypoint.sh New dockerfile version that works with the latest NC and passman versions 2021-08-01 21:04:26 +02:00
Gruntfile.js switch to an updated OTP lib and add support for custom OTP digits and period values 2022-08-27 02:35:25 +02:00
ISSUE_TEMPLATE.md Update 2017-03-16 15:44:56 +01:00
karma.conf.js fixed underscore path 2018-11-21 17:34:49 +01:00
launch_phpunit.sh.sample PHPUnit fixes for custom locations 2017-05-07 18:21:11 +02:00
LICENSE Initial commit 2016-09-07 13:30:00 +02:00
Makefile Initial commit 2016-09-09 17:36:35 +02:00
package.json update grunt nodeunit dependency 2023-03-25 12:00:19 +01:00
personal.php Update personal.php 2018-02-21 16:53:17 +02:00
phpunit.integration.xml Update phpunit 2017-07-01 18:09:39 +02:00
phpunit.xml Update phpunit 2017-07-01 18:09:39 +02:00
README.md fixed scrutinizer ci 2023-06-19 13:33:20 +02:00
swagger.yaml Top level typos 2017-01-06 17:06:54 +05:45

Passman

Passman is a full featured password manager.

Build Status Docker Automated buid Codacy Badge Codacy Badge Scrutinizer Code Quality

Join us!

Visit the “Passman General Talk” Telegram Group to participate in all sorts of topical discussions about Passman and its apps!

Contents

Screenshots

Logged in to vault

Credential selected

Edit credential

Password tool

For more screenshots: Click here

Features:

  • Multiple vaults
  • Vault keys are never sent to the server
  • 256-bit AES-encrypted credentials (see security)
  • User-defined custom credentials fields
  • Built-in OTP (One Time Password) generator
  • Password analyzer
  • Securely share passwords internally and via link
  • Import from various password managers:
    • KeePass
    • LastPass
    • DashLane
    • ZOHO
    • Clipperz.is
    • EnPass
    • ocPasswords

Try a Passman demo here.

Tested on

  • Nextcloud 14

For older Versions see the Releases Tab

External apps

Database Compatibility

Supported Tested Untested
SQL Lite
MySQL / MariaDB
travis
pgsql

Security

Password generation

Passman can generate passwords and measure their strength using zxcvbn.

Generate passwords as you like

Passwords are generated using sjcl randomization.

Storing credentials

All passwords are encrypted client side with sjcl using 256-bit AES. You supply a vault key which sjcl uses to encrypt your credentials. Your encrypted credentials are then sent to the server and encrypted yet again using the following routine:

Sharing credentials

Passman allows users to share passwords. (Administrators may disable this feature.)

API

Passman offers a developer API.

Support Passman

Passman is open source but well gladly accept a beer or pizza! Please consider donating:

Code reviews

If you have any code improvements:

  • Clone us
  • Make your edits
  • Add your name to the contributors
  • Send a PR

Or, if youre feeling lazy, create an issue and well think about it.

Docker

To run Passman with Docker, use our test Docker image. Supply your own self-signed SSL certs or use Lets Encrypt. Please note: The Docker image is for testing only as database user / password are hardcoded.

If youd like to spice up our Passman Docker image into a full-fledged, production-ready install, youre welcome to do so. Please note:

  • Port 80 and 443 are used
  • SSL is enabled (or disabled if no certs are found)
  • Container startup time must be less than 15 seconds

Example:

docker run -p 8080:80 -p 8443:443 -v /directory/cert.pem:/data/ssl/cert.pem -v /directory/cert.key:/data/ssl/cert.key brantje/passman

If you want a production-ready container, use the Nextcloud Docker and install Passman as an app.

Development

  • Passman uses a single .js file for templates which minimizes XHR template requests.
  • CSS uses SASS, so Ruby and SASS must be installed.
  • templates.js and the CSS are built with grunt.
  • Watch for changes using grunt watch.
  • Run unit tests — Install phpunit globally, setup environment variables in the launch_phpunit.sh script, and run the script. All arguments passed to launch_phpunit.sh are forwarded to phpunit.

Main developers

  • Brantje
  • Animalillo

Contributors

Add yours when creating a pull request!

FAQ

Are you adding something to check if malicious code is executing on the browser?
No, because malicious code can edit functions that check for malicious code.