Giter Site home page Giter Site logo

Invalidate token about django-sesame HOT 5 CLOSED

thomascenni avatar thomascenni commented on May 18, 2024
Invalidate token

from django-sesame.

Comments (5)

aaugustin avatar aaugustin commented on May 18, 2024 1

Right now the only way to invalidate a token is to change the user's password. There's several ways to achieve this, which may or may not be practical:

  • If the user a usable password, you can ask for it, check it, and set the same password — this is enough to invalidate tokens.
  • If the user doesn't have a usable password, you can simply set another unusable password.

Depending on how you're using django-sesame, you may also be able to do something with the recently introduced feature - scoped tokens. The workflow would look like:

  • generate a unique scope along with each token
  • pass the token and the scope in the URL
  • if there's already an entry in the database with that scope, abort
  • else, validate the token with the scope and proceed as you currently do
  • if the data is valid, store the data and the scope in the database.

Hope this helps!

from django-sesame.

thomascenni avatar thomascenni commented on May 18, 2024

Merci Aymeric!
I have already set unusable passwords, I will do in this way. May be later I will evaluate your proposed workflow.
Thanks!

from django-sesame.

aaugustin avatar aaugustin commented on May 18, 2024

Good, then it's as simple as:

assert user.has_usable_password()  # let's not destroy a password accidentally
user.set_unusable_password()  # change password to invalidate token
user.save()

from django-sesame.

Mapiarz avatar Mapiarz commented on May 18, 2024

@aaugustin How would one invalidate a token programmatically without having the user give the password? Assuming the user has a usable password.

from django-sesame.

aaugustin avatar aaugustin commented on May 18, 2024

django-sesame doesn't provide a way to do this — because it doesn't store any state beyond what django.contrib.auth already stores, and there's no piece of state that you can alter to get this effect.

from django-sesame.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.