Skip to main content

Build Status Coverage Status Version

Overview

This app provides a mixin class that adds fallback master password authentication to an existing backend, and a ready to use subclass of Django’s ModelBackend with master password authentication.

This could be dangerous and is generally not recommended for production, but is super handy for development and staging environments.

In a pinch it can also be used temporarily (with a strong password) to troubleshoot end-user issues in production environments, without having to reset their password.

Installation

Install with pip:

$ pip install django-master-password

Update the AUTHENTICATION_BACKEND setting:

AUTHENTICATION_BACKEND += ('master_password.auth.ModelBackend', )

If you want to use the optional make_password management command, update the INSTALLED_APPS setting as well:

INSTALLED_APPS += ('master_password', )

Usage

The MasterPasswordMixin.authenticate() method will first try to authenticate with its superclass, and then it will fallback to master password authentication.

The default implementation authenticates against the MASTER_PASSWORDS setting, which should be a dictionary with clear text or hashed passwords as keys, and callback functions (or None) as values.

A callback function must take a user object as its only argument, and should return True if the user is allowed to authenticate with that password.

For example, you might have one master password that cannot be used for staff or superuser accounts, and another that can be used for any account:

MASTER_PASSWORDS = {
    'user123': lambda u: not u.is_staff and not u.is_superuser,
    'superuser123': None,
}

The use of clear text master passwords is intended as a convenience during development. When DEBUG=False, you must use a strong hashed password with at least 50 characters, 1 digit, 1 uppercase letter, 1 lowercase letter, and 1 non-alphanumeric character:

MASTER_PASSWORDS = {
    'pbkdf2_sha256$'
    '20000$'
    'kGdCcfmJtsUY$'
    'euTmHbJ9sdHirlsM2MvUjHQPDJ6CZdu02gYrxY3aAbI=': None,
}

This is a failsafe against accidentally enabling an unsafe master password for production and staging environments.

You can generate a hashed password in Python:

>>> from django.contrib.auth.models import make_password
>>> print make_password('password123')
pbkdf2_sha256$20000$kGdCcfmJtsUY$euTmHbJ9sdHirlsM2MvUjHQPDJ6CZdu02gYrxY3aAbI=

Or use the make_password management command:

(venv)$ ./manage.py make_password
Password:
Hashed password: pbkdf2_sha256$20000$kGdCcfmJtsUY$euTmHbJ9sdHirlsM2MvUjHQPDJ6CZdu02gYrxY3aAbI=

Customising

If you are already using a custom auth backend, use the mixin class to add master password authentication to it. You will need to define a get_user_object(**kwargs) method, which should be the same as the authenticate() method on the superclass but without any password validation.

You can also override the get_master_passwords() method if you want to get master passwords from another source than the MASTER_PASSWORDS setting.

Release files for django-master-password 1.1.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distribution (wheel)

Table of built distributions (wheels) for django-master-password 1.1.1
File Interpreter ABI Platform
django_master_password-1.1.1-py2.py3-none-any.whl Python 2, Python 3 none any Details

Release files / django_master_password-1.1.1-py2.py3-none-any.whl

Download URL django_master_password-1.1.1-py2.py3-none-any.whl
Size 10.9 kB
Tags Python 2 Python 3
SHA-256 checksum
How to use checksums
2447cdddfa0ccbd63cbc5b52ec153e90d90cbf37d66e921114a22ef5281c44ec
BLAKE2b-256 checksum
How to use checksums
a45f3b27cfe00f0b49f2baac9d3ad95fb06327f1ca55fdf435b3e674b55c3230
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

1.1.1 This release

1 release file

1.1

1 release file

1.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page