Bugzilla – Attachment 93847 Details for
Bug 23771
CAS/Shib Authentication can fail when multiple users with no userid/cardnumber defined and one of them is locked
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 23771: Don't look for patrons if we don't have a userid
Bug-23771-Dont-look-for-patrons-if-we-dont-have-a-.patch (text/plain), 1.36 KB, created by
Nick Clemens (kidclamp)
on 2019-10-07 20:13:02 UTC
(
hide
)
Description:
Bug 23771: Don't look for patrons if we don't have a userid
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2019-10-07 20:13:02 UTC
Size:
1.36 KB
patch
obsolete
>From 9630f5cb932539e69df28a3f794672e0b696cd28 Mon Sep 17 00:00:00 2001 >From: Nick <nick@bywatersolutions.com> >Date: Mon, 7 Oct 2019 20:09:04 +0000 >Subject: [PATCH] Bug 23771: Don't look for patrons if we don't have a userid > >While the code requires external auth to test, the change is simple enough I >think a good read would suffice > >To test: >1 - You either need Shib or CAS enabled and setup >2 - Add two users with blank.null cardnumbers >3 - Lock those user accounts > Set failedloginattempts to 1 > Try a bad login with the userid > Or set via the DB >4 - Try a good login via the external auth >5 - Note it fails >6 - Apply patch >7 - Login now succeeds >--- > C4/Auth.pm | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > >diff --git a/C4/Auth.pm b/C4/Auth.pm >index 24296c5996..389c402613 100644 >--- a/C4/Auth.pm >+++ b/C4/Auth.pm >@@ -1781,8 +1781,10 @@ sub checkpw { > my $shib_login = $shib ? get_login_shib() : undef; > > my @return; >- my $patron = Koha::Patrons->find({ userid => $userid }); >- $patron = Koha::Patrons->find({ cardnumber => $userid }) unless $patron; >+ if ( defined $userid ){ >+ my $patron = Koha::Patrons->find({ userid => $userid }); >+ $patron = Koha::Patrons->find({ cardnumber => $userid }) unless $patron; >+ } > my $check_internal_as_fallback = 0; > my $passwd_ok = 0; > # Note: checkpw_* routines returns: >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 23771
:
93847
|
93860
|
93951
|
94018