From 545a7bbbf07dd2375a96eae09f9abd6329a919e5 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Wed, 4 May 2016 08:54:19 +0100 Subject: img: restrict to JPEG, PNG and GIF images by default This mitigates CVE-2016-3714. Wiki administrators who know that they have prevented arbitrary code execution via other formats can re-enable the other formats if desired. --- t/img.t | 46 +++++++++++++++++++++++++++++++++++++++++----- t/img/redsquare.jpg | Bin 0 -> 294 bytes 2 files changed, 41 insertions(+), 5 deletions(-) create mode 100644 t/img/redsquare.jpg (limited to 't') diff --git a/t/img.t b/t/img.t index b73988b7c..6f822bbd5 100755 --- a/t/img.t +++ b/t/img.t @@ -44,19 +44,26 @@ my $PDFS_WORK = defined $magick->Get("width"); ok(! system("rm -rf t/tmp; mkdir -p t/tmp/in")); ok(! system("cp t/img/redsquare.png t/tmp/in/redsquare.png")); +ok(! system("cp t/img/redsquare.jpg t/tmp/in/redsquare.jpg")); +ok(! system("cp t/img/redsquare.jpg t/tmp/in/redsquare.jpeg")); # colons in filenames are a corner case for img ok(! system("cp t/img/redsquare.png t/tmp/in/hello:world.png")); ok(! system("cp t/img/redsquare.png t/tmp/in/a:b:c.png")); ok(! system("cp t/img/redsquare.png t/tmp/in/a:b:c:d.png")); ok(! system("cp t/img/redsquare.png t/tmp/in/a:b:c:d:e:f:g:h:i:j.png")); -if ($SVGS_WORK) { - writefile("bluesquare.svg", "t/tmp/in", - ''); -} +writefile("bluesquare.svg", "t/tmp/in", + ''); +ok(! system("cp t/tmp/in/bluesquare.svg t/tmp/in/really-svg.png")); +ok(! system("cp t/tmp/in/bluesquare.svg t/tmp/in/really-svg.bmp")); +ok(! system("cp t/tmp/in/bluesquare.svg t/tmp/in/really-svg.pdf")); # using different image sizes for different pages, so the pagenumber selection can be tested easily ok(! system("cp t/img/twopages.pdf t/tmp/in/twopages.pdf")); +ok(! system("cp t/img/twopages.pdf t/tmp/in/really-pdf.jpeg")); +ok(! system("cp t/img/twopages.pdf t/tmp/in/really-pdf.jpg")); +ok(! system("cp t/img/twopages.pdf t/tmp/in/really-pdf.png")); +ok(! system("cp t/img/twopages.pdf t/tmp/in/really-pdf.svg")); my $maybe_svg_img = ""; if ($SVGS_WORK) { @@ -73,6 +80,8 @@ EOF writefile("imgconversions.mdwn", "t/tmp/in", <