|
|
|
|
|
by scarface74
2576 days ago
|
|
If the cookie is spoofed and someone got another clients authorization token, then they would get any documents that user was authorized to see anyway. But you don’t do cookie.userid. You send the username and password to an authentication service which generates a token with a checksum. The token along with the username and permission is cached in something like Redis. On each request, middleware gets the user information back using the token. |
|