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
use Rack::Session::Redis, redis_server: redis_options, expire_after: 86400
But the token, it's generation is same even after the logout for a user. This seems to me a security threat. Can please help me if missing on any configuration part.
The text was updated successfully, but these errors were encountered:
Here is how i implemented in a sinatra application:
redis_options = {
host: hostname,
port: port,
password: password,
db: 1,
ssl: true
}
use Rack::Session::Redis, redis_server: redis_options, expire_after: 86400
But the token, it's generation is same even after the logout for a user. This seems to me a security threat. Can please help me if missing on any configuration part.
The text was updated successfully, but these errors were encountered: