-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHtmlPurifier.php
736 lines (652 loc) · 21.9 KB
/
HtmlPurifier.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
<?php
/**
* Qubus\Security
*
* @link https://github.com/QubusPHP/security
* @copyright 2020
* @author Joshua Parker <[email protected]>
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
declare(strict_types=1);
namespace Qubus\Security;
use function array_keys;
use function array_search;
use function chr;
use function count;
use function hexdec;
use function html_entity_decode;
use function implode;
use function is_array;
use function preg_match;
use function preg_match_all;
use function preg_quote;
use function preg_replace;
use function preg_replace_callback;
use function rawurldecode;
use function str_replace;
use function stripos;
use function stripslashes;
use function stristr;
use function strlen;
use function strpos;
use function strtoupper;
use function substr;
use const ENT_COMPAT;
use const ENT_HTML5;
use const PREG_SET_ORDER;
class HtmlPurifier implements Purifier
{
/** @var array $neverAllowedStr */
protected array $neverAllowedStr = [
'document.cookie' => '[removed]',
'document.write' => '[removed]',
'.parentNode' => '[removed]',
'.innerHTML' => '[removed]',
'window.location' => '[removed]',
'-moz-binding' => '[removed]',
'<!--' => '<!--',
'-->' => '-->',
'<![CDATA[' => '<![CDATA[',
'<comment>' => '<comment>',
];
/**
* List of never allowed regex replacement
*
* @var array $neverAllowedRegex
*/
protected array $neverAllowedRegex = [
'javascript\s*:',
'expression\s*(\(|&\#40;)', // CSS and IE
'vbscript\s*:', // IE, surprise!
'Redirect\s+30\d',
"([\"'])?data\s*:[^\\1]*?base64[^\\1]*?,[^\\1]*?\\1?",
];
/**
* Remove bad attributes such as style, onclick and xmlns
*
* @var array $xssDisalowedAttibutes
*/
public array $xssDisalowedAttibutes = ['on\w*', 'xmlns', 'formaction']; /*'style',*/
/**
* If a tag containing any of the words in the list below is found,
* the tag gets converted to entities.
*/
public string $xssNaughtyHtml = 'alert|applet|audio|basefont|base|behavior|bgsound|'
. 'blink|body|embed|expression|form|frameset|frame|head|html|ilayer|'
. 'input|isindex|layer|link|meta|object|plaintext|script|textarea|title|'
. 'video|xml|xss';
/**
* Similar to $this->xssNaughtyHtml, but instead of looking for tags it
* looks for PHP and JavaScript commands that are disallowed. Rather than
* removing the code, it simply converts the parenthesis to entities
* rendering the code un-executable.
*/
public string $xssNaughtyScripts = 'alert|prompt|confirm|cmd|passthru|eval|exec|expression|system|'
. 'fopen|fsockopen|file|file_get_contents|readfile|unlink';
/**
* List of sanitize filename strings.
*
* @var array $filenameBadChars
*/
public array $filenameBadChars = [
'../',
'<!--',
'-->',
'<',
'>',
"'",
'"',
'&',
'$',
'#',
'{',
'}',
'[',
']',
'=',
';',
'?',
'%20',
'%22',
'%3c', // <
'%253c', // <
'%3e', // >
'%0e', // >
'%28', // (
'%29', // )
'%2528', // (
'%26', // &
'%24', // $
'%3f', // ?
'%3b', // ;
'%3d', // =
];
/**
* Your mb_string encoding, default is 'utf-8'. Do not change, if not sure.
*/
public string $mbencoding = 'utf-8';
public function __construct()
{
}
/**
* Escaping for rich text.
*
* This method should only be used on output. With the exception of uploading
* images, never use this method on input. All inputted data should be
* accepted and then purified on output for optimal results. For output of images,
* make sure to escape with esc_url().
*
* @param string|string[] $string The string to purify.
* @param bool $isImage Is the string an image?
* @return string|bool|array Escaped rich text.
*/
public function purify($string, bool $isImage = false): string|bool|array
{
/*
* Is the string an array?
*
*/
if (is_array($string)) {
foreach ($string as $key => &$value) {
$string[$key] = $this->purify($value);
}
return $string;
}
/*
* Remove Invisible Characters
*/
$string = $this->removeInvisibleCharacters($string);
// Validate Entities in URLs
$string = $this->validateEntities($string);
/*
* URL Decode
*
* Just in case stuff like this is submitted:
*
* <a href="http://%77%77%77%2E%67%6F%6F%67%6C%65%2E%63%6F%6D">Google</a>
*
* Note: Use rawurldecode() so it does not remove plus signs
*
*/
if (stripos($string, '%') !== false) {
do {
$oldstr = $string;
$string = rawurldecode($string);
$string = preg_replace_callback('#%(?:\s*[0-9a-f]){2,}#i', [$this, 'urlDecodeSpaces'], $string);
} while ($oldstr !== $string);
unset($oldstr);
}
/*
* Convert character entities to ASCII
*
* This permits our tests below to work reliably.
* We only convert entities that are within tags since
* these are the ones that will pose security problems.
*
*/
$string = preg_replace_callback("/[a-z]+=([\'\"]).*?\\1/si", [$this, 'convertAttribute'], $string);
$string = preg_replace_callback("/<\w+.*?(?=>|<|$)/si", [$this, 'decodeEntity'], $string);
/*
* Remove Invisible Characters Again!
*/
$string = $this->removeInvisibleCharacters($string);
/*
* Convert all tabs to spaces
*
* This prevents strings like this: j a v a s c r i p t
* NOTE: we deal with spaces between characters later.
* NOTE: preg_replace was found to be amazingly slow here on
* large blocks of data, so we use str_replace.
*/
if (strpos($string, "\t") !== false) {
$string = str_replace("\t", ' ', $string);
}
/*
* Capture converted string for later comparison
*/
$convertedString = $string;
// Remove Strings that are never allowed
$string = $this->neverAllowed($string);
/*
* Makes PHP tags safe
*
* Note: XML tags are inadvertently replaced too:
*
* <?xml
*
* But it doesn't seem to pose a problem.
*/
if ($isImage === true) {
// Images have a tendency to have the PHP short opening and
// closing tags every so often so we skip those and only
// do the long opening tags.
$string = preg_replace('/<\?(php)/i', "<?\\1", $string);
} else {
$string = str_replace(['<?', '?' . '>'], ['<?', '?>'], $string);
}
/*
* Compact any exploded words
*
* This corrects words like: j a v a s c r i p t
* These words are compacted back to their correct state.
*/
$words = [
'javascript',
'expression',
'vbscript',
'jscript',
'wscript',
'vbs',
'script',
'base64',
'applet',
'alert',
'document',
'write',
'cookie',
'window',
'confirm',
'prompt',
'eval',
];
foreach ($words as $word) {
$temp = '';
for ($i = 0, $wordlen = strlen($word); $i < $wordlen; $i++) {
$temp .= substr($word, $i, 1) . "\s*";
}
// We only want to do this when it is followed by a non-word character
// That way valid stuff like "dealer to" does not become "dealerto"
$string = preg_replace_callback(
'#(' . substr($temp, 0, -3) . ')(\W)#is',
[$this, 'compactExplodedWords'],
$string
);
}
/*
* Remove disallowed Javascript in links or img tags
* We used to do some version comparisons and use of stripos for PHP5,
* but it is dog slow compared to these simplified non-capturing
* preg_match(), especially if the pattern exists in the string.
*/
do {
$original = $string;
if (preg_match("/<a/i", $string)) {
$string = preg_replace_callback("#<a\s+([^>]*?)(>|$)#si", [$this, 'jsLinkRemoval'], $string);
}
if (preg_match("/<img/i", $string)) {
$string = preg_replace_callback("#<img\s+([^>]*?)(\s?/?>|$)#si", [$this, 'jsImgRemoval'], $string);
}
if (preg_match("/script/i", $string) || preg_match("/xss/i", $string)) {
$string = preg_replace("#<(/*)(script|xss)(.*?)\>#si", '[removed]', $string);
}
} while ($original !== $string);
unset($original);
// Remove evil attributes such as style, onclick and xmlns
$string = $this->removeEvilAttributes($string, $isImage);
/*
* Sanitize naughty HTML elements
*
* If a tag containing any of the words in the list
* below is found, the tag gets converted to entities.
*
* So this: <blink>
* Becomes: <blink>
*/
$string = preg_replace_callback(
'#<(/*\s*)(' . $this->xssNaughtyHtml . ')([^><]*)([><]*)#is',
[$this, 'sanitizeNaughtyHtml'],
$string
);
/*
* Sanitize naughty scripting elements
*
* Similar to above, only instead of looking for
* tags it looks for PHP and JavaScript commands
* that are disallowed. Rather than removing the
* code, it simply converts the parenthesis to entities
* rendering the code un-executable.
*
* For example: eval('some code')
* Becomes: eval('some code')
*/
$string = preg_replace(
'#(' . $this->xssNaughtyScripts . ')(\s*)\((.*?)\)#si',
'\\1\\2(\\3)',
$string
);
$string = preg_replace(
'#(' . $this->xssNaughtyScripts . ')(\s*)`(.*?)`#si',
'\\1\\2`\\3`',
$string
);
// Final clean up
// This adds a bit of extra precaution in case
// something got through the above filters
$string = $this->neverAllowed($string);
/*
* Images are Handled in a Special Way
* - Essentially, we want to know that after all the character
* conversion is done whether any unwanted, likely XSS, code was found.
* If not, we return true, as the image is clean.
* However, if the string post-conversion does not match the
* string post-removal of XSS, then it fails, as there was unwanted XSS
* code found and removed/changed during processing.
*/
if ($isImage === true) {
return $string === $convertedString;
}
return $string;
}
/**
* HTML Entities Decode
*
* This function is a replacement for html_entity_decode()
*
* The reason we are not using html_entity_decode() by itself is because
* while it is not technically correct to leave out the semicolon
* at the end of an entity most browsers will still interpret the entity
* correctly. html_entity_decode() does not convert entities without
* semicolons, so we are left with our own little solution here. Bummer.
*
* @return string The decoded string.
*/
public function entityDecode(string $string, string $charset = 'UTF-8'): string
{
if (stristr($string, '&') === false) {
return $string;
}
$string = html_entity_decode($string, ENT_COMPAT | ENT_HTML5, $charset);
$string = preg_replace_callback('~&#x(0*[0-9a-f]{2,5})~i', function ($matches) {
foreach ($matches as $match) {
return chr(hexdec($match));
}
}, $string);
return preg_replace_callback('~&#([0-9]{2,4})~', function ($matches) {
foreach ($matches as $match) {
return chr($match);
}
}, $string);
}
/**
* URL-decode taking spaces into account
*
* @param array $matches
* @return string
*/
protected function urlDecodeSpaces($matches): string
{
$input = $matches[0];
$nospaces = preg_replace('#\s+#', '', $input);
return $nospaces === $input
? $input
: rawurldecode($nospaces);
}
/**
* Compact Exploded Words
*
* Callback function for $this->purify() to remove whitespace from
* things like j a v a s c r i p t.
*
* @param array $matches
* @return string
*/
protected function compactExplodedWords($matches): string
{
return preg_replace('/\s+/s', '', $matches[1]) . $matches[2];
}
/**
* Remove evil HTML Attributes (like evenhandlers and style)
*
* It removes the evil attribute and either:
*
* - Everything up until a space
* For example, everything between the pipes:
* <a |style=document.write('hello');alert('world');| class=link>
*
* - Everything inside the quotes
* For example, everything between the pipes:
* <a |style="document.write('hello'); alert('world');"| class="link">
*
* @param string $string The string to check
* @param boolean $isImage true if this is an image
* @return string The string with the evil attributes removed
*/
protected function removeEvilAttributes(string $string, bool $isImage): string
{
// All javascript event handlers (e.g. onload, onclick, onmouseover), style, and xmlns
//$evilAttributes = ['on\w*', 'style', 'xmlns', 'formaction'];
$evilAttributes = $this->xssDisalowedAttibutes;
if ($isImage === true) {
/*
* Adobe Photoshop puts XML metadata into JFIF images,
* including namespacing, so we have to allow this for images.
*/
unset($evilAttributes[array_search('xmlns', $evilAttributes)]);
}
do {
$count = 0;
$attribs = [];
// find occurrences of illegal attribute strings with quotes (042 and 047 are octal quotes)
preg_match_all(
'/(' . implode('|', $evilAttributes) . ')\s*=\s*(\042|\047)([^\\2]*?)(\\2)/is',
$string,
$matches,
PREG_SET_ORDER
);
foreach ($matches as $attr) {
$attribs[] = preg_quote($attr[0], '/');
}
// find occurrences of illegal attribute strings without quotes
preg_match_all(
'/(' . implode('|', $evilAttributes) . ')\s*=\s*([^\s>]*)/is',
$string,
$matches,
PREG_SET_ORDER
);
foreach ($matches as $attr) {
$attribs[] = preg_quote($attr[0], '/');
}
// replace illegal attribute strings that are inside an html tag
if (count($attribs) > 0) {
$string = preg_replace(
'/(<?)(\/?[^><]+?)([^A-Za-z<>\-])(.*?)(' . implode('|', $attribs) . ')(.*?)([\s><]?)([><]*)/i',
'$1$2 $4$6$7$8',
$string,
-1,
$count
);
}
} while ($count);
return $string;
}
/**
* Sanitize Naughty HTML
*
* Callback function for $this->purify() to sanitize naughty HTML elements.
*
* @param array $matches
* @return string
*/
protected function sanitizeNaughtyHtml($matches): string
{
// encode opening brace
$string = '<' . $matches[1] . $matches[2] . $matches[3];
// encode captured opening or closing brace to prevent recursive vectors
$string .= str_replace(['>', '<'], ['>', '<'], $matches[4]);
return $string;
}
/**
* JS Link Removal
*
* Callback function for $this->purify() to sanitize links. This limits the PCRE backtracks,
* making it more performant friendly.
*
* @param array $match
* @return string
*/
protected function jsLinkRemoval($match): string
{
return str_replace(
$match[1],
preg_replace(
'#href=.*?(?:(?:alert|prompt|confirm)(?:\(|&\#40;|`|&\#96;)|javascript:|livescript:|
mocha:|charset=|window\.|\(?document\)?\.|\.cookie|<script|<xss|d\s*a\s*t\s*a\s*:)#si',
'',
$this->filterAttributes(str_replace(['<', '>'], '', $match[1]))
),
$match[0]
);
}
/**
* JS Image Removal
*
* Callback function for $this->purify() to sanitize image tags. This limits the PCRE backtracks,
* making it more performance friendly.
*
* @param array $match
* @return string
*/
protected function jsImgRemoval($match): string
{
return str_replace(
$match[1],
preg_replace(
'#src=.*?(?:(?:alert|prompt|confirm|eval)(?:\(|&\#40;|`|&\#96;)|javascript:|livescript:|
mocha:|charset=|window\.|\(?document\)?\.|\.cookie|<script|<xss|base64\s*,)#si',
'',
$this->filterAttributes(str_replace(['<', '>'], '', $match[1]))
),
$match[0]
);
}
/**
* Attribute Conversion
*
* Used as a callback for Purify.
*
* @param array $match
* @return string
*/
protected function convertAttribute($match): string
{
return str_replace(['>', '<', '\\'], ['>', '<', '\\\\'], $match[0]);
}
/**
* Filter Attributes
*
* Filters tag attributes for consistency and safety.
*
* @param string $string
* @return string
*/
protected function filterAttributes(string $string): string
{
$out = '';
if (preg_match_all('#\s*[a-z\-]+\s*=\s*(\042|\047)([^\\1]*?)\\1#is', $string, $matches)) {
foreach ($matches[0] as $match) {
$out .= preg_replace("#/\*.*?\*/#s", '', $match);
}
}
return $out;
}
/**
* HTML Entity Decode Callback
*
* Used as a callback for Purify.
*
* @param array $match
* @return string
*/
protected function decodeEntity($match): string
{
return $this->entityDecode($match[0], strtoupper($this->mbencoding));
}
/**
* Validate URL entities
*
* Called by $this->purify().
*
* @param string $string
* @return string
*/
protected function validateEntities(string $string): string
{
/*
* Validate standard character entities
*
* Add a semicolon if missing. We do this to enable
* the conversion of entities to ASCII later.
*
*/
$string = preg_replace('#(&\#?[0-9a-z]{2,})([\x00-\x20])*;?#i', "\\1;\\2", $string);
/*
* Validate UTF16 two byte encoding (x00)
*
* Just as above, adds a semicolon if missing.
*
*/
return preg_replace('#(&\#x?)([0-9A-F]+);?#i', "\\1\\2;", $string);
}
/**
* Never Allowed
*
* A utility function for $this->purify().
*
* @param string $string
* @return string
*/
protected function neverAllowed(string $string): string
{
$string = str_replace(array_keys($this->neverAllowedStr), $this->neverAllowedStr, $string);
foreach ($this->neverAllowedRegex as $regex) {
$string = preg_replace('#' . $regex . '#is', '[removed]', $string);
}
return $string;
}
/**
* Removes invisible characters.
*/
protected function removeInvisibleCharacters(string $string, bool $urlEncoded = true): string
{
$nonDisplayables = [];
// every control character except newline (dec 10)
// carriage return (dec 13), and horizontal tab (dec 09)
if ($urlEncoded) {
$nonDisplayables[] = '/%0[0-8bcef]/'; // url encoded 00-08, 11, 12, 14, 15
$nonDisplayables[] = '/%1[0-9a-f]/'; // url encoded 16-31
}
$nonDisplayables[] = '/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F]+/S'; // 00-08, 11, 12, 14-31, 127
do {
$string = preg_replace($nonDisplayables, '', $string, -1, $count);
} while ($count);
return $string;
}
/**
* Sanitize Filename
*
* Tries to sanitize filenames in order to prevent directory traversal attempts
* and other security threats, which is particularly useful for files that
* were supplied via user input.
*
* If it is acceptable for the user input to include relative paths,
* e.g. file/in/some/approved/folder.txt, you can set the second optional
* parameter, $relativePath to true.
*
* @param string $string Input file name
* @param bool $relativePath Whether to preserve paths
*/
public function sanitizeFilename(string $string, bool $relativePath = false): string
{
$bad = $this->filenameBadChars;
if (! $relativePath) {
$bad[] = './';
$bad[] = '/';
}
$string = $this->removeInvisibleCharacters($string, false);
do {
$old = $string;
$string = str_replace($bad, '', $string);
} while ($old !== $string);
return stripslashes($string);
}
}