Category Archives: Uncategorized

JSON Web Tokens (JWTs) are not safe

In this book, we go into JWTs, their perceived benefits, and actual dangers. We’ll also discuss battle-tested solutions to replace them. We’ll explore:

  • HTTP Sessions, Authentication, and Authorization
  • The need for something like JWT
  • JWTs’ perceived benefits and actual dangers 
  • JWT workarounds and the complexities around that
  • Using Redis for session storage instead of JWTs
  • Sessions storage when Redis is used as a Primary DB 
  • Finally, you’ll also learn how to use Redis + JWT! Another common approach to managing user session

Article link

wordpress update 5.9.2 – images issues

On WP 5.9.2 the includes/css/dist/block-library/style.min.css has the following CSS declaration:

    html :where(img){ height: auto; max-width: 100% }

You can try to use replace with, the the file or use a plugin for custom css.

    html :where(img){ height: auto; max-width: fit-content; }

More readings at