Skip to main content

Frictionless authentication with "Magic Links" for your Django project.

Project description

django-sesame

django-sesame provides frictionless authentication with “Magic Links” for your Django project.

It generates URLs containing authentication tokens such as: https://example.com/?sesame=zxST9d0XT9xgfYLvoa9e2myN

Then it authenticates users based on tokens found in URLs.

More broadly, it supports a wide range of use cases for stateless, token-based authentication.

Please review (in)security considerations before using django-sesame.


Documentation is available on ReadTheDocs.


Requirements

django-sesame is tested with:

  • Django 3.2 (LTS) and 4.0;

  • Python ≥ 3.6.

It requires django.contrib.auth.

Getting started

Install django-sesame:

$ pip install django-sesame

Open your project settings and add "sesame.backends.ModelBackend" to the AUTHENTICATION_BACKENDS setting. Extending the default value, this looks like:

AUTHENTICATION_BACKENDS = [
    "django.contrib.auth.backends.ModelBackend",
    "sesame.backends.ModelBackend",
]

Now, your project can authenticate users based on django-sesame tokens.

Quick example

Configure LoginView in your URLconf:

from django.urls import path
from sesame.views import LoginView

urlpatterns = [
    ...,
    path("sesame/login/", LoginView.as_view(), name="sesame-login"),
    ...,
]

Load a user from the database:

>>> from django.contrib.auth import get_user_model
>>> User = get_user_model()
>>> user = User.objects.first()

Generate a login URL for this user:

>>> from sesame.utils import get_query_string
>>> LOGIN_URL = "https://127.0.0.1:8000/sesame/login/"
>>> LOGIN_URL + get_query_string(user)
'https://127.0.0.1:8000/sesame/login/?sesame=zxST9d0XT9xgfYLvoa9e2myN'

(Your token will be different from this example.)

Make sure that you’re logged out. Open the login URL. You are logged in!

Use cases

Known use cases for django-sesame include:

  1. Login by email, an attractive option on mobile where typing passwords is uncomfortable. This technique is prominently deployed by Slack.

    If you’re doing this, you should define a small SESAME_MAX_AGE, perhaps 10 minutes.

  2. Authenticated links. For example, you can generate a report offline and, when it’s ready, email a link to access it. Authenticated links work even if the user isn’t logged in on the device where they’re opening it.

    Likewise, you should configure an appropriate SESAME_MAX_AGE, probably a few days.

    Since emails may be forwarded, authenticated links shouldn’t log the user in. They should only allow access to specific views.

  3. Sharing links, which are a variant of authenticated links. When a user shares content with a guest, you may create a phantom account for the guest and generate an authenticated link tied to that account or you may reuse the user’s account.

    Email forwarding is also likely in this context. Make sure that sharing links don’t log the user in.

  4. Authentication of WebSocket connections. The web application gets a token generated by the Django server and sends it over the WebSocket connection. The WebSocket server authenticate the connection with the token.

    Here’s an example with the websockets library.

  5. Non-critical private websites, for example for a family or club site, where users don’t expect to manage a personal account with a password. Authorized users can bookmark personalized authenticated URLs.

    Here you can rely on the default settings because that’s the original — admittedly, niche — use case for which django-sesame was built.

(In)security

The major security weakness in django-sesame is a direct consequence of the feature it implements: whoever obtains an authentication token is able to authenticate to your website.

URLs end up in countless insecure places: emails, referer headers, proxy logs, browser history, etc. You can’t avoid that. At best you can mitigate it by creating short-lived or single-use tokens.

Otherwise, a reasonable attempt was made to provide a secure solution. Tokens are secured with modern cryptography. There are configurable options for token invalidation.

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-sesame-3.1.tar.gz (18.0 kB view details)

Uploaded Source

Built Distribution

django_sesame-3.1-py3-none-any.whl (19.9 kB view details)

Uploaded Python 3

File details

Details for the file django-sesame-3.1.tar.gz.

File metadata

  • Download URL: django-sesame-3.1.tar.gz
  • Upload date:
  • Size: 18.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.14 CPython/3.10.2 Darwin/21.5.0

File hashes

Hashes for django-sesame-3.1.tar.gz
Algorithm Hash digest
SHA256 5ca0366259f86e5c0d38ee6401c3df39cf9b7af9dfcc13cc229bc2b7cc862a9b
MD5 923102bf404ecad347d1103518d1cb7d
BLAKE2b-256 2f541175251d38a323bfd787b24dfc6f4e62b81fd480379834982f986dc2a9da

See more details on using hashes here.

File details

Details for the file django_sesame-3.1-py3-none-any.whl.

File metadata

  • Download URL: django_sesame-3.1-py3-none-any.whl
  • Upload date:
  • Size: 19.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.14 CPython/3.10.2 Darwin/21.5.0

File hashes

Hashes for django_sesame-3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 91ede4fe1bc6e6a8994441adf747f75b9e7e76a6a7c96e76c2980f8ac10dce60
MD5 2bf4782ad9c51b3933854f95a1dc6914
BLAKE2b-256 31330ff417e8c56e71845518ec3fbab189bd53f195c20768a31ac9ea0c06dcac

See more details on using hashes here.

Supported by

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