Skip to main content

Extends Django password validation options to include minimum uppercase, lowercase, numerical, special characters, maximum length, maximum consecutive characters, maximum consecutively increasing digits, and maximum consecutively decreasing digits.

Project description

django-advanced_password_validation

Extends Django password validation options to include minimum uppercase, minimum lowercase, minimum numerical, and minimum special characters. This was created in an attempt to keep up with industry standards for strong user passwords.

This package works for both python 3.x and 2.x versions.

NOTE: As of January 01, 2020 python 2.x has been deprecated and will no longer receive continued support. See Python 2.x EOL for more details.

Prerequisites

Requires Django 1.11 or later. You can install the latest version of Django via pip:

$ pip install django

Alternatively, you can install a specific version of Django via pip:

$ pip install django=2.2

NOTE: See the django-project documentation for information on non-deprecated Django versions.

Installation

Normal installation

Install django-advanced_password_validation via pip:

$ pip install django-advanced_password_validation

Development installation

$ git clone https://github.com/ezrajrice/django-advanced_password_validation.git
$ cd django-advanced_password_validation
$ pip install --editable .

Usage

The four optional validators must be configured in the settings.py file of your django project.

/my-cool-project/settings.py

INSTALLED_APPS = [
    ...
    'django_advanced_password_validation',
    ...
]

AUTH_PASSWORD_VALIDATORS = [
    ...
    {
        'NAME': 'django_advanced_password_validation.advanced_password_validation.ContainsDigitsValidator',
        'OPTIONS': {
            'min_digits': 1
        }
    },
    {
        'NAME': 'django_advanced_password_validation.advanced_password_validation.ContainsUppercaseValidator',
        'OPTIONS': {
            'min_uppercase': 1
        }
    },
    {
        'NAME': 'django_advanced_password_validation.advanced_password_validation.ContainsLowercaseValidator',
        'OPTIONS': {
            'min_lowercase': 1
        }
    },
    {
        'NAME': 'django_advanced_password_validation.advanced_password_validation.ContainsSpecialCharactersValidator',
        'OPTIONS': {
            'min_characters': 1
        }
    },
    ...
]

Options

Here is a list of the available options with their default values.

Validator Option Default
ContainsDigitsValidator min_digits 1
ContainsUppercaseValidator min_uppercase 1
ContainsLowercaseValidator min_lowercase 1
ContainsSpecialCharactersValidator min_characters 1
MaximumLengthValidator max_length 128
MaxConsecutiveCharactersValidator max_consecutive 3
ConsecutivelyIncreasingDigitValidator max_consecutive 3
ConsecutivelyDecreasingDigitValidator max_consecutive 3

Authors

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

Acknowledgments

VERSION HISTORY

VERSION 1.1.0 - 2022-05-23

Added

  • MaximumLengthValidator
  • MaxConsecutiveCharactersValidator
  • ConsecutivelyIncreasingDigitValidator
  • ConsecutivelyDecreasingDigitValidator

Removed

  • N/A

Edited

  • Updated the Options list to show inputs and default values for the new methods.

Bug Fix

  • package has been renamed from "django-advanced_password_validation" to "django_advanced_password_validation" to fix the django.core.exceptions.improperlyconfigured: the app label 'django-advanced_password_validation' is not a valid python identifier error

VERSION 1.0.4 - 2020-03-25

Added

  • N/A

Removed

  • Unused import gettext has been removed.

Edited

  • ContainsNumeralsValidator has been modified to ContainsDigitsValidator to be a more intuitive naming convention (i.e. 15 is one numeral, but two digits)
    • Option min_numerals has been changed to min_digits

Bug Fix

  • ContainsSpecialValidator was only checking for one (1) special character instead of the minimum parameter.

VERSION 1.0.3 - 2020-03-20

Added

  • ContainsNumeralsValidator
  • ContainsUppercaseValidator
  • ContainsLowercaseValidator
  • ContainsSpecialCharactersValidator

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_advanced_password_validation-1.1.1.tar.gz (4.6 kB view details)

Uploaded Source

File details

Details for the file django_advanced_password_validation-1.1.1.tar.gz.

File metadata

File hashes

Hashes for django_advanced_password_validation-1.1.1.tar.gz
Algorithm Hash digest
SHA256 0f84e9bef21c17e18fefd49b8575fca86a1fd8922cf7f41322bb5432911ae09b
MD5 8762f6fe36c886d236de10397a66768c
BLAKE2b-256 a84194640d3663c0666c96be9f344ade2e44a7e303263414fcdcd9ff296e8b85

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page