Skip to main content

Two factor authentication for Wagtail

Project description

This Django app add’s two factor authentication to Wagtail. Behind the scenes it use django-otp which supports Time-based One-Time Passwords (TOTP). This allows you to use various apps like Authy, Google Authenticator, or 1Password.

Installation

pip install wagtail-2fa

Then add the following lines to the INSTALLED_APPS list in your Django settings:

INSTALLED_APPS = [
    # ...
    'wagtail_2fa',
    'django_otp',
    'django_otp.plugins.otp_totp',
    # ...
]

Next add the required middleware to the MIDDLEWARE. It should come after the AuthenticationMiddleware:

MIDDLEWARE = [
    # .. other middleware
    # 'django.contrib.auth.middleware.AuthenticationMiddleware',

    'wagtail_2fa.middleware.VerifyUserMiddleware',

    # 'wagtail.core.middleware.SiteMiddleware',
    # .. other middleware
]

Settings

The following settings are available (Set via your Django settings):

  • WAGTAIL_2FA_REQUIRED (default False): When set to True all staff, superuser and other users with access to the Wagtail Admin site are forced to login using two factor authentication.

Sandbox

First create a new virtualenv with Python 3.6.1 and activate it. Then run the following commands:

  • make sandbox

You can then visit http://localhost:8000/admin/ and login with the following credentials:

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

wagtail-2fa-0.1.0.tar.gz (11.1 kB view details)

Uploaded Source

Built Distribution

wagtail_2fa-0.1.0-py3-none-any.whl (19.1 kB view details)

Uploaded Python 3

File details

Details for the file wagtail-2fa-0.1.0.tar.gz.

File metadata

  • Download URL: wagtail-2fa-0.1.0.tar.gz
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for wagtail-2fa-0.1.0.tar.gz
Algorithm Hash digest
SHA256 1b094148fe0529c41687fb84717523352fe34e6b2bd69bf32cae2947a9bb2ead
MD5 fda724dec12a05ffb4e5d16ef6cc5caa
BLAKE2b-256 6e9594639543653ca866b2b6da2929c0b25706588b246c864a9ed1859fa74c01

See more details on using hashes here.

File details

Details for the file wagtail_2fa-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for wagtail_2fa-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 454aae52ed0884a1cbee95c64539e3f39f1aee323e8f0b00e4845bcec5de33c4
MD5 cd42bafc2a1255d3d6bbecedd74835ec
BLAKE2b-256 43adb3a8b126d229eeaad4f50b86d82437ad47eb24eaa9e9709796db424a4098

See more details on using hashes here.

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