23 require_once(
'./vendor/composer/vendor/autoload.php');
41 'The SVG file contains malicious code.',
52 '<svg width="100" height="100"> 53 <foreignObject width="100%" height="100%"> 54 <script>alert(document.domain);</script> 60 '<svg width="100" height="100"> 61 <foreignObject width="100%" height="100%" onclick="alert(document.domain);"> 68 '<svg version="1.1" baseProfile="full" 69 xmlns="http://www.w3.org/2000/svg"> 70 <rect width="100" height="100" style="fill:rgb(0,0,255);" /> 71 <script type="text/javascript"> 72 alert("XSS in SVG on " + document.domain ); 78 '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> 79 <use xlink:href="data:application/xml;base64 , 80 PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5r 81 PSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KPGRlZnM+CjxjaXJjbGUgaWQ9InRlc3QiIHI9I 82 jUwIiBjeD0iMTAwIiBjeT0iMTAwIiBzdHlsZT0iZmlsbDogI0YwMCI+CjxzZXQgYXR0cmlidXRlTm 83 FtZT0iZmlsbCIgYXR0cmlidXRlVHlwZT0iQ1NTIiBvbmJlZ2luPSdhbGVydChkb2N1bWVudC5jb29r 84 aWUpJwpvbmVuZD0nYWxlcnQoIm9uZW5kIiknIHRvPSIjMDBGIiBiZWdpbj0iMXMiIGR1cj0iNXMiIC 85 8+CjwvY2lyY2xlPgo8L2RlZnM+Cjx1c2UgeGxpbms6aHJlZj0iI3Rlc3QiLz4KPC9zdmc+#test"/> 92 #[DataProvider('maliciousSVGProvider')] 97 $metadata =
new Metadata(
'test.svg', 100,
'image/svg+xml');
99 $result = $preProcessor->process($stream, $metadata);
103 $this->assertSame(
'The SVG file contains malicious code. (' . $type .
')', $result->getMessage());
108 $svg =
'<svg version="1.1" baseProfile="full" 109 xmlns="http://www.w3.org/2000/svg"> 110 <rect width="100" height="100" style="fill:rgb(0,0,255);" /> 115 $metadata =
new Metadata(
'test.svg', 100,
'image/svg+xml');
117 $result = $preProcessor->process($stream, $metadata);
121 $this->assertSame(
'SVG OK', $result->getMessage());
127 [__DIR__ .
'/../../../../../components/ILIAS/UI/resources/images/media/bigplay.svg'],
128 [__DIR__ .
'/../../../../../components/ILIAS/UI/resources/images/nav/jstree.svg'],
129 [__DIR__ .
'/../../../../../components/ILIAS/UI/resources/images/media/loader.svg'],
130 [__DIR__ .
'/../../../../../components/ILIAS/UI/resources/images/object/col.svg'],
131 [__DIR__ .
'/../../../../../components/ILIAS/UI/resources/images/logo/HeaderIcon.svg'],
132 [__DIR__ .
'/../../../../../components/ILIAS/UI/resources/images/object/answered_not.svg'],
136 #[DataProvider('provideSomeComplexSaneSVG')] 139 $this->assertTrue(file_exists($path));
140 $svg = file_get_contents($path);
144 $metadata =
new Metadata(
'media/bigplay.svg', 100,
'image/svg+xml');
146 $result = $preProcessor->process($stream, $metadata);
148 $this->assertSame(
'SVG OK', $result->getMessage());
testMaliciousSVG(string $malicious_svg, string $type)
static provideSomeComplexSaneSVG()
Class SVGBlacklistPreProcessor.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testSomeComplexSaneSVG(string $path)
static ofString(string $string)
Creates a new stream with an initial value.
static maliciousSVGProvider()
Class SVGPreProcessorTest.