Firstly, I have been unable to recreate this issue myself, either in a production environment or in k-t-d. Many libraries are reporting 403 errors after signing back into Koha. The only remedy seems to be clearing the browser cache. This is happening to sessions in the staff client but also happening frequently in the SCO module.
To recreate: Generic: 1. Set timeout to something low for testing, I set mine to 10 seconds 2. Go to a page when you can do some kind of POST action 3. Wait for the timeout to happen 4. Do the post request thing, 5. You need to log back in, get a 403 error. My specific scenario: 1. Set timeout to something low for testing, I set mine to 10 seconds 2. Go to edit item page. 3. Wait for the timeout to happen 4. Try to delete an item, you are sent back to the home page. 5. When you log back there is a 403 error.
My test plan recreates the problem in the staff interface but not in the SCO module.
You can see that those particular steps to reproduce are a duplicate of bug 37041 by editing the MARC framework you are testing against, and removing the plugin from any 952 subfield that has one. Then, you get a login form, log in, it didn't delete but if you try again within 10 seconds you can delete. Unfortunately, the real status of that bug is "In Argument." Not a fan of the way the system preference saving AJAX just silently eats a 403, so to reset timeout you have to log in on another page and get to resetting it before you time out again.
When I heard about this one on Mattermost, I was thinking about bug 36586 In this case... it is probably related to bug 36514. Because if you're kicked out of Koha without a new anonymous session, you won't have a valid session, and thus won't be able to generate a valid CSRF token, so you'll get that 403 error. -- Looking at check_cookie_auth in C4::Auth, I can see the following: 1846 if ( !$lasttime || ( $lasttime < time() - $timeout ) ) { 1847 # time out 1848 $session->delete(); 1849 $session->flush; 1850 return ("expired", undef); I reckon that's the problem you're describing here. -- There's probably a bunch of places where we delete the session instead of removing the authenticated session and replacing with an anonymous session. But... needs more investigating.
I can easily recreate an 403 (running koha 24.05): - go to https://KOHA/cgi-bin/koha/mainpage.pl - when already logged in, click log out - then log in - 403 As my bookmark was to mainpage.pl I ran into this quite often. When starting from https://KOHA/ everything works as expected
(In reply to Jan Kissig from comment #5) > I can easily recreate an 403 (running koha 24.05): > > - go to https://KOHA/cgi-bin/koha/mainpage.pl > - when already logged in, click log out > - then log in > - 403 > > As my bookmark was to mainpage.pl I ran into this quite often. When starting > from https://KOHA/ everything works as expected I don't recreate using main. Do you?
(In reply to Jan Kissig from comment #5) > I can easily recreate an 403 (running koha 24.05): > > - go to https://KOHA/cgi-bin/koha/mainpage.pl > - when already logged in, click log out > - then log in > - 403 > > As my bookmark was to mainpage.pl I ran into this quite often. When starting > from https://KOHA/ everything works as expected I have to correct my last comment: I had an AJAX call included via intranetuserjs on mainpage which fetched an internal report on $(document).ready(). When I disabled the fetch of the report the recreation of the behavior was not possible. So it seems connected to the AJAX-call after the DOM was built.
(In reply to Jan Kissig from comment #7) > I have to correct my last comment: I had an AJAX call included via > intranetuserjs on mainpage which fetched an internal report on > $(document).ready(). > > When I disabled the fetch of the report the recreation of the behavior was > not possible. So it seems connected to the AJAX-call after the DOM was built. This has already been discussed somewhere... When Koha rendered mainpage.pl, it would've sent you CGISESSID cookie with an anonymous session ID and it rendered the page with a CSRF token linked to that session ID. When your AJAX call made a call, it probably didn't send that CGISESSID cookie. When your AJAX call gets a response, it probably includes a new CGISESSID cookie with a new anonymous session ID, which overwrites the original CGISESSID cookie. When you submit your login, you're using the new CGISESSID cookie and the CSRF token linked to the old CGISESSID cookie. So it'll never work. -- If you update your AJAX call to send with the CGISESSID cookie, you should be fine.
Btw which AJAX call were you making? We might want to fix that endpoint to not send back a cookie. I think that there might be a bug report where we talked about that topic specifically...
(In reply to David Cook from comment #9) > Btw which AJAX call were you making? We might want to fix that endpoint to > not send back a cookie. > > I think that there might be a bug report where we talked about that topic > specifically... on an private window with cookies deleted I opened(In reply to David Cook from comment #8) > (In reply to Jan Kissig from comment #7) > > I have to correct my last comment: I had an AJAX call included via > > intranetuserjs on mainpage which fetched an internal report on > > $(document).ready(). > > > > When I disabled the fetch of the report the recreation of the behavior was > > not possible. So it seems connected to the AJAX-call after the DOM was built. > > This has already been discussed somewhere... > > When Koha rendered mainpage.pl, it would've sent you CGISESSID cookie with > an anonymous session ID and it rendered the page with a CSRF token linked to > that session ID. > > When your AJAX call made a call, it probably didn't send that CGISESSID > cookie. > > When your AJAX call gets a response, it probably includes a new CGISESSID > cookie with a new anonymous session ID, which overwrites the original > CGISESSID cookie. > > When you submit your login, you're using the new CGISESSID cookie and the > CSRF token linked to the old CGISESSID cookie. > > So it'll never work. > > -- > > If you update your AJAX call to send with the CGISESSID cookie, you should > be fine. I took a look at the network requests: On a pivate window I opened my bookmark to /cgi-bin/koha/mainpage.pl it returned a cookie with CGISESSID 67cd... the fetch on document.ready to /cgi-bin/koha/svc/report?id=9 used this cookie (67cd...) in the request but got a new CGISESSID 0bc5... Now I enter the login and submit the page which uses 0bc5... I understand why CSRF-check is failing here as the login-form is linked to the first session 67cd The problem is that the fetch, although it used the given session id, got a new in response which replaced the original. I solved it by only sending the fetch if the login was successful
(In reply to David Cook from comment #9) > Btw which AJAX call were you making? We might want to fix that endpoint to > not send back a cookie. > > I think that there might be a bug report where we talked about that topic > specifically... It was an AJAX to an internal report: https://mykoha/cgi-bin/koha/svc/report?id=9
(In reply to Jan Kissig from comment #10) > I took a look at the network requests: > On a pivate window I opened my bookmark to /cgi-bin/koha/mainpage.pl > it returned a cookie with CGISESSID 67cd... > the fetch on document.ready to /cgi-bin/koha/svc/report?id=9 used this > cookie (67cd...) in the request but got a new CGISESSID 0bc5... > > Now I enter the login and submit the page which uses 0bc5... > > I understand why CSRF-check is failing here as the login-form is linked to > the first session 67cd > > The problem is that the fetch, although it used the given session id, got a > new in response which replaced the original. > > I solved it by only sending the fetch if the login was successful Alternatively, you can send the cookie provided by /cgi-bin/koha/mainpage.pl to the endpoint /cgi-bin/koha/svc/report?id=9 I don't know how your Javascript is written, but do some googling around for things like: const xhr = new XMLHttpRequest(); xhr.withCredentials = true; With fetch, set the "credentials" option to "same-origin" or "include" (depending on your situation). With $.ajax, set xhrFields with "withCredentials: true". I think you probably get my point here.
(In reply to Jan Kissig from comment #11) > On a pivate window I opened my bookmark to /cgi-bin/koha/mainpage.pl > it returned a cookie with CGISESSID 67cd... > the fetch on document.ready to /cgi-bin/koha/svc/report?id=9 used this > cookie (67cd...) in the request but got a new CGISESSID 0bc5... My apologies, after re-reading your comment, I see you said that your AJAX request *did* send the original cookie to /cgi-bin/koha/svc/report?id=9 but that it got a different one back. So your login is for the staff interface... are you calling the report endpoint for the staff interface or the OPAC? I note that /cgi-bin/koha/svc/report doesn't return a cookie on a succesful request, but I do see that the staff interface version does do a get_template_and_user() check on /cgi-bin/koha/svc/report which... is not the right thing to do at all for that endpoint, as I suspect it is failing the auth check and serving you back with a HTML response instead of a JSON response. Ugh. -- (In reply to Jan Kissig from comment #10) > I solved it by only sending the fetch if the login was successful Check out bug 37056. It looks like it's fixed in newer versions. Anyway, we've distracted away from Lucas's other bug here...
I THINK we've seen this happen on the OPAC as well. 1. Was logged into the OPAC 2. Left ... assuming Koha timed out 3. Came back to the OPAC and tried to log in again 4. Successful login, but shown a 403 error with "Form submission: wrong_csrf_token" . or sometimes, not even a successful login. Is this the same error?
(In reply to Lucas Gass (lukeg) from comment #0) > Firstly, I have been unable to recreate this issue myself, either in a > production environment or in k-t-d. > > Many libraries are reporting 403 errors after signing back into Koha. The > only remedy seems to be clearing the browser cache. > > This is happening to sessions in the staff client but also happening > frequently in the SCO module. Btw, bug 36586 should explain the SCO issue.
(In reply to Aleisha Amohia from comment #14) > I THINK we've seen this happen on the OPAC as well. > > 1. Was logged into the OPAC > 2. Left ... assuming Koha timed out > 3. Came back to the OPAC and tried to log in again > 4. Successful login, but shown a 403 error with "Form submission: > wrong_csrf_token" . or sometimes, not even a successful login. > > Is this the same error? Sounds like it. I haven't gotten any complaints like this yet, but I should take a look sometime...