Django application for FIDO protocol
Project description
django-fido
Django application for FIDO protocol
Django-fido provides basic components for FIDO 2 authentication - model to store user's FIDO 2 authenticator data and basic views.
Table of Contents
Dependencies
- Python 3.5 and higher
- Django >= 1.11
Configuration
-
Add
django_fido
toINSTALLED_APPS
. -
Add
django_fido.backends.Fido2AuthenticationBackend
toAUTHENTICATION_BACKENDS
. -
Link django-fido URLs into your
urls.py
:urlpatterns += [ url(r'', include('django_fido.urls')), ]
-
If you wish, set string variable
DJANGO_FIDO_RP_NAME
.
One step authentication
You can also decide to use one step authentication. In this case, you will use just one authentication form, that will collect username, password and FIDO2 credentials. In addition to the configuration above, you also need to:
- Set
DJANGO_FIDO_TWO_STEP_AUTH
toFalse
. - Replace
django_fido.backends.Fido2AuthenticationBackend
withdjango_fido.backends.Fido2GeneralAuthenticationBackend
inAUTHENTICATION_BACKENDS
. - Set
DJANGO_FIDO_AUTHENTICATION_BACKENDS
to the list of your additional authentication backends, if you use others thandjango.contrib.auth.backends.ModelBackend
. - Set
data-autosubmit-off
attribute on the form element of your login page.
Please note that your login form must have a field named username
, even if your USERNAME_FIELD
is not username
.
Metadata download
If you want to be able to download authenticator metadata, you need to set DJANGO_FIDO_METADATA_SERVICE
setting.
It is a dictionary, with an ACCESS_TOKEN
as the only mandatory key.
Then you can periodically run the download_authenticator_metadata
management command.
If metadata are available for the given Authenticator
, its metadata
property will be an object.
The level
, vulnerabilities
and is_update_available
methods on metadata
can be used to determine the trust and certification level.
Changes
See changelog.
Testing
Use tox
to run tests
tox
License
See LICENSE.
Changelog
0.27
- Throw form error on unknown attestation format instead of a server error.
0.26
- Improve metadata matching for U2F authenticators.
0.25
- BREAKING - AuthenticatorMetadata are now looked up by URL and not by an identifier. If you are downloading metadata, you need to clear them all and re-download to prevent multiple objects for each authenticator.
- Update JS dependencies
0.24
- Metadata validation
0.23
- Display no authenticator error
error
key in repsponse ofBaseFido2RequestView
is now deprecated and will be removed in the future- Added metadata download and reporting
0.22
- Use username as a backup
displayName
0.21
- Create FIDO errors list when needed unless it already exists
- Clear FIDO errors list before each registration or authentication request
0.20
- Fix Django 3.0 compatibility issues in templates
0.19
- Added class attribute
attestation_types
toFido2ViewMixin
to specify allowed attestation types during registration. - Set default value of setting
DJANGO_FIDO_AUTHENTICATION_BACKENDS
to list containingdjango.contrib.auth.backends.ModelBackend
0.18
- Fix issue caused by default value of
DJANGO_FIDO_AUTHENTICATION_BACKENDS
. It is now empty list.
0.17
- BREAKING Replace
Fido2ModelAuthenticationBackend
with more generalFido2GeneralAuthenticationBackend
.
0.16
- BREAKING Authenticator
label
has to be unique for user. This can potentialy break if you have multiple tokens for user. - Add authenticator admin.
- Add one step authentication.
0.15
- Add
DJANGO_FIDO_RP_NAME
setting. - Add back autosubmit on login view.
- Display error in login view on server request error.
0.14
- Add label to Authenticator model.
- Remove autosubmit on registration view.
- Update JS dependencies.
0.13
- Support fido2 0.6-0.8.
- Add support for python 3.8.
- Fixup annotations.
0.12
- Fix dependencies (add webpack-cli).
0.11
- Fix webpack output path.
0.10
- Fix dependencies (add webpack).
0.9
- Refactor JS code.
- Update setup.
- Add bumpversion.
0.8
- Fix JS translation lazynes.
- For empty values, submit button reload page.
0.7
- Add credential ID field.
- Drop
credential_data
field. - Update error messages.
- Mark django-fido as typed.
- Add JS hooks.
0.6
- Use FIDO 2 instead of U2F.
- Drop python 2.7.
- Add annotations and mypy check.
- Move repository to a CZ.NIC account.
0.5
- Fix JS translation lazynes
0.4
- Update JS messages.
- Drop unused
polint
environment in tox.
0.3
- Store attestation certificate in database #6
- Install package data #7
0.2
- Accept any arguments in
BaseU2fRequestView.get
- Add czech translations
- Fix links in README
0.1
- Initial version
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
Built Distribution
File details
Details for the file django-fido-0.27.tar.gz
.
File metadata
- Download URL: django-fido-0.27.tar.gz
- Upload date:
- Size: 527.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 14c14a2cebe264968b48ee58bb4e600aefd5719b655dfdbb788c926d00c048a9 |
|
MD5 | bdf237b4f2106615ae8749bfa92d85a9 |
|
BLAKE2b-256 | 38bad67514a1b3e2d2900e440c9e54c968735acf39c651bcf7c4eb7db7f9d586 |
Provenance
File details
Details for the file django_fido-0.27-py3-none-any.whl
.
File metadata
- Download URL: django_fido-0.27-py3-none-any.whl
- Upload date:
- Size: 641.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90030b6451b793afe7f598b6eb342b11a9bae8dd469d9dd32e026805e9cdf183 |
|
MD5 | 7b4b073dfd52cff5501905d9b537a63a |
|
BLAKE2b-256 | afa1afa5b682e50384e2211b52a590284c6daddac4c81281c421b953103a9381 |