When securing a web application using JWT, implementing ________ helps in mitigating the risk of token interception.

  • Token expiration
  • Strong encryption
  • Public key authentication
  • Rate limiting
When securing a web application with JWT (JSON Web Tokens), implementing strong encryption is crucial to mitigate the risk of token interception. Encryption ensures that the token's content remains confidential even if intercepted. Token expiration (Option 1) deals with token validity periods, while public key authentication (Option 3) is related to how JWT signatures are verified. Rate limiting (Option 4) is a measure to control access but doesn't directly address token interception.
Add your answer
Loading...

Leave a comment

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