aahmadts/passbolt-password-importer

There is no license information available for the latest version (1.0.5) of this package.

PasswordImporter plugin for PassBolt

1.0.5 2018-10-31 14:55 UTC

This package is not auto-updated.

Last update: 2024-04-14 02:56:24 UTC


README

This is a CakePHP plugin for PassBolt to enable importing secrets/passwords to the community edition.

After importing the secrets/passwords a detailed downloadable report will appear with imported-, existed- secrets/passwords and errors.

The plugin is tested on the dockerized version 2.1.0-debian and 2.3.0-debian_. Check Docker for an example.

Screenshots

screenshots

report-screenshots

Installation

You can install this plugin into your CakePHP application using composer.

Composer

The recommended way to install composer packages is:

composer require aahmadts/passbolt-password-manager

Manually Installing a Plugin

Download PasswordImporter into the passbolt/plugins folder, then let composer know about it by adding the following into composer.json

{
    "autoload": {
        "psr-4": {
            "PassboltPasswordImporter\\": "plugins/passbolt-password-manager/src/"
        }
    }
}

After that run this composer command

php composer.phar dumpautoload

Load Plugin

After installing the plugin you will need to tell PassBolt to load the Plugin by extending the config/bootstrap.php with the following:

Plugin::load('PassboltPasswordImporter', ['routes' => true]);

or if you have cake's console installed use:

./bin/cake plugin load aahmadts/PassboltPasswordImporter

For more info about CakePHP Plugins check here: https://book.cakephp.org/3.0/en/plugins.html

Usage

To use the Password Importer run https://your-domain/password-importer and enjoy.