]> git.koha-community.org Git - koha.git/commit
Bug 34349: Validate/escape inputs for task scheduler
authorDavid Cook <dcook@prosentient.com.au>
Mon, 24 Jul 2023 04:31:15 +0000 (04:31 +0000)
committerDanyon Sewell <danyonsewell@catalyst.net.nz>
Fri, 29 Sep 2023 00:21:11 +0000 (13:21 +1300)
commitdbe14261eca2251bb6db4d1723b9481940ec931c
tree2817586b269b0ecd85c81217f6e8bbe7111334b0
parentdfe2bfbcd14fb83d1aeece8f701629e275cf1621
Bug 34349: Validate/escape inputs for task scheduler

This change validates and escapes inputs for task scheduler.

Test plan:
0. Apply patch
1. koha-plack --reload kohadev
2. Go to http://localhost:8081/cgi-bin/koha/tools/scheduler.pl
3. Input a time a minute in the future and leave the date blank
4. Choose an existing report and output format
5. Type a malicious string which is also a valid email address
into the Email field
6. Click "Save"
7. Note that the job is added but the Email is wrapped in single
quotes
8. Try using a non-malicious email address with a single quote.
9. Note that the single quote is escaped, so that it will still
be used by runreport.pl

JD amended patch: tidy

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
[EDIT] Removed pars for $email =~ regex, removed old commented lines.
Signed-off-by: danyonsewell <danyonsewell@catalyst.net.nz>
tools/scheduler.pl