Bug 25371 - Koha::Email doesn't validate header data
Summary: Koha::Email doesn't validate header data
Status: NEW
Alias: None
Product: Koha
Classification: Unclassified
Component: Architecture, internals, and plumbing (show other bugs)
Version: Main
Hardware: All All
: P5 - low normal
Assignee: Bugs List
QA Contact: Testopia
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-05-05 06:08 UTC by David Cook
Modified: 2020-05-06 00:24 UTC (History)
1 user (show)

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:
Circulation function:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description David Cook 2020-05-05 06:08:52 UTC
Koha::Email should validate the data being used for the email headers.

Mail::Sendmail doesn't do proper validation itself, so we need to do it at a higher level.
Comment 1 David Cook 2020-05-05 06:14:53 UTC
I have a bunch of examples for this, but the simplest one is opac-sendbasket.pl. You can put anything you want in "Email address" and it will try to email it.
Comment 2 David Cook 2020-05-05 06:44:26 UTC
At first, I thought this would be easy, as we could just use Email::Valid->address() in Koha::Email, but it seems that we sometimes pass in 1 email address and sometimes we pass in multiple (with a range of separators).

Koha/Illrequest.pm seems multiple emails with separator ";" (by replacing null bytes?)
basket/sendbasket.pl uses 1 email address (in theory)
C4/Letters.pm has a range of 1 or 1+ emails, and separates with a comma.
misc/cronjobs/runreport.pl looks like 1 email address
opac/opac-sendbasket.pl uses 1 email address (in theory)
opac/opac-sendshelf.pl uses 1 email address (in theory)
virtualshelves/sendshelf.pl

--

Off the top of my head, the way to do it would be to add a setter called "add_to_address()" to Koha::Email, and add them one by one (and validate them one by one).

But it's used across quite a few scripts, so that will be a pain to test. I suppose it would be a pain in any case.
Comment 3 David Cook 2020-05-05 07:01:35 UTC
This will probably take a looooong time to fix. So I might look at damage control...
Comment 4 Jonathan Druart 2020-05-05 08:54:31 UTC
Why not splitting on ',' and ';' then validate each, just before sending the email?
Comment 5 David Cook 2020-05-05 23:40:31 UTC
(In reply to Jonathan Druart from comment #4)
> Why not splitting on ',' and ';' then validate each, just before sending the
> email?

It's a good question. I am uncertain if that would be robust enough. 

Looking at Mail::Sendmail, you could also use a space as a separator. Although I suppose if we only supported ',' and ';' as separators, that would mean our data validation would flag a problem if a space were used as a separator, which would be good.

I'm trying to think if you could craft a malicious string using the ',' and ';'. I suppose not since that would just generate more tokens, and since we're validating each token... yeah that should be OK.

Mail::Sendmail::sendmail is run in C4/Letters.pm, Koha/Illrequest.pm, opac/opac-password-recovery.pl, opac/opac-sendshelf.pl, opac/opac-sendbasket.pl, and virtualshelves/sendshelf.pl

The tricky part is really the error-handling rather than the validation itself.
Comment 6 David Cook 2020-05-05 23:46:10 UTC
Since both Koha::Email and Mail::Sendmail are used across many files, doing an update seems to come with many risks.

For now, I might do more localized validation on the highest risk pages (ie OPAC pages).