Bugzilla – Attachment 83183 Details for
Bug 21997
SIP patron information requests can lock patron out of account
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21997 - SIP patron information requests can lock patron out of account
Bug-21997---SIP-patron-information-requests-can-lo.patch (text/plain), 1.72 KB, created by
Kyle M Hall (khall)
on 2018-12-13 19:59:36 UTC
(
hide
)
Description:
Bug 21997 - SIP patron information requests can lock patron out of account
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2018-12-13 19:59:36 UTC
Size:
1.72 KB
patch
obsolete
>From af08327d9488171598401f351f849b4a2cf4f025 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Thu, 13 Dec 2018 14:56:22 -0500 >Subject: [PATCH] Bug 21997 - SIP patron information requests can lock patron > out of account > >Many SIP services send an empty password field (AD). Even if allow_empty_passwords is enabled for the given SIP account, this empty password is run though Koha's password checker which increments the number of login attempts for a patron. Thus repeated patron information requests can lock a patron out! Empty password fields in SIP should not call for a password check if allow_empty_passwords is enabled. > >Test Plan: >1) Enable a patron password attempt with a limit of 3 >2) Send 4 patron information requests with an empty AD field >3) Note the patron's account is now locked >4) Apply this patch >5) Repeat step 2 with a different patron >6) Note the patron's account does not get locked! >--- > C4/SIP/Sip/MsgType.pm | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/C4/SIP/Sip/MsgType.pm b/C4/SIP/Sip/MsgType.pm >index 9ec126ed12..43b02d29ab 100644 >--- a/C4/SIP/Sip/MsgType.pm >+++ b/C4/SIP/Sip/MsgType.pm >@@ -965,9 +965,10 @@ sub handle_patron_info { > if ( defined($patron_pwd) ) { > > # If patron password was provided, report whether it was right or not. >- $password_rc = $patron->check_password($patron_pwd); > if ( $patron_pwd eq q{} && $server->{account}->{allow_empty_passwords} ) { > $password_rc = 1; >+ } else { >+ $password_rc = $patron->check_password($patron_pwd); > } > $resp .= add_field( FID_VALID_PATRON_PWD, sipbool( $password_rc ) ); > } >-- >2.17.2 (Apple Git-113)
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 21997
:
83183
|
84230
|
84989
|
84990
|
84991
|
84992
|
85360
|
85361