Skip to main content

A Django password hasher to store passwords in plaintext.

Project description

django-plaintext-password

CI PyPI PyPI - Python Version PyPI - Wheel PyPI - Status PyPI - License

A Django password hasher to store passwords in plaintext.

This hasher is over 100000x faster than Django's default hasher, and around 20x faster than the MD5-based hasher.

Installation and usage

pip install django-plaintext-password

Then add plaintext_password.PlaintextPasswordHasher to PASSWORD_HASHERS in settings.py. To ensure it's used by default, make it the first or only item.

How does it work?

By default, Django will store the password password123 in a format similar to:

pbkdf2_sha256$216000$gd57n4OWJrXh$Xs/TqhwJICOxsLONGlKXorjuWccooiuJmJOUaxbwcOQ=

This is good for security as the password has been both salted and hashed before being saved into the database, making it almost impossible to retrieve the original password. This library however, stores the password as-is:

plaintext$$password123

This makes searching by password possible, as well as comparing users passwords and allowing you to email users their passwords if they forget them - neat!

In addition to storing the values directly in the database for easy retrieval, the comparison is done simply with ==, rather than using secrets.compare_digest.

"Should I use this in production?"

Oh definitely not. Storing passwords in plaintext is a very very bad thing. Django's defaults are incredibly secure and should be used unless you have a good reason not to.

For more on why using this in production is a terrible idea, check out How to store passwords.

When running deployment checks, this will throw a "CRITICAL" error if in use.

Why?

Well, why not?

Although in all seriousness, If as part of your tests you're creating a large number of users, or just a couple users but you've got a lot of tests, you can get quite a performance improvement by simplifying the password hasher.

Unfortunately due to a limitation (and feature) with Django, it's not possible to store just the value directly, it must be prefixed with the algorithm.

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_plaintext_password-0.3.0.tar.gz (4.9 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django_plaintext_password-0.3.0.tar.gz.

File metadata

File hashes

Hashes for django_plaintext_password-0.3.0.tar.gz
Algorithm Hash digest
SHA256 4f7eafd75c9e0d69a031dfcd6da6c1ddd2e483e6699960330329196ce49ab0cb
MD5 46f9f91a875318f5c085b06fc6f35f5f
BLAKE2b-256 de8bd2fdbd23ceb46a157f10efce7c2beb9b79c9033069b512fb3ddf1fcd3b32

See more details on using hashes here.

Provenance

File details

Details for the file django_plaintext_password-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_plaintext_password-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e8de99210ca7954953ff702747b94dba0066567462b185d4ef6bd2cfda3c2d36
MD5 d0345dc157ec0c9cf6c2378008fcd466
BLAKE2b-256 08a3fa7424be91d54ad59e547984fd7174548c01afa5f059ab9a1e4a9363e778

See more details on using hashes here.

Provenance

Supported by

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