Canceling JWT tokens in .NET Core

Canceling JWT tokens in .NET Core

Quite some time ago I published an article (along with the source code) about refreshing the JWTtokens. In the following post, I’m going to focus on canceling the token, thus it can’t be used by anyone else. This tutorial includes the video, so it might be easier to understand the implementation flow.


 

Given that we do not make use of OAuth (IdentityServer etc.) what can we do in terms of canceling the active tokens? We have a few options:

  • Remove token on the client side (e.g. local storage) – will do the trick, but doesn’t really cancel the token.
  • Keep the token lifetime relatively short (5 minutes or so) – most likely we should do it anyway.
  • Create a blacklist of tokens that were deactivated – this is what we are going to focus on.

The important note is that in order to make it reliable we will use the Redis to store the deactivated tokens on an extremely fast caching server. Whether you host just a single instance of your application or multiple ones, it’s the best idea to use Redis – otherwise, when server goes down, you will lose all of the deactivated tokens blacklist being kept in a default server cache (not to mention the different data if each server would keep its own cache).

Alright, no more theory, proceed with coding, where we will start with the interface:

And process with its implementation, where the basic idea is to keep track of deactivated tokens only and remove them from a cache when not needed anymore (meaning when the expiry time passed) – they will be no longer valid anyway.

As you can see, there are 2 helper methods that will use the current HttpContext in order to make things even easier.
Next, let’s create a middleware that will check if the token was deactivated or not. That’s the reason why we should keep them in cache – hitting the database with every request instead would probably kill your app sooner or later (or at least make it really, really slow):

Eventually, let’s finish our journey with implementing an endpoint for canceling the tokens:

For sure, we could make it more sophisticated, via passing the token via URL, or by canceling all of the existing user tokens at once (which would require an additional implementation to keep track of them), yet this is a basic sample that just works.

Make sure that you will register the required dependencies in your container and configure the middleware:

And provide a configuration for Redis in appsettings.json file:

Try to run the application now and invoke the token cancelation endpoint – that’s it.
Source code is available here.

11 Comments Canceling JWT tokens in .NET Core

  1. Pingback: Canceling JWT tokens in .NET Core - How to Code .NET

  2. nortonsetup

    Norton Utilities can be broadly defined as a utility software suite, which is designed to provide complete assistance for analyzing, configuring, optimizing and maintaining a system. While downloading, installing or configuring the antivirus on your device, you may face an error. If it happens to you, don’t get panic and call our Norton.com/Setup number 1-888-406-4114. Our technicians will provide you an instant support for Norton Product.

    Why Choose us:

    – Certified Technicians
    – 24/7 Availability
    – Best Services
    – Prompt Delivery

    Reply
  3. Jose Garcia

    My app return this message :”It was not possible to connect to the redis server(s); to create a disconnected multiplexer, disable AbortOnConnectFail. SocketFailure on PING” what can i do??

    Reply
  4. Maciek Etgens

    First of all, the article is great.

    What cannot I understand is.. how can I cancel token for the specified user? When I know the user Id but I don’t know his token?

    Reply
  5. rithu rawat

    Outstanding blog thanks for sharing such wonderful blog with us ,after long time came across such knowlegeble blog. keep sharing such informative blog with us.

    Reply
  6. temple run

    Thank you for posting such a great article! I found your site perfect for my needs. It contains interesting and useful posts for me. Please continue to uphold. Thank you for this great article.

    Reply

Leave a Reply to rithu rawat Cancel reply

Your email address will not be published. Required fields are marked *