Resolve #3413396 "Xss fiter data uri support for images"
Open
requested to merge issue/drupal-3413396:3413396-xss-fiter-data-uri-support-for-images into 11.x
6 unresolved threads
Closes #3413396
Merge request reports
Activity
added 1 commit
- b4a81127 - Add support for inline images with data uri scheme
272 277 $working = 1; 273 278 // Attribute value, a URL after href= for instance. 274 279 if (preg_match('/^"([^"]*)"(\s+|$)/', $attributes, $match)) { 280 if ($element === 'img' && preg_match('/^data:image\/(?!svg\+xml;base64,)[^;]+;base64,/', $match[1]) === 1) { Also this regex only cares about
"
as the string delimiter, what about the later cases if someone uses<img src='data:image...'>
? Is it allowed to have whitespace between the quote anddata:
, or betweendata:
andimage
, or before the closing quote?Edited by Dave Longchanged this line in version 3 of the diff
Is that the only way
svg+xml
can be represented or could there be capitalisationGood catch. !6080 (411e1ea9)
Both top-level type and subtype names are case-insensitive.
https://datatracker.ietf.org/doc/html/rfc6838#section-4.2
or escaping that could bypass this check but still embed SVG?
Since the current regex-based approach is simple, I do not see how that would be possible.
195 195 * 196 196 * @param string $attributes 197 197 * The html attribute to process. 198 * @param ?string $element 199 * The html element. 198 200 * 199 201 * @return string 200 202 * Cleaned up version of the HTML attributes. 201 203 */ 202 protected static function attributes($attributes) { 204 protected static function attributes($attributes, ?string $element) { 205 if ($element === NULL) { 272 277 $working = 1; 273 278 // Attribute value, a URL after href= for instance. 274 279 if (preg_match('/^"([^"]*)"(\s+|$)/', $attributes, $match)) { 275 $value = $skip_protocol_filtering ? $match[1] : UrlHelper::filterBadProtocol($match[1]); 280 if ($element === 'img' && preg_match('/^data:image\/(?!svg\+xml;base64,)[^;]+;base64,/', $match[1]) === 1) { 274 274 * 275 275 * @param string $attributes 276 276 * The html attribute to process. 277 * @param ?string $element 278 * The html element. 277 279 * 278 280 * @return string 279 281 * Cleaned up version of the HTML attributes. 280 282 */ 281 protected static function attributes($attributes) { 283 protected static function attributes($attributes, ?string $element) {
Please register or sign in to reply