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.
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.
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.
This will probably take a looooong time to fix. So I might look at damage control...
Why not splitting on ',' and ';' then validate each, just before sending the email?
(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.
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).