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.
Loading...
Related Quiz
- What is the primary purpose of using ESLint in a JavaScript project?
- How can LIMIT and OFFSET be used effectively to optimize SQL queries?
- How can you ensure that your project’s dependencies are secure and up-to-date?
- Why is it advantageous to use stubbing when dealing with external services or APIs in tests?
- You are designing a real-time data processing system where data needs to be transformed before being sent to another service. How would you implement streams in Node.js to ensure smooth data transformation and transmission?