You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using lua resty session in an api gateway I am implementing, & I want to include some security features that will block a user from stealing another users session.
I found in the documentation these fields that seem to do what I want:
session.check.ssi
session.check.ua
session.check.addr
session.check.schema
But I am not quite sure how do they work... I couldn't find any segment in the lua-resty-session code that validates the request with these checks...
Can someone explain to me how & where does lua-resty-session actually check that the request came from the same ssl session / user agent / client address / schema?
And what happens if a request does not match one of these parameters?
The text was updated successfully, but these errors were encountered:
I am using lua resty session in an api gateway I am implementing, & I want to include some security features that will block a user from stealing another users session.
I found in the documentation these fields that seem to do what I want:
session.check.ssi
session.check.ua
session.check.addr
session.check.schema
But I am not quite sure how do they work... I couldn't find any segment in the
lua-resty-session
code that validates the request with these checks...Can someone explain to me how & where does
lua-resty-session
actually check that the request came from the same ssl session / user agent / client address / schema?And what happens if a request does not match one of these parameters?
The text was updated successfully, but these errors were encountered: