|
|
|
|
|
by minraws
30 days ago
|
|
I think the perspective is most systems don't need validation based security, only access based security. So it's fine for some services to serve requests after the access has been revoked for a few extra minutes or seconds. For some it isn't. I have no say on the matter, I feel like security lax-ness makes sense for games, since jacking sessions with jwt is significantly less consequential and you have other sources to validate session health, such as route and ip address. You can always revoke jwt if the ip address for which it was issue has changed or the route is different and so on and can be even more secure against forgery attacks. Still not perfect and I find OP's take the it's good enough for banking to be sus. But it's definitely not a scam, it's simple easy and trivial to use for a lot of low risk services. You should build a map of low risk and high risk access and not use jwt for anything high risk, because jwts definitely provider better user experience for relatively less effort and resources and technical complexity needed. |
|