An open API service indexing awesome lists of open source software.

https://github.com/born05/craft-enforcepassword

Craft plugin for incrementally enforced new and secure passwords.
https://github.com/born05/craft-enforcepassword

craftcms craftcms-plugin security

Last synced: about 1 year ago
JSON representation

Craft plugin for incrementally enforced new and secure passwords.

Awesome Lists containing this project

README

          

# Craft Enforce Password plugin

Incrementally enforces a new and secure password not matching the last 5 passwords.
Stores password history in a database table.

Validates passwords by the following:
- Minimal length
- Maximum length
- At least 1 uppercase character
- At least 1 lowercase character
- At least 1 digit
- At least 1 symbol
- Can't match username or email
- Different from previous passwords

## Config

Create a `config/enforce-password.php` with the following contents:

```php
16,
'passwordMaxLength' => 255,
'passwordHistoryLimit' => 5, // Number of passwords kept in history, set to 0 to disable this feature
'passwordMaxLifetime' => 90, // Number of days a password can be used
'enforceUppercase' => true, // Min 1 uppercase letter
'enforceLowercase' => true, // Min 1 lowercase letter
'enforceDigit' => true, // Min 1 digit
'enforceSymbol' => true, // Min 1 symbol
];
```

## Commandline usage

```sh
craft enforce-password/default
```

## License

Copyright © [Born05](https://www.born05.com/)

See [license](https://github.com/born05/craft-enforcepassword/blob/master/LICENSE.md)