39 private const SVG =
'svg';
124 ?
string $rejection_message = null,
125 ?
string $additional_message_script = null,
126 ?
string $additional_message_base64 = null,
127 ?
string $additional_message_elements = null
130 $this->rejection_message_script = $additional_message_script ??
'contains script tags';
131 $this->rejection_message_base64 = $additional_message_base64 ??
'contains base64 encoded content';
132 $this->rejection_message_elements = $additional_message_elements ??
'contains not allowed or unknown elements or attributes';
137 return $this->isMimeTypeOrExtension(
140 [self::SVG_MIME_TYPE]
154 $dom = new \DOMDocument();
156 $dom->loadXML($raw_svg_content, LIBXML_NOWARNING | LIBXML_NOERROR);
169 $raw_svg_content = (string) $stream;
170 if (
false === $raw_svg_content) {
188 $prohibited_attributes =
function (
string $name):
bool {
189 return in_array(strtolower(
$name), $this->svg_event_lists,
true);
191 if ($looper($dom, $prohibited_attributes) ===
false) {
201 if (preg_match(self::REGEX_BASE64, $raw_svg_content)) {
207 if (preg_match(self::REGEX_SCRIPT, $raw_svg_content)) {
217 return function (\DOMDocument $dom, \Closure $closure):
bool {
218 $attributes_looper =
function (\DOMNode $node, \Closure $closure) use (&$attributes_looper):
bool {
219 foreach ($node->attributes as $attribute) {
220 if ($closure($attribute->name)) {
221 $this->rejection_message .= sprintf(
222 $this->rejection_message_elements .
' (%s)',
228 foreach ($node->childNodes as $child) {
230 if(!$attributes_looper($child, $closure)) {
237 foreach ($dom->getElementsByTagName(
"*") as
$i => $element) {
238 if ($attributes_looper($element, $closure) ===
false) {
process(FileStream $stream, Metadata $metadata)
This method gets invoked by the file upload service to process the file with the help of the processo...
string $rejection_message_base64
isSVG(Metadata $metadata)
string $rejection_message_script
Class SVGBlacklistPreProcessor.
__construct(?string $rejection_message=null, ?string $additional_message_script=null, ?string $additional_message_base64=null, ?string $additional_message_elements=null)
getDomDocument(string $raw_svg_content)
string $rejection_message
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
hasContentScriptTag(string $raw_svg_content)
const DENIED
Upload got denied by a processor, the upload will be removed immediately.
string $rejection_message_elements
checkStream(FileStream $stream)