]> git.koha-community.org Git - koha.git/commit
Bug 29914: Make check_cookie_auth compare the userid
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 20 Jan 2022 09:10:05 +0000 (10:10 +0100)
committerAndrew Fuerste-Henry <andrew@bywatersolutions.com>
Thu, 27 Jan 2022 20:33:39 +0000 (20:33 +0000)
commit3ae3b6a1864c75cea498cee8dfb5501adf798c29
tree301dab7671fcfc96f331d524e65a439a630ba7bc
parent5f71e5ff602207fddac0520f2af8eaf5fab31ea4
Bug 29914: Make check_cookie_auth compare the userid

check_cookie_auth is assuming that the user is authenticated if a cookie exists
and that the login/username exists in the DB.

So basically if you hit the login page, fill the login input with a
valid username, click "login"
=> A cookie will be generated, and the sessions table will contain a
line with this session id.
On the second hit, if the username is in the DB, it will be enough to be
considered authenticated.

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
(cherry picked from commit 7114dc2fb1a1440dd031ee771efee6e50bb86540)
Signed-off-by: Victor Grousset/tuxayo <victor@tuxayo.net>
(cherry picked from commit be18dc19b8e84919416eab5cd43f4ed345fc280a)

Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com>
C4/Auth.pm
Koha/REST/V1/Auth.pm