diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2020-01-24 00:20:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-24 00:20:38 +0100 |
commit | daf71573d0e5f1376264c7d32cf55fae284ba9e5 (patch) | |
tree | fa467f25a0d842c4c5e6910dec1af7d18c217ce7 /app/models | |
parent | ce1dee85b58fb7ab41af7ea1d276853630ce59a0 (diff) |
Fix password change/reset not immediately invalidating other sessions (#12928)
While making browser requests in the other sessions after a password change or reset does not allow you to be logged in and correctly invalidates the session making the request, sessions have API tokens associated with them, which can still be used until that session is invalidated. This is a security issue for accounts that were already compromised some other way because it makes it harder to throw out the hijacker.
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/user.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/user.rb b/app/models/user.rb index a43e63b2e..058a8d5f8 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -247,7 +247,7 @@ class User < ApplicationRecord ip: request.remote_ip).session_id end - def exclusive_session(id) + def clear_other_sessions(id) session_activations.exclusive(id) end |