Bug 26904: OPAC password recovery allows regexp in email
commit904e926ba0f407b24aa3d94be5afe37b5e3ec075
authorFridolin Somers <fridolin.somers@biblibre.com>
Tue, 3 Nov 2020 08:19:34 +0000 (3 09:19 +0100)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 9 Nov 2020 15:18:25 +0000 (9 16:18 +0100)
treeeda0043afe48ffb694ceae1dc690d70e73a8f346
parent2ad424704fc2ec7c6978fb24c1a292c52d188659
Bug 26904: OPAC password recovery allows regexp in email

When using OPAC password recovery form, opac/opac-password-recovery.pl :
if one provides correct login and an email, there is a check that this email is one of patron's.

This check uses RegExp with case insensitive :
  if ( $email && !( any { /^$email$/i } @emails ) )

This is a security issue since one can simply enter '.*'.
Severity is normal because the login must be a correct.

I propose to use simple string compare with lowercase to be case insensitive.

Test plan :
1) Don't apply patch
2) Enable system preference 'OpacResetPassword'
3) Go to 'OPAC > Log in to your account > Forgot your password?'
4) Enter an existing userid or cardnumber and '.*' in 'Email'
5) The password recovery is created ! (check table 'borrower_password_recovery')
6) Apply patch
7) Enter an existing userid or cardnumber and '.*' in 'Email'
8) You get the message 'No account was found with the provided information.'
9) Enter an existing userid or cardnumber and in 'Email' the corresponding email but with different case
10) The password recovery is created (check table 'borrower_password_recovery')

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Julian Maurice <julian.maurice@biblibre.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
opac/opac-password-recovery.pl