We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0c76eeb + 5751ba5 commit e43fa39Copy full SHA for e43fa39
1 file changed
README.md
@@ -14,7 +14,7 @@ Checklist of the most important security countermeasures when designing, testing
14
15
### JWT (JSON Web Token)
16
- [ ] Use a random complicated key (`JWT Secret`) to make brute forcing the token very hard.
17
-- [ ] Don't extract the algorithm from the payload. Force the algorithm in the backend (`HS256` or `RS256`).
+- [ ] Don't extract the algorithm from the header. Force the algorithm in the backend (`HS256` or `RS256`).
18
- [ ] Make token expiration (`TTL`, `RTTL`) as short as possible.
19
- [ ] Don't store sensitive data in the JWT payload, it can be decoded [easily](https://jwt.io/#debugger-io).
20
0 commit comments