Cracklib password policy plugin for LdapCherry.
Project description
Cracklib password policy plugin for LdapCherry
- Doc:
- Dev:
- PyPI:
- License:
MIT
- Author:
Pierre-Francois Carpentier - copyright © 2015
Install
From pypi:
pip install lcppolicy_cracklib
From sources:
$ python setup.py install
Configure
Enable module
To enable this module, set ppolicy.module to lcppolicy_cracklib in section [ppolicy] of ldapcherry.ini
Parameters
This plugin takes the following parameters in ldapcherry.ini (all the parameters are optional):
Parameter |
Section |
Description |
Values |
Comment |
---|---|---|---|---|
min_length |
ppolicy |
Minimum length of password |
integer |
Default: 0 |
min_upper |
ppolicy |
Minimum number of upper case characters |
Integer |
Default: 0 |
min_digit |
ppolicy |
Minimum number of digit characters |
Integer |
Default: 0 |
min_lower |
ppolicy |
Minimum number of lower case characters |
Integer |
Default: 0 |
min_other |
ppolicy |
Minimum number of non alphanumeric characters |
Integer |
Default: 0 |
dict_path |
ppolicy |
Path to dictionary |
Path |
Default: default cracklib dictionary usually ‘/var/cache/cracklib/cracklib_dict’. If pointing, for example, to /path/dict, then /path/dict.hwm, /path/dict.pwd and /path/dict.pwi must exist. |
Example
[ppolicy]
# password policy module
ppolicy.module = 'lcppolicy_cracklib'
# minimum password length (optional default: 0)
min_length = 10
# minimum number of upper case characters (optional default: 0)
min_upper = 1
# minimum number of lower case characters (optional default: 0)
min_lower = 2
# minimum number of digits (optional default: 0)
min_digit = 1
# minimum number of non alphanumeric characters (optional default: 0)
min_other = 1
# path to dictionary (optional)
dict_path = '/var/cache/cracklib/cracklib_dict'
Custom dictionary
To build custom cracklib dictionaries:
Get one or many word list files (for example here: http://www.winedt.org/Dict/).
If necessary, encode it to UTF-8.
Generate the cracklib dictionary.
example:
# Just create a work directory
$ mkdir dict/
$ cd dict/
# Recover and unzip the word list
$ wget http://www.winedt.org/Dict/unicode/fr.zip
$ unzip fr.zip
# UTF-8 encoding
$ file *
fr.dic: Little-endian UTF-16 Unicode text
fr.txt: ASCII text, with CRLF line terminators
fr.zip: Zip archive data, at least v2.0 to extract
$ iconv -f UTF-16 -t UTF-8 fr.dic >fr2.dic
# Create the dictionary
$ cat fr2.dic | cracklib-packer mydict
# Result
$ ls mydict*
mydict.hwm mydict.pwd mydict.pwi
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file lcppolicy_cracklib-0.1.0.tar.gz
.
File metadata
- Download URL: lcppolicy_cracklib-0.1.0.tar.gz
- Upload date:
- Size: 189.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3b34d363ca1eaca0da323f90ddda0094e022965e73c4c02be98dedef1d91290 |
|
MD5 | a06bdc0d320abb73299fe781f1e9bb19 |
|
BLAKE2b-256 | c469daa4ab148a6758493bdf5439b93daea39210c014649fc0fd07611fb9fa01 |