|
0
|
1 |
<?php |
|
|
2 |
/** |
|
|
3 |
* kses 0.2.2 - HTML/XHTML filter that only allows some elements and attributes |
|
|
4 |
* Copyright (C) 2002, 2003, 2005 Ulf Harnhammar |
|
|
5 |
* |
|
|
6 |
* This program is free software and open source software; you can redistribute |
|
|
7 |
* it and/or modify it under the terms of the GNU General Public License as |
|
|
8 |
* published by the Free Software Foundation; either version 2 of the License, |
|
|
9 |
* or (at your option) any later version. |
|
|
10 |
* |
|
|
11 |
* This program is distributed in the hope that it will be useful, but WITHOUT |
|
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
|
|
14 |
* more details. |
|
|
15 |
* |
|
|
16 |
* You should have received a copy of the GNU General Public License along |
|
|
17 |
* with this program; if not, write to the Free Software Foundation, Inc., |
|
|
18 |
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
|
|
19 |
* http://www.gnu.org/licenses/gpl.html |
|
|
20 |
* |
|
|
21 |
* [kses strips evil scripts!] |
|
|
22 |
* |
|
|
23 |
* Added wp_ prefix to avoid conflicts with existing kses users |
|
|
24 |
* |
|
|
25 |
* @version 0.2.2 |
|
|
26 |
* @copyright (C) 2002, 2003, 2005 |
|
|
27 |
* @author Ulf Harnhammar <http://advogato.org/person/metaur/> |
|
|
28 |
* |
|
|
29 |
* @package External |
|
|
30 |
* @subpackage KSES |
|
|
31 |
* |
|
|
32 |
*/ |
|
|
33 |
|
|
|
34 |
/** |
|
|
35 |
* You can override this in a plugin. |
|
|
36 |
* |
|
|
37 |
* The wp_kses_allowed_html filter is more powerful and supplies context. |
|
|
38 |
* CUSTOM_TAGS is not recommended and should be considered deprecated. |
|
|
39 |
* |
|
|
40 |
* @see wp_kses_allowed_html() |
|
|
41 |
* |
|
|
42 |
* @since 1.2.0 |
|
|
43 |
*/ |
|
|
44 |
if ( ! defined( 'CUSTOM_TAGS' ) ) |
|
|
45 |
define( 'CUSTOM_TAGS', false ); |
|
|
46 |
|
|
5
|
47 |
// Ensure that these variables are added to the global namespace |
|
|
48 |
// (e.g. if using namespaces / autoload in the current PHP environment). |
|
|
49 |
global $allowedposttags, $allowedtags, $allowedentitynames; |
|
|
50 |
|
|
0
|
51 |
if ( ! CUSTOM_TAGS ) { |
|
|
52 |
/** |
|
|
53 |
* Kses global for default allowable HTML tags. |
|
|
54 |
* |
|
|
55 |
* Can be override by using CUSTOM_TAGS constant. |
|
|
56 |
* |
|
|
57 |
* @global array $allowedposttags |
|
|
58 |
* @since 2.0.0 |
|
|
59 |
*/ |
|
|
60 |
$allowedposttags = array( |
|
|
61 |
'address' => array(), |
|
|
62 |
'a' => array( |
|
|
63 |
'href' => true, |
|
|
64 |
'rel' => true, |
|
|
65 |
'rev' => true, |
|
|
66 |
'name' => true, |
|
|
67 |
'target' => true, |
|
|
68 |
), |
|
|
69 |
'abbr' => array(), |
|
|
70 |
'acronym' => array(), |
|
|
71 |
'area' => array( |
|
|
72 |
'alt' => true, |
|
|
73 |
'coords' => true, |
|
|
74 |
'href' => true, |
|
|
75 |
'nohref' => true, |
|
|
76 |
'shape' => true, |
|
|
77 |
'target' => true, |
|
|
78 |
), |
|
|
79 |
'article' => array( |
|
|
80 |
'align' => true, |
|
|
81 |
'dir' => true, |
|
|
82 |
'lang' => true, |
|
|
83 |
'xml:lang' => true, |
|
|
84 |
), |
|
|
85 |
'aside' => array( |
|
|
86 |
'align' => true, |
|
|
87 |
'dir' => true, |
|
|
88 |
'lang' => true, |
|
|
89 |
'xml:lang' => true, |
|
|
90 |
), |
|
5
|
91 |
'audio' => array( |
|
|
92 |
'autoplay' => true, |
|
|
93 |
'controls' => true, |
|
|
94 |
'loop' => true, |
|
|
95 |
'muted' => true, |
|
|
96 |
'preload' => true, |
|
|
97 |
'src' => true, |
|
|
98 |
), |
|
0
|
99 |
'b' => array(), |
|
|
100 |
'big' => array(), |
|
|
101 |
'blockquote' => array( |
|
|
102 |
'cite' => true, |
|
|
103 |
'lang' => true, |
|
|
104 |
'xml:lang' => true, |
|
|
105 |
), |
|
|
106 |
'br' => array(), |
|
|
107 |
'button' => array( |
|
|
108 |
'disabled' => true, |
|
|
109 |
'name' => true, |
|
|
110 |
'type' => true, |
|
|
111 |
'value' => true, |
|
|
112 |
), |
|
|
113 |
'caption' => array( |
|
|
114 |
'align' => true, |
|
|
115 |
), |
|
|
116 |
'cite' => array( |
|
|
117 |
'dir' => true, |
|
|
118 |
'lang' => true, |
|
|
119 |
), |
|
|
120 |
'code' => array(), |
|
|
121 |
'col' => array( |
|
|
122 |
'align' => true, |
|
|
123 |
'char' => true, |
|
|
124 |
'charoff' => true, |
|
|
125 |
'span' => true, |
|
|
126 |
'dir' => true, |
|
|
127 |
'valign' => true, |
|
|
128 |
'width' => true, |
|
|
129 |
), |
|
5
|
130 |
'colgroup' => array( |
|
|
131 |
'align' => true, |
|
|
132 |
'char' => true, |
|
|
133 |
'charoff' => true, |
|
|
134 |
'span' => true, |
|
|
135 |
'valign' => true, |
|
|
136 |
'width' => true, |
|
|
137 |
), |
|
0
|
138 |
'del' => array( |
|
|
139 |
'datetime' => true, |
|
|
140 |
), |
|
|
141 |
'dd' => array(), |
|
5
|
142 |
'dfn' => array(), |
|
0
|
143 |
'details' => array( |
|
|
144 |
'align' => true, |
|
|
145 |
'dir' => true, |
|
|
146 |
'lang' => true, |
|
|
147 |
'open' => true, |
|
|
148 |
'xml:lang' => true, |
|
|
149 |
), |
|
|
150 |
'div' => array( |
|
|
151 |
'align' => true, |
|
|
152 |
'dir' => true, |
|
|
153 |
'lang' => true, |
|
|
154 |
'xml:lang' => true, |
|
|
155 |
), |
|
|
156 |
'dl' => array(), |
|
|
157 |
'dt' => array(), |
|
|
158 |
'em' => array(), |
|
|
159 |
'fieldset' => array(), |
|
|
160 |
'figure' => array( |
|
|
161 |
'align' => true, |
|
|
162 |
'dir' => true, |
|
|
163 |
'lang' => true, |
|
|
164 |
'xml:lang' => true, |
|
|
165 |
), |
|
|
166 |
'figcaption' => array( |
|
|
167 |
'align' => true, |
|
|
168 |
'dir' => true, |
|
|
169 |
'lang' => true, |
|
|
170 |
'xml:lang' => true, |
|
|
171 |
), |
|
|
172 |
'font' => array( |
|
|
173 |
'color' => true, |
|
|
174 |
'face' => true, |
|
|
175 |
'size' => true, |
|
|
176 |
), |
|
|
177 |
'footer' => array( |
|
|
178 |
'align' => true, |
|
|
179 |
'dir' => true, |
|
|
180 |
'lang' => true, |
|
|
181 |
'xml:lang' => true, |
|
|
182 |
), |
|
|
183 |
'form' => array( |
|
|
184 |
'action' => true, |
|
|
185 |
'accept' => true, |
|
|
186 |
'accept-charset' => true, |
|
|
187 |
'enctype' => true, |
|
|
188 |
'method' => true, |
|
|
189 |
'name' => true, |
|
|
190 |
'target' => true, |
|
|
191 |
), |
|
|
192 |
'h1' => array( |
|
|
193 |
'align' => true, |
|
|
194 |
), |
|
|
195 |
'h2' => array( |
|
|
196 |
'align' => true, |
|
|
197 |
), |
|
|
198 |
'h3' => array( |
|
|
199 |
'align' => true, |
|
|
200 |
), |
|
|
201 |
'h4' => array( |
|
|
202 |
'align' => true, |
|
|
203 |
), |
|
|
204 |
'h5' => array( |
|
|
205 |
'align' => true, |
|
|
206 |
), |
|
|
207 |
'h6' => array( |
|
|
208 |
'align' => true, |
|
|
209 |
), |
|
|
210 |
'header' => array( |
|
|
211 |
'align' => true, |
|
|
212 |
'dir' => true, |
|
|
213 |
'lang' => true, |
|
|
214 |
'xml:lang' => true, |
|
|
215 |
), |
|
|
216 |
'hgroup' => array( |
|
|
217 |
'align' => true, |
|
|
218 |
'dir' => true, |
|
|
219 |
'lang' => true, |
|
|
220 |
'xml:lang' => true, |
|
|
221 |
), |
|
|
222 |
'hr' => array( |
|
|
223 |
'align' => true, |
|
|
224 |
'noshade' => true, |
|
|
225 |
'size' => true, |
|
|
226 |
'width' => true, |
|
|
227 |
), |
|
|
228 |
'i' => array(), |
|
|
229 |
'img' => array( |
|
|
230 |
'alt' => true, |
|
|
231 |
'align' => true, |
|
|
232 |
'border' => true, |
|
|
233 |
'height' => true, |
|
|
234 |
'hspace' => true, |
|
|
235 |
'longdesc' => true, |
|
|
236 |
'vspace' => true, |
|
|
237 |
'src' => true, |
|
|
238 |
'usemap' => true, |
|
|
239 |
'width' => true, |
|
|
240 |
), |
|
|
241 |
'ins' => array( |
|
|
242 |
'datetime' => true, |
|
|
243 |
'cite' => true, |
|
|
244 |
), |
|
|
245 |
'kbd' => array(), |
|
|
246 |
'label' => array( |
|
|
247 |
'for' => true, |
|
|
248 |
), |
|
|
249 |
'legend' => array( |
|
|
250 |
'align' => true, |
|
|
251 |
), |
|
|
252 |
'li' => array( |
|
|
253 |
'align' => true, |
|
|
254 |
'value' => true, |
|
|
255 |
), |
|
|
256 |
'map' => array( |
|
|
257 |
'name' => true, |
|
|
258 |
), |
|
5
|
259 |
'mark' => array(), |
|
0
|
260 |
'menu' => array( |
|
|
261 |
'type' => true, |
|
|
262 |
), |
|
|
263 |
'nav' => array( |
|
|
264 |
'align' => true, |
|
|
265 |
'dir' => true, |
|
|
266 |
'lang' => true, |
|
|
267 |
'xml:lang' => true, |
|
|
268 |
), |
|
|
269 |
'p' => array( |
|
|
270 |
'align' => true, |
|
|
271 |
'dir' => true, |
|
|
272 |
'lang' => true, |
|
|
273 |
'xml:lang' => true, |
|
|
274 |
), |
|
|
275 |
'pre' => array( |
|
|
276 |
'width' => true, |
|
|
277 |
), |
|
|
278 |
'q' => array( |
|
|
279 |
'cite' => true, |
|
|
280 |
), |
|
|
281 |
's' => array(), |
|
5
|
282 |
'samp' => array(), |
|
0
|
283 |
'span' => array( |
|
|
284 |
'dir' => true, |
|
|
285 |
'align' => true, |
|
|
286 |
'lang' => true, |
|
|
287 |
'xml:lang' => true, |
|
|
288 |
), |
|
|
289 |
'section' => array( |
|
|
290 |
'align' => true, |
|
|
291 |
'dir' => true, |
|
|
292 |
'lang' => true, |
|
|
293 |
'xml:lang' => true, |
|
|
294 |
), |
|
|
295 |
'small' => array(), |
|
|
296 |
'strike' => array(), |
|
|
297 |
'strong' => array(), |
|
|
298 |
'sub' => array(), |
|
|
299 |
'summary' => array( |
|
|
300 |
'align' => true, |
|
|
301 |
'dir' => true, |
|
|
302 |
'lang' => true, |
|
|
303 |
'xml:lang' => true, |
|
|
304 |
), |
|
|
305 |
'sup' => array(), |
|
|
306 |
'table' => array( |
|
|
307 |
'align' => true, |
|
|
308 |
'bgcolor' => true, |
|
|
309 |
'border' => true, |
|
|
310 |
'cellpadding' => true, |
|
|
311 |
'cellspacing' => true, |
|
|
312 |
'dir' => true, |
|
|
313 |
'rules' => true, |
|
|
314 |
'summary' => true, |
|
|
315 |
'width' => true, |
|
|
316 |
), |
|
|
317 |
'tbody' => array( |
|
|
318 |
'align' => true, |
|
|
319 |
'char' => true, |
|
|
320 |
'charoff' => true, |
|
|
321 |
'valign' => true, |
|
|
322 |
), |
|
|
323 |
'td' => array( |
|
|
324 |
'abbr' => true, |
|
|
325 |
'align' => true, |
|
|
326 |
'axis' => true, |
|
|
327 |
'bgcolor' => true, |
|
|
328 |
'char' => true, |
|
|
329 |
'charoff' => true, |
|
|
330 |
'colspan' => true, |
|
|
331 |
'dir' => true, |
|
|
332 |
'headers' => true, |
|
|
333 |
'height' => true, |
|
|
334 |
'nowrap' => true, |
|
|
335 |
'rowspan' => true, |
|
|
336 |
'scope' => true, |
|
|
337 |
'valign' => true, |
|
|
338 |
'width' => true, |
|
|
339 |
), |
|
|
340 |
'textarea' => array( |
|
|
341 |
'cols' => true, |
|
|
342 |
'rows' => true, |
|
|
343 |
'disabled' => true, |
|
|
344 |
'name' => true, |
|
|
345 |
'readonly' => true, |
|
|
346 |
), |
|
|
347 |
'tfoot' => array( |
|
|
348 |
'align' => true, |
|
|
349 |
'char' => true, |
|
|
350 |
'charoff' => true, |
|
|
351 |
'valign' => true, |
|
|
352 |
), |
|
|
353 |
'th' => array( |
|
|
354 |
'abbr' => true, |
|
|
355 |
'align' => true, |
|
|
356 |
'axis' => true, |
|
|
357 |
'bgcolor' => true, |
|
|
358 |
'char' => true, |
|
|
359 |
'charoff' => true, |
|
|
360 |
'colspan' => true, |
|
|
361 |
'headers' => true, |
|
|
362 |
'height' => true, |
|
|
363 |
'nowrap' => true, |
|
|
364 |
'rowspan' => true, |
|
|
365 |
'scope' => true, |
|
|
366 |
'valign' => true, |
|
|
367 |
'width' => true, |
|
|
368 |
), |
|
|
369 |
'thead' => array( |
|
|
370 |
'align' => true, |
|
|
371 |
'char' => true, |
|
|
372 |
'charoff' => true, |
|
|
373 |
'valign' => true, |
|
|
374 |
), |
|
|
375 |
'title' => array(), |
|
|
376 |
'tr' => array( |
|
|
377 |
'align' => true, |
|
|
378 |
'bgcolor' => true, |
|
|
379 |
'char' => true, |
|
|
380 |
'charoff' => true, |
|
|
381 |
'valign' => true, |
|
|
382 |
), |
|
5
|
383 |
'track' => array( |
|
|
384 |
'default' => true, |
|
|
385 |
'kind' => true, |
|
|
386 |
'label' => true, |
|
|
387 |
'src' => true, |
|
|
388 |
'srclang' => true, |
|
|
389 |
), |
|
0
|
390 |
'tt' => array(), |
|
|
391 |
'u' => array(), |
|
|
392 |
'ul' => array( |
|
|
393 |
'type' => true, |
|
|
394 |
), |
|
|
395 |
'ol' => array( |
|
|
396 |
'start' => true, |
|
|
397 |
'type' => true, |
|
|
398 |
), |
|
|
399 |
'var' => array(), |
|
5
|
400 |
'video' => array( |
|
|
401 |
'autoplay' => true, |
|
|
402 |
'controls' => true, |
|
|
403 |
'height' => true, |
|
|
404 |
'loop' => true, |
|
|
405 |
'muted' => true, |
|
|
406 |
'poster' => true, |
|
|
407 |
'preload' => true, |
|
|
408 |
'src' => true, |
|
|
409 |
'width' => true, |
|
|
410 |
), |
|
0
|
411 |
); |
|
|
412 |
|
|
|
413 |
/** |
|
|
414 |
* Kses allowed HTML elements. |
|
|
415 |
* |
|
|
416 |
* @global array $allowedtags |
|
|
417 |
* @since 1.0.0 |
|
|
418 |
*/ |
|
|
419 |
$allowedtags = array( |
|
|
420 |
'a' => array( |
|
|
421 |
'href' => true, |
|
|
422 |
'title' => true, |
|
|
423 |
), |
|
|
424 |
'abbr' => array( |
|
|
425 |
'title' => true, |
|
|
426 |
), |
|
|
427 |
'acronym' => array( |
|
|
428 |
'title' => true, |
|
|
429 |
), |
|
|
430 |
'b' => array(), |
|
|
431 |
'blockquote' => array( |
|
|
432 |
'cite' => true, |
|
|
433 |
), |
|
|
434 |
'cite' => array(), |
|
|
435 |
'code' => array(), |
|
|
436 |
'del' => array( |
|
|
437 |
'datetime' => true, |
|
|
438 |
), |
|
|
439 |
'em' => array(), |
|
|
440 |
'i' => array(), |
|
|
441 |
'q' => array( |
|
|
442 |
'cite' => true, |
|
|
443 |
), |
|
5
|
444 |
's' => array(), |
|
0
|
445 |
'strike' => array(), |
|
|
446 |
'strong' => array(), |
|
|
447 |
); |
|
|
448 |
|
|
|
449 |
$allowedentitynames = array( |
|
|
450 |
'nbsp', 'iexcl', 'cent', 'pound', 'curren', 'yen', |
|
|
451 |
'brvbar', 'sect', 'uml', 'copy', 'ordf', 'laquo', |
|
|
452 |
'not', 'shy', 'reg', 'macr', 'deg', 'plusmn', |
|
|
453 |
'acute', 'micro', 'para', 'middot', 'cedil', 'ordm', |
|
|
454 |
'raquo', 'iquest', 'Agrave', 'Aacute', 'Acirc', 'Atilde', |
|
|
455 |
'Auml', 'Aring', 'AElig', 'Ccedil', 'Egrave', 'Eacute', |
|
|
456 |
'Ecirc', 'Euml', 'Igrave', 'Iacute', 'Icirc', 'Iuml', |
|
|
457 |
'ETH', 'Ntilde', 'Ograve', 'Oacute', 'Ocirc', 'Otilde', |
|
|
458 |
'Ouml', 'times', 'Oslash', 'Ugrave', 'Uacute', 'Ucirc', |
|
|
459 |
'Uuml', 'Yacute', 'THORN', 'szlig', 'agrave', 'aacute', |
|
|
460 |
'acirc', 'atilde', 'auml', 'aring', 'aelig', 'ccedil', |
|
|
461 |
'egrave', 'eacute', 'ecirc', 'euml', 'igrave', 'iacute', |
|
|
462 |
'icirc', 'iuml', 'eth', 'ntilde', 'ograve', 'oacute', |
|
|
463 |
'ocirc', 'otilde', 'ouml', 'divide', 'oslash', 'ugrave', |
|
|
464 |
'uacute', 'ucirc', 'uuml', 'yacute', 'thorn', 'yuml', |
|
|
465 |
'quot', 'amp', 'lt', 'gt', 'apos', 'OElig', |
|
|
466 |
'oelig', 'Scaron', 'scaron', 'Yuml', 'circ', 'tilde', |
|
|
467 |
'ensp', 'emsp', 'thinsp', 'zwnj', 'zwj', 'lrm', |
|
|
468 |
'rlm', 'ndash', 'mdash', 'lsquo', 'rsquo', 'sbquo', |
|
|
469 |
'ldquo', 'rdquo', 'bdquo', 'dagger', 'Dagger', 'permil', |
|
|
470 |
'lsaquo', 'rsaquo', 'euro', 'fnof', 'Alpha', 'Beta', |
|
|
471 |
'Gamma', 'Delta', 'Epsilon', 'Zeta', 'Eta', 'Theta', |
|
|
472 |
'Iota', 'Kappa', 'Lambda', 'Mu', 'Nu', 'Xi', |
|
|
473 |
'Omicron', 'Pi', 'Rho', 'Sigma', 'Tau', 'Upsilon', |
|
|
474 |
'Phi', 'Chi', 'Psi', 'Omega', 'alpha', 'beta', |
|
|
475 |
'gamma', 'delta', 'epsilon', 'zeta', 'eta', 'theta', |
|
|
476 |
'iota', 'kappa', 'lambda', 'mu', 'nu', 'xi', |
|
|
477 |
'omicron', 'pi', 'rho', 'sigmaf', 'sigma', 'tau', |
|
|
478 |
'upsilon', 'phi', 'chi', 'psi', 'omega', 'thetasym', |
|
|
479 |
'upsih', 'piv', 'bull', 'hellip', 'prime', 'Prime', |
|
|
480 |
'oline', 'frasl', 'weierp', 'image', 'real', 'trade', |
|
|
481 |
'alefsym', 'larr', 'uarr', 'rarr', 'darr', 'harr', |
|
|
482 |
'crarr', 'lArr', 'uArr', 'rArr', 'dArr', 'hArr', |
|
|
483 |
'forall', 'part', 'exist', 'empty', 'nabla', 'isin', |
|
|
484 |
'notin', 'ni', 'prod', 'sum', 'minus', 'lowast', |
|
|
485 |
'radic', 'prop', 'infin', 'ang', 'and', 'or', |
|
|
486 |
'cap', 'cup', 'int', 'sim', 'cong', 'asymp', |
|
|
487 |
'ne', 'equiv', 'le', 'ge', 'sub', 'sup', |
|
|
488 |
'nsub', 'sube', 'supe', 'oplus', 'otimes', 'perp', |
|
|
489 |
'sdot', 'lceil', 'rceil', 'lfloor', 'rfloor', 'lang', |
|
|
490 |
'rang', 'loz', 'spades', 'clubs', 'hearts', 'diams', |
|
5
|
491 |
'sup1', 'sup2', 'sup3', 'frac14', 'frac12', 'frac34', |
|
|
492 |
'there4', |
|
0
|
493 |
); |
|
|
494 |
|
|
|
495 |
$allowedposttags = array_map( '_wp_add_global_attributes', $allowedposttags ); |
|
|
496 |
} else { |
|
|
497 |
$allowedtags = wp_kses_array_lc( $allowedtags ); |
|
|
498 |
$allowedposttags = wp_kses_array_lc( $allowedposttags ); |
|
|
499 |
} |
|
|
500 |
|
|
|
501 |
/** |
|
|
502 |
* Filters content and keeps only allowable HTML elements. |
|
|
503 |
* |
|
|
504 |
* This function makes sure that only the allowed HTML element names, attribute |
|
|
505 |
* names and attribute values plus only sane HTML entities will occur in |
|
|
506 |
* $string. You have to remove any slashes from PHP's magic quotes before you |
|
|
507 |
* call this function. |
|
|
508 |
* |
|
|
509 |
* The default allowed protocols are 'http', 'https', 'ftp', 'mailto', 'news', |
|
|
510 |
* 'irc', 'gopher', 'nntp', 'feed', 'telnet, 'mms', 'rtsp' and 'svn'. This |
|
|
511 |
* covers all common link protocols, except for 'javascript' which should not |
|
|
512 |
* be allowed for untrusted users. |
|
|
513 |
* |
|
|
514 |
* @since 1.0.0 |
|
|
515 |
* |
|
|
516 |
* @param string $string Content to filter through kses |
|
|
517 |
* @param array $allowed_html List of allowed HTML elements |
|
|
518 |
* @param array $allowed_protocols Optional. Allowed protocol in links. |
|
|
519 |
* @return string Filtered content with only allowed HTML elements |
|
|
520 |
*/ |
|
|
521 |
function wp_kses( $string, $allowed_html, $allowed_protocols = array() ) { |
|
|
522 |
if ( empty( $allowed_protocols ) ) |
|
|
523 |
$allowed_protocols = wp_allowed_protocols(); |
|
|
524 |
$string = wp_kses_no_null($string); |
|
|
525 |
$string = wp_kses_js_entities($string); |
|
|
526 |
$string = wp_kses_normalize_entities($string); |
|
|
527 |
$string = wp_kses_hook($string, $allowed_html, $allowed_protocols); // WP changed the order of these funcs and added args to wp_kses_hook |
|
|
528 |
return wp_kses_split($string, $allowed_html, $allowed_protocols); |
|
|
529 |
} |
|
|
530 |
|
|
|
531 |
/** |
|
|
532 |
* Return a list of allowed tags and attributes for a given context. |
|
|
533 |
* |
|
|
534 |
* @since 3.5.0 |
|
|
535 |
* |
|
|
536 |
* @param string $context The context for which to retrieve tags. Allowed values are |
|
|
537 |
* post | strip | data | entities or the name of a field filter such as pre_user_description. |
|
|
538 |
* @return array List of allowed tags and their allowed attributes. |
|
|
539 |
*/ |
|
|
540 |
function wp_kses_allowed_html( $context = '' ) { |
|
|
541 |
global $allowedposttags, $allowedtags, $allowedentitynames; |
|
|
542 |
|
|
5
|
543 |
if ( is_array( $context ) ) { |
|
|
544 |
/** |
|
|
545 |
* Filter HTML elements allowed for a given context. |
|
|
546 |
* |
|
|
547 |
* @since 3.5.0 |
|
|
548 |
* |
|
|
549 |
* @param string $tags Allowed tags, attributes, and/or entities. |
|
|
550 |
* @param string $context Context to judge allowed tags by. Allowed values are 'post', |
|
|
551 |
* 'data', 'strip', 'entities', 'explicit', or the name of a filter. |
|
|
552 |
*/ |
|
0
|
553 |
return apply_filters( 'wp_kses_allowed_html', $context, 'explicit' ); |
|
5
|
554 |
} |
|
0
|
555 |
|
|
|
556 |
switch ( $context ) { |
|
|
557 |
case 'post': |
|
5
|
558 |
/** This filter is documented in wp-includes/kses.php */ |
|
0
|
559 |
return apply_filters( 'wp_kses_allowed_html', $allowedposttags, $context ); |
|
5
|
560 |
|
|
0
|
561 |
case 'user_description': |
|
|
562 |
case 'pre_user_description': |
|
|
563 |
$tags = $allowedtags; |
|
|
564 |
$tags['a']['rel'] = true; |
|
5
|
565 |
/** This filter is documented in wp-includes/kses.php */ |
|
0
|
566 |
return apply_filters( 'wp_kses_allowed_html', $tags, $context ); |
|
5
|
567 |
|
|
0
|
568 |
case 'strip': |
|
5
|
569 |
/** This filter is documented in wp-includes/kses.php */ |
|
0
|
570 |
return apply_filters( 'wp_kses_allowed_html', array(), $context ); |
|
5
|
571 |
|
|
0
|
572 |
case 'entities': |
|
5
|
573 |
/** This filter is documented in wp-includes/kses.php */ |
|
0
|
574 |
return apply_filters( 'wp_kses_allowed_html', $allowedentitynames, $context); |
|
5
|
575 |
|
|
0
|
576 |
case 'data': |
|
|
577 |
default: |
|
5
|
578 |
/** This filter is documented in wp-includes/kses.php */ |
|
0
|
579 |
return apply_filters( 'wp_kses_allowed_html', $allowedtags, $context ); |
|
|
580 |
} |
|
|
581 |
} |
|
|
582 |
|
|
|
583 |
/** |
|
|
584 |
* You add any kses hooks here. |
|
|
585 |
* |
|
|
586 |
* There is currently only one kses WordPress hook and it is called here. All |
|
|
587 |
* parameters are passed to the hooks and expected to receive a string. |
|
|
588 |
* |
|
|
589 |
* @since 1.0.0 |
|
|
590 |
* |
|
|
591 |
* @param string $string Content to filter through kses |
|
|
592 |
* @param array $allowed_html List of allowed HTML elements |
|
|
593 |
* @param array $allowed_protocols Allowed protocol in links |
|
|
594 |
* @return string Filtered content through 'pre_kses' hook |
|
|
595 |
*/ |
|
|
596 |
function wp_kses_hook( $string, $allowed_html, $allowed_protocols ) { |
|
5
|
597 |
/** |
|
|
598 |
* Filter content to be run through kses. |
|
|
599 |
* |
|
|
600 |
* @since 2.3.0 |
|
|
601 |
* |
|
|
602 |
* @param string $string Content to run through kses. |
|
|
603 |
* @param array $allowed_html Allowed HTML elements. |
|
|
604 |
* @param array $allowed_protocols Allowed protocol in links. |
|
|
605 |
*/ |
|
|
606 |
$string = apply_filters( 'pre_kses', $string, $allowed_html, $allowed_protocols ); |
|
0
|
607 |
return $string; |
|
|
608 |
} |
|
|
609 |
|
|
|
610 |
/** |
|
|
611 |
* This function returns kses' version number. |
|
|
612 |
* |
|
|
613 |
* @since 1.0.0 |
|
|
614 |
* |
|
|
615 |
* @return string KSES Version Number |
|
|
616 |
*/ |
|
|
617 |
function wp_kses_version() { |
|
|
618 |
return '0.2.2'; |
|
|
619 |
} |
|
|
620 |
|
|
|
621 |
/** |
|
|
622 |
* Searches for HTML tags, no matter how malformed. |
|
|
623 |
* |
|
|
624 |
* It also matches stray ">" characters. |
|
|
625 |
* |
|
|
626 |
* @since 1.0.0 |
|
|
627 |
* |
|
|
628 |
* @param string $string Content to filter |
|
|
629 |
* @param array $allowed_html Allowed HTML elements |
|
|
630 |
* @param array $allowed_protocols Allowed protocols to keep |
|
|
631 |
* @return string Content with fixed HTML tags |
|
|
632 |
*/ |
|
|
633 |
function wp_kses_split( $string, $allowed_html, $allowed_protocols ) { |
|
|
634 |
global $pass_allowed_html, $pass_allowed_protocols; |
|
|
635 |
$pass_allowed_html = $allowed_html; |
|
|
636 |
$pass_allowed_protocols = $allowed_protocols; |
|
|
637 |
return preg_replace_callback( '%(<!--.*?(-->|$))|(<[^>]*(>|$)|>)%', '_wp_kses_split_callback', $string ); |
|
|
638 |
} |
|
|
639 |
|
|
|
640 |
/** |
|
|
641 |
* Callback for wp_kses_split. |
|
|
642 |
* |
|
|
643 |
* @since 3.1.0 |
|
|
644 |
* @access private |
|
|
645 |
*/ |
|
|
646 |
function _wp_kses_split_callback( $match ) { |
|
|
647 |
global $pass_allowed_html, $pass_allowed_protocols; |
|
|
648 |
return wp_kses_split2( $match[0], $pass_allowed_html, $pass_allowed_protocols ); |
|
|
649 |
} |
|
|
650 |
|
|
|
651 |
/** |
|
|
652 |
* Callback for wp_kses_split for fixing malformed HTML tags. |
|
|
653 |
* |
|
|
654 |
* This function does a lot of work. It rejects some very malformed things like |
|
|
655 |
* <:::>. It returns an empty string, if the element isn't allowed (look ma, no |
|
|
656 |
* strip_tags()!). Otherwise it splits the tag into an element and an attribute |
|
|
657 |
* list. |
|
|
658 |
* |
|
|
659 |
* After the tag is split into an element and an attribute list, it is run |
|
|
660 |
* through another filter which will remove illegal attributes and once that is |
|
|
661 |
* completed, will be returned. |
|
|
662 |
* |
|
|
663 |
* @access private |
|
|
664 |
* @since 1.0.0 |
|
|
665 |
* |
|
|
666 |
* @param string $string Content to filter |
|
|
667 |
* @param array $allowed_html Allowed HTML elements |
|
|
668 |
* @param array $allowed_protocols Allowed protocols to keep |
|
|
669 |
* @return string Fixed HTML element |
|
|
670 |
*/ |
|
|
671 |
function wp_kses_split2($string, $allowed_html, $allowed_protocols) { |
|
|
672 |
$string = wp_kses_stripslashes($string); |
|
|
673 |
|
|
|
674 |
if (substr($string, 0, 1) != '<') |
|
|
675 |
return '>'; |
|
5
|
676 |
// It matched a ">" character |
|
0
|
677 |
|
|
|
678 |
if ( '<!--' == substr( $string, 0, 4 ) ) { |
|
|
679 |
$string = str_replace( array('<!--', '-->'), '', $string ); |
|
|
680 |
while ( $string != ($newstring = wp_kses($string, $allowed_html, $allowed_protocols)) ) |
|
|
681 |
$string = $newstring; |
|
|
682 |
if ( $string == '' ) |
|
|
683 |
return ''; |
|
|
684 |
// prevent multiple dashes in comments |
|
|
685 |
$string = preg_replace('/--+/', '-', $string); |
|
|
686 |
// prevent three dashes closing a comment |
|
|
687 |
$string = preg_replace('/-$/', '', $string); |
|
|
688 |
return "<!--{$string}-->"; |
|
|
689 |
} |
|
5
|
690 |
// Allow HTML comments |
|
0
|
691 |
|
|
|
692 |
if (!preg_match('%^<\s*(/\s*)?([a-zA-Z0-9]+)([^>]*)>?$%', $string, $matches)) |
|
|
693 |
return ''; |
|
5
|
694 |
// It's seriously malformed |
|
0
|
695 |
|
|
|
696 |
$slash = trim($matches[1]); |
|
|
697 |
$elem = $matches[2]; |
|
|
698 |
$attrlist = $matches[3]; |
|
|
699 |
|
|
|
700 |
if ( ! is_array( $allowed_html ) ) |
|
|
701 |
$allowed_html = wp_kses_allowed_html( $allowed_html ); |
|
|
702 |
|
|
|
703 |
if ( ! isset($allowed_html[strtolower($elem)]) ) |
|
|
704 |
return ''; |
|
5
|
705 |
// They are using a not allowed HTML element |
|
0
|
706 |
|
|
|
707 |
if ($slash != '') |
|
|
708 |
return "</$elem>"; |
|
5
|
709 |
// No attributes are allowed for closing elements |
|
0
|
710 |
|
|
|
711 |
return wp_kses_attr( $elem, $attrlist, $allowed_html, $allowed_protocols ); |
|
|
712 |
} |
|
|
713 |
|
|
|
714 |
/** |
|
|
715 |
* Removes all attributes, if none are allowed for this element. |
|
|
716 |
* |
|
|
717 |
* If some are allowed it calls wp_kses_hair() to split them further, and then |
|
|
718 |
* it builds up new HTML code from the data that kses_hair() returns. It also |
|
|
719 |
* removes "<" and ">" characters, if there are any left. One more thing it does |
|
|
720 |
* is to check if the tag has a closing XHTML slash, and if it does, it puts one |
|
|
721 |
* in the returned code as well. |
|
|
722 |
* |
|
|
723 |
* @since 1.0.0 |
|
|
724 |
* |
|
|
725 |
* @param string $element HTML element/tag |
|
|
726 |
* @param string $attr HTML attributes from HTML element to closing HTML element tag |
|
|
727 |
* @param array $allowed_html Allowed HTML elements |
|
|
728 |
* @param array $allowed_protocols Allowed protocols to keep |
|
|
729 |
* @return string Sanitized HTML element |
|
|
730 |
*/ |
|
|
731 |
function wp_kses_attr($element, $attr, $allowed_html, $allowed_protocols) { |
|
5
|
732 |
// Is there a closing XHTML slash at the end of the attributes? |
|
0
|
733 |
|
|
|
734 |
if ( ! is_array( $allowed_html ) ) |
|
|
735 |
$allowed_html = wp_kses_allowed_html( $allowed_html ); |
|
|
736 |
|
|
|
737 |
$xhtml_slash = ''; |
|
|
738 |
if (preg_match('%\s*/\s*$%', $attr)) |
|
|
739 |
$xhtml_slash = ' /'; |
|
|
740 |
|
|
5
|
741 |
// Are any attributes allowed at all for this element? |
|
0
|
742 |
if ( ! isset($allowed_html[strtolower($element)]) || count($allowed_html[strtolower($element)]) == 0 ) |
|
|
743 |
return "<$element$xhtml_slash>"; |
|
|
744 |
|
|
5
|
745 |
// Split it |
|
0
|
746 |
$attrarr = wp_kses_hair($attr, $allowed_protocols); |
|
|
747 |
|
|
5
|
748 |
// Go through $attrarr, and save the allowed attributes for this element |
|
|
749 |
// in $attr2 |
|
0
|
750 |
$attr2 = ''; |
|
|
751 |
|
|
|
752 |
$allowed_attr = $allowed_html[strtolower($element)]; |
|
|
753 |
foreach ($attrarr as $arreach) { |
|
|
754 |
if ( ! isset( $allowed_attr[strtolower($arreach['name'])] ) ) |
|
5
|
755 |
continue; // the attribute is not allowed |
|
0
|
756 |
|
|
|
757 |
$current = $allowed_attr[strtolower($arreach['name'])]; |
|
|
758 |
if ( $current == '' ) |
|
5
|
759 |
continue; // the attribute is not allowed |
|
0
|
760 |
|
|
|
761 |
if ( strtolower( $arreach['name'] ) == 'style' ) { |
|
|
762 |
$orig_value = $arreach['value']; |
|
|
763 |
$value = safecss_filter_attr( $orig_value ); |
|
|
764 |
|
|
|
765 |
if ( empty( $value ) ) |
|
|
766 |
continue; |
|
|
767 |
|
|
|
768 |
$arreach['value'] = $value; |
|
|
769 |
$arreach['whole'] = str_replace( $orig_value, $value, $arreach['whole'] ); |
|
|
770 |
} |
|
|
771 |
|
|
|
772 |
if ( ! is_array($current) ) { |
|
|
773 |
$attr2 .= ' '.$arreach['whole']; |
|
5
|
774 |
// there are no checks |
|
0
|
775 |
|
|
|
776 |
} else { |
|
5
|
777 |
// there are some checks |
|
0
|
778 |
$ok = true; |
|
|
779 |
foreach ($current as $currkey => $currval) { |
|
|
780 |
if ( ! wp_kses_check_attr_val($arreach['value'], $arreach['vless'], $currkey, $currval) ) { |
|
|
781 |
$ok = false; |
|
|
782 |
break; |
|
|
783 |
} |
|
|
784 |
} |
|
|
785 |
|
|
|
786 |
if ( $ok ) |
|
5
|
787 |
$attr2 .= ' '.$arreach['whole']; // it passed them |
|
|
788 |
} // if !is_array($current) |
|
|
789 |
} // foreach |
|
0
|
790 |
|
|
5
|
791 |
// Remove any "<" or ">" characters |
|
0
|
792 |
$attr2 = preg_replace('/[<>]/', '', $attr2); |
|
|
793 |
|
|
|
794 |
return "<$element$attr2$xhtml_slash>"; |
|
|
795 |
} |
|
|
796 |
|
|
|
797 |
/** |
|
|
798 |
* Builds an attribute list from string containing attributes. |
|
|
799 |
* |
|
|
800 |
* This function does a lot of work. It parses an attribute list into an array |
|
|
801 |
* with attribute data, and tries to do the right thing even if it gets weird |
|
|
802 |
* input. It will add quotes around attribute values that don't have any quotes |
|
|
803 |
* or apostrophes around them, to make it easier to produce HTML code that will |
|
|
804 |
* conform to W3C's HTML specification. It will also remove bad URL protocols |
|
|
805 |
* from attribute values. It also reduces duplicate attributes by using the |
|
|
806 |
* attribute defined first (foo='bar' foo='baz' will result in foo='bar'). |
|
|
807 |
* |
|
|
808 |
* @since 1.0.0 |
|
|
809 |
* |
|
|
810 |
* @param string $attr Attribute list from HTML element to closing HTML element tag |
|
|
811 |
* @param array $allowed_protocols Allowed protocols to keep |
|
|
812 |
* @return array List of attributes after parsing |
|
|
813 |
*/ |
|
|
814 |
function wp_kses_hair($attr, $allowed_protocols) { |
|
|
815 |
$attrarr = array(); |
|
|
816 |
$mode = 0; |
|
|
817 |
$attrname = ''; |
|
|
818 |
$uris = array('xmlns', 'profile', 'href', 'src', 'cite', 'classid', 'codebase', 'data', 'usemap', 'longdesc', 'action'); |
|
|
819 |
|
|
5
|
820 |
// Loop through the whole attribute list |
|
0
|
821 |
|
|
|
822 |
while (strlen($attr) != 0) { |
|
5
|
823 |
$working = 0; // Was the last operation successful? |
|
0
|
824 |
|
|
|
825 |
switch ($mode) { |
|
5
|
826 |
case 0 : // attribute name, href for instance |
|
0
|
827 |
|
|
5
|
828 |
if ( preg_match('/^([-a-zA-Z:]+)/', $attr, $match ) ) { |
|
0
|
829 |
$attrname = $match[1]; |
|
|
830 |
$working = $mode = 1; |
|
5
|
831 |
$attr = preg_replace( '/^[-a-zA-Z:]+/', '', $attr ); |
|
0
|
832 |
} |
|
|
833 |
|
|
|
834 |
break; |
|
|
835 |
|
|
5
|
836 |
case 1 : // equals sign or valueless ("selected") |
|
0
|
837 |
|
|
5
|
838 |
if (preg_match('/^\s*=\s*/', $attr)) // equals sign |
|
0
|
839 |
{ |
|
|
840 |
$working = 1; |
|
|
841 |
$mode = 2; |
|
|
842 |
$attr = preg_replace('/^\s*=\s*/', '', $attr); |
|
|
843 |
break; |
|
|
844 |
} |
|
|
845 |
|
|
5
|
846 |
if (preg_match('/^\s+/', $attr)) // valueless |
|
0
|
847 |
{ |
|
|
848 |
$working = 1; |
|
|
849 |
$mode = 0; |
|
|
850 |
if(false === array_key_exists($attrname, $attrarr)) { |
|
|
851 |
$attrarr[$attrname] = array ('name' => $attrname, 'value' => '', 'whole' => $attrname, 'vless' => 'y'); |
|
|
852 |
} |
|
|
853 |
$attr = preg_replace('/^\s+/', '', $attr); |
|
|
854 |
} |
|
|
855 |
|
|
|
856 |
break; |
|
|
857 |
|
|
5
|
858 |
case 2 : // attribute value, a URL after href= for instance |
|
0
|
859 |
|
|
|
860 |
if (preg_match('%^"([^"]*)"(\s+|/?$)%', $attr, $match)) |
|
5
|
861 |
// "value" |
|
0
|
862 |
{ |
|
|
863 |
$thisval = $match[1]; |
|
|
864 |
if ( in_array(strtolower($attrname), $uris) ) |
|
|
865 |
$thisval = wp_kses_bad_protocol($thisval, $allowed_protocols); |
|
|
866 |
|
|
|
867 |
if(false === array_key_exists($attrname, $attrarr)) { |
|
|
868 |
$attrarr[$attrname] = array ('name' => $attrname, 'value' => $thisval, 'whole' => "$attrname=\"$thisval\"", 'vless' => 'n'); |
|
|
869 |
} |
|
|
870 |
$working = 1; |
|
|
871 |
$mode = 0; |
|
|
872 |
$attr = preg_replace('/^"[^"]*"(\s+|$)/', '', $attr); |
|
|
873 |
break; |
|
|
874 |
} |
|
|
875 |
|
|
|
876 |
if (preg_match("%^'([^']*)'(\s+|/?$)%", $attr, $match)) |
|
5
|
877 |
// 'value' |
|
0
|
878 |
{ |
|
|
879 |
$thisval = $match[1]; |
|
|
880 |
if ( in_array(strtolower($attrname), $uris) ) |
|
|
881 |
$thisval = wp_kses_bad_protocol($thisval, $allowed_protocols); |
|
|
882 |
|
|
|
883 |
if(false === array_key_exists($attrname, $attrarr)) { |
|
|
884 |
$attrarr[$attrname] = array ('name' => $attrname, 'value' => $thisval, 'whole' => "$attrname='$thisval'", 'vless' => 'n'); |
|
|
885 |
} |
|
|
886 |
$working = 1; |
|
|
887 |
$mode = 0; |
|
|
888 |
$attr = preg_replace("/^'[^']*'(\s+|$)/", '', $attr); |
|
|
889 |
break; |
|
|
890 |
} |
|
|
891 |
|
|
|
892 |
if (preg_match("%^([^\s\"']+)(\s+|/?$)%", $attr, $match)) |
|
5
|
893 |
// value |
|
0
|
894 |
{ |
|
|
895 |
$thisval = $match[1]; |
|
|
896 |
if ( in_array(strtolower($attrname), $uris) ) |
|
|
897 |
$thisval = wp_kses_bad_protocol($thisval, $allowed_protocols); |
|
|
898 |
|
|
|
899 |
if(false === array_key_exists($attrname, $attrarr)) { |
|
|
900 |
$attrarr[$attrname] = array ('name' => $attrname, 'value' => $thisval, 'whole' => "$attrname=\"$thisval\"", 'vless' => 'n'); |
|
|
901 |
} |
|
5
|
902 |
// We add quotes to conform to W3C's HTML spec. |
|
0
|
903 |
$working = 1; |
|
|
904 |
$mode = 0; |
|
|
905 |
$attr = preg_replace("%^[^\s\"']+(\s+|$)%", '', $attr); |
|
|
906 |
} |
|
|
907 |
|
|
|
908 |
break; |
|
5
|
909 |
} // switch |
|
0
|
910 |
|
|
5
|
911 |
if ($working == 0) // not well formed, remove and try again |
|
0
|
912 |
{ |
|
|
913 |
$attr = wp_kses_html_error($attr); |
|
|
914 |
$mode = 0; |
|
|
915 |
} |
|
5
|
916 |
} // while |
|
0
|
917 |
|
|
|
918 |
if ($mode == 1 && false === array_key_exists($attrname, $attrarr)) |
|
5
|
919 |
// special case, for when the attribute list ends with a valueless |
|
|
920 |
// attribute like "selected" |
|
0
|
921 |
$attrarr[$attrname] = array ('name' => $attrname, 'value' => '', 'whole' => $attrname, 'vless' => 'y'); |
|
|
922 |
|
|
|
923 |
return $attrarr; |
|
|
924 |
} |
|
|
925 |
|
|
|
926 |
/** |
|
|
927 |
* Performs different checks for attribute values. |
|
|
928 |
* |
|
|
929 |
* The currently implemented checks are "maxlen", "minlen", "maxval", "minval" |
|
|
930 |
* and "valueless". |
|
|
931 |
* |
|
|
932 |
* @since 1.0.0 |
|
|
933 |
* |
|
|
934 |
* @param string $value Attribute value |
|
|
935 |
* @param string $vless Whether the value is valueless. Use 'y' or 'n' |
|
|
936 |
* @param string $checkname What $checkvalue is checking for. |
|
|
937 |
* @param mixed $checkvalue What constraint the value should pass |
|
|
938 |
* @return bool Whether check passes |
|
|
939 |
*/ |
|
|
940 |
function wp_kses_check_attr_val($value, $vless, $checkname, $checkvalue) { |
|
|
941 |
$ok = true; |
|
|
942 |
|
|
|
943 |
switch (strtolower($checkname)) { |
|
|
944 |
case 'maxlen' : |
|
5
|
945 |
// The maxlen check makes sure that the attribute value has a length not |
|
|
946 |
// greater than the given value. This can be used to avoid Buffer Overflows |
|
|
947 |
// in WWW clients and various Internet servers. |
|
0
|
948 |
|
|
|
949 |
if (strlen($value) > $checkvalue) |
|
|
950 |
$ok = false; |
|
|
951 |
break; |
|
|
952 |
|
|
|
953 |
case 'minlen' : |
|
5
|
954 |
// The minlen check makes sure that the attribute value has a length not |
|
|
955 |
// smaller than the given value. |
|
0
|
956 |
|
|
|
957 |
if (strlen($value) < $checkvalue) |
|
|
958 |
$ok = false; |
|
|
959 |
break; |
|
|
960 |
|
|
|
961 |
case 'maxval' : |
|
5
|
962 |
// The maxval check does two things: it checks that the attribute value is |
|
|
963 |
// an integer from 0 and up, without an excessive amount of zeroes or |
|
|
964 |
// whitespace (to avoid Buffer Overflows). It also checks that the attribute |
|
|
965 |
// value is not greater than the given value. |
|
|
966 |
// This check can be used to avoid Denial of Service attacks. |
|
0
|
967 |
|
|
|
968 |
if (!preg_match('/^\s{0,6}[0-9]{1,6}\s{0,6}$/', $value)) |
|
|
969 |
$ok = false; |
|
|
970 |
if ($value > $checkvalue) |
|
|
971 |
$ok = false; |
|
|
972 |
break; |
|
|
973 |
|
|
|
974 |
case 'minval' : |
|
5
|
975 |
// The minval check makes sure that the attribute value is a positive integer, |
|
|
976 |
// and that it is not smaller than the given value. |
|
0
|
977 |
|
|
|
978 |
if (!preg_match('/^\s{0,6}[0-9]{1,6}\s{0,6}$/', $value)) |
|
|
979 |
$ok = false; |
|
|
980 |
if ($value < $checkvalue) |
|
|
981 |
$ok = false; |
|
|
982 |
break; |
|
|
983 |
|
|
|
984 |
case 'valueless' : |
|
5
|
985 |
// The valueless check makes sure if the attribute has a value |
|
|
986 |
// (like <a href="blah">) or not (<option selected>). If the given value |
|
|
987 |
// is a "y" or a "Y", the attribute must not have a value. |
|
|
988 |
// If the given value is an "n" or an "N", the attribute must have one. |
|
0
|
989 |
|
|
|
990 |
if (strtolower($checkvalue) != $vless) |
|
|
991 |
$ok = false; |
|
|
992 |
break; |
|
5
|
993 |
} // switch |
|
0
|
994 |
|
|
|
995 |
return $ok; |
|
|
996 |
} |
|
|
997 |
|
|
|
998 |
/** |
|
|
999 |
* Sanitize string from bad protocols. |
|
|
1000 |
* |
|
|
1001 |
* This function removes all non-allowed protocols from the beginning of |
|
|
1002 |
* $string. It ignores whitespace and the case of the letters, and it does |
|
|
1003 |
* understand HTML entities. It does its work in a while loop, so it won't be |
|
|
1004 |
* fooled by a string like "javascript:javascript:alert(57)". |
|
|
1005 |
* |
|
|
1006 |
* @since 1.0.0 |
|
|
1007 |
* |
|
|
1008 |
* @param string $string Content to filter bad protocols from |
|
|
1009 |
* @param array $allowed_protocols Allowed protocols to keep |
|
|
1010 |
* @return string Filtered content |
|
|
1011 |
*/ |
|
|
1012 |
function wp_kses_bad_protocol($string, $allowed_protocols) { |
|
|
1013 |
$string = wp_kses_no_null($string); |
|
|
1014 |
$iterations = 0; |
|
|
1015 |
|
|
|
1016 |
do { |
|
|
1017 |
$original_string = $string; |
|
|
1018 |
$string = wp_kses_bad_protocol_once($string, $allowed_protocols); |
|
|
1019 |
} while ( $original_string != $string && ++$iterations < 6 ); |
|
|
1020 |
|
|
|
1021 |
if ( $original_string != $string ) |
|
|
1022 |
return ''; |
|
|
1023 |
|
|
|
1024 |
return $string; |
|
|
1025 |
} |
|
|
1026 |
|
|
|
1027 |
/** |
|
5
|
1028 |
* Removes any invalid control characters in $string. |
|
|
1029 |
* |
|
|
1030 |
* Also removes any instance of the '\0' string. |
|
0
|
1031 |
* |
|
|
1032 |
* @since 1.0.0 |
|
|
1033 |
* |
|
|
1034 |
* @param string $string |
|
|
1035 |
* @return string |
|
|
1036 |
*/ |
|
|
1037 |
function wp_kses_no_null($string) { |
|
5
|
1038 |
$string = preg_replace('/[\x00-\x08\x0B\x0C\x0E-\x1F]/', '', $string); |
|
0
|
1039 |
$string = preg_replace('/(\\\\0)+/', '', $string); |
|
|
1040 |
|
|
|
1041 |
return $string; |
|
|
1042 |
} |
|
|
1043 |
|
|
|
1044 |
/** |
|
|
1045 |
* Strips slashes from in front of quotes. |
|
|
1046 |
* |
|
|
1047 |
* This function changes the character sequence \" to just ". It leaves all |
|
|
1048 |
* other slashes alone. It's really weird, but the quoting from |
|
|
1049 |
* preg_replace(//e) seems to require this. |
|
|
1050 |
* |
|
|
1051 |
* @since 1.0.0 |
|
|
1052 |
* |
|
|
1053 |
* @param string $string String to strip slashes |
|
|
1054 |
* @return string Fixed string with quoted slashes |
|
|
1055 |
*/ |
|
|
1056 |
function wp_kses_stripslashes($string) { |
|
|
1057 |
return preg_replace('%\\\\"%', '"', $string); |
|
|
1058 |
} |
|
|
1059 |
|
|
|
1060 |
/** |
|
|
1061 |
* Goes through an array and changes the keys to all lower case. |
|
|
1062 |
* |
|
|
1063 |
* @since 1.0.0 |
|
|
1064 |
* |
|
|
1065 |
* @param array $inarray Unfiltered array |
|
|
1066 |
* @return array Fixed array with all lowercase keys |
|
|
1067 |
*/ |
|
|
1068 |
function wp_kses_array_lc($inarray) { |
|
|
1069 |
$outarray = array (); |
|
|
1070 |
|
|
|
1071 |
foreach ( (array) $inarray as $inkey => $inval) { |
|
|
1072 |
$outkey = strtolower($inkey); |
|
|
1073 |
$outarray[$outkey] = array (); |
|
|
1074 |
|
|
|
1075 |
foreach ( (array) $inval as $inkey2 => $inval2) { |
|
|
1076 |
$outkey2 = strtolower($inkey2); |
|
|
1077 |
$outarray[$outkey][$outkey2] = $inval2; |
|
5
|
1078 |
} // foreach $inval |
|
|
1079 |
} // foreach $inarray |
|
0
|
1080 |
|
|
|
1081 |
return $outarray; |
|
|
1082 |
} |
|
|
1083 |
|
|
|
1084 |
/** |
|
|
1085 |
* Removes the HTML JavaScript entities found in early versions of Netscape 4. |
|
|
1086 |
* |
|
|
1087 |
* @since 1.0.0 |
|
|
1088 |
* |
|
|
1089 |
* @param string $string |
|
|
1090 |
* @return string |
|
|
1091 |
*/ |
|
|
1092 |
function wp_kses_js_entities($string) { |
|
|
1093 |
return preg_replace('%&\s*\{[^}]*(\}\s*;?|$)%', '', $string); |
|
|
1094 |
} |
|
|
1095 |
|
|
|
1096 |
/** |
|
|
1097 |
* Handles parsing errors in wp_kses_hair(). |
|
|
1098 |
* |
|
|
1099 |
* The general plan is to remove everything to and including some whitespace, |
|
|
1100 |
* but it deals with quotes and apostrophes as well. |
|
|
1101 |
* |
|
|
1102 |
* @since 1.0.0 |
|
|
1103 |
* |
|
|
1104 |
* @param string $string |
|
|
1105 |
* @return string |
|
|
1106 |
*/ |
|
|
1107 |
function wp_kses_html_error($string) { |
|
|
1108 |
return preg_replace('/^("[^"]*("|$)|\'[^\']*(\'|$)|\S)*\s*/', '', $string); |
|
|
1109 |
} |
|
|
1110 |
|
|
|
1111 |
/** |
|
|
1112 |
* Sanitizes content from bad protocols and other characters. |
|
|
1113 |
* |
|
|
1114 |
* This function searches for URL protocols at the beginning of $string, while |
|
|
1115 |
* handling whitespace and HTML entities. |
|
|
1116 |
* |
|
|
1117 |
* @since 1.0.0 |
|
|
1118 |
* |
|
|
1119 |
* @param string $string Content to check for bad protocols |
|
|
1120 |
* @param string $allowed_protocols Allowed protocols |
|
|
1121 |
* @return string Sanitized content |
|
|
1122 |
*/ |
|
|
1123 |
function wp_kses_bad_protocol_once($string, $allowed_protocols, $count = 1 ) { |
|
|
1124 |
$string2 = preg_split( '/:|�*58;|�*3a;/i', $string, 2 ); |
|
|
1125 |
if ( isset($string2[1]) && ! preg_match('%/\?%', $string2[0]) ) { |
|
|
1126 |
$string = trim( $string2[1] ); |
|
|
1127 |
$protocol = wp_kses_bad_protocol_once2( $string2[0], $allowed_protocols ); |
|
|
1128 |
if ( 'feed:' == $protocol ) { |
|
|
1129 |
if ( $count > 2 ) |
|
|
1130 |
return ''; |
|
|
1131 |
$string = wp_kses_bad_protocol_once( $string, $allowed_protocols, ++$count ); |
|
|
1132 |
if ( empty( $string ) ) |
|
|
1133 |
return $string; |
|
|
1134 |
} |
|
|
1135 |
$string = $protocol . $string; |
|
|
1136 |
} |
|
|
1137 |
|
|
|
1138 |
return $string; |
|
|
1139 |
} |
|
|
1140 |
|
|
|
1141 |
/** |
|
|
1142 |
* Callback for wp_kses_bad_protocol_once() regular expression. |
|
|
1143 |
* |
|
|
1144 |
* This function processes URL protocols, checks to see if they're in the |
|
|
1145 |
* whitelist or not, and returns different data depending on the answer. |
|
|
1146 |
* |
|
|
1147 |
* @access private |
|
|
1148 |
* @since 1.0.0 |
|
|
1149 |
* |
|
|
1150 |
* @param string $string URI scheme to check against the whitelist |
|
|
1151 |
* @param string $allowed_protocols Allowed protocols |
|
|
1152 |
* @return string Sanitized content |
|
|
1153 |
*/ |
|
|
1154 |
function wp_kses_bad_protocol_once2( $string, $allowed_protocols ) { |
|
|
1155 |
$string2 = wp_kses_decode_entities($string); |
|
|
1156 |
$string2 = preg_replace('/\s/', '', $string2); |
|
|
1157 |
$string2 = wp_kses_no_null($string2); |
|
|
1158 |
$string2 = strtolower($string2); |
|
|
1159 |
|
|
|
1160 |
$allowed = false; |
|
|
1161 |
foreach ( (array) $allowed_protocols as $one_protocol ) |
|
|
1162 |
if ( strtolower($one_protocol) == $string2 ) { |
|
|
1163 |
$allowed = true; |
|
|
1164 |
break; |
|
|
1165 |
} |
|
|
1166 |
|
|
|
1167 |
if ($allowed) |
|
|
1168 |
return "$string2:"; |
|
|
1169 |
else |
|
|
1170 |
return ''; |
|
|
1171 |
} |
|
|
1172 |
|
|
|
1173 |
/** |
|
|
1174 |
* Converts and fixes HTML entities. |
|
|
1175 |
* |
|
5
|
1176 |
* This function normalizes HTML entities. It will convert `AT&T` to the correct |
|
|
1177 |
* `AT&T`, `:` to `:`, `&#XYZZY;` to `&#XYZZY;` and so on. |
|
0
|
1178 |
* |
|
|
1179 |
* @since 1.0.0 |
|
|
1180 |
* |
|
|
1181 |
* @param string $string Content to normalize entities |
|
|
1182 |
* @return string Content with normalized entities |
|
|
1183 |
*/ |
|
|
1184 |
function wp_kses_normalize_entities($string) { |
|
5
|
1185 |
// Disarm all entities by converting & to & |
|
0
|
1186 |
|
|
|
1187 |
$string = str_replace('&', '&', $string); |
|
|
1188 |
|
|
5
|
1189 |
// Change back the allowed entities in our entity whitelist |
|
0
|
1190 |
|
|
5
|
1191 |
$string = preg_replace_callback('/&([A-Za-z]{2,8}[0-9]{0,2});/', 'wp_kses_named_entities', $string); |
|
0
|
1192 |
$string = preg_replace_callback('/&#(0*[0-9]{1,7});/', 'wp_kses_normalize_entities2', $string); |
|
|
1193 |
$string = preg_replace_callback('/&#[Xx](0*[0-9A-Fa-f]{1,6});/', 'wp_kses_normalize_entities3', $string); |
|
|
1194 |
|
|
|
1195 |
return $string; |
|
|
1196 |
} |
|
|
1197 |
|
|
|
1198 |
/** |
|
|
1199 |
* Callback for wp_kses_normalize_entities() regular expression. |
|
|
1200 |
* |
|
|
1201 |
* This function only accepts valid named entity references, which are finite, |
|
|
1202 |
* case-sensitive, and highly scrutinized by HTML and XML validators. |
|
|
1203 |
* |
|
|
1204 |
* @since 3.0.0 |
|
|
1205 |
* |
|
|
1206 |
* @param array $matches preg_replace_callback() matches array |
|
|
1207 |
* @return string Correctly encoded entity |
|
|
1208 |
*/ |
|
|
1209 |
function wp_kses_named_entities($matches) { |
|
|
1210 |
global $allowedentitynames; |
|
|
1211 |
|
|
|
1212 |
if ( empty($matches[1]) ) |
|
|
1213 |
return ''; |
|
|
1214 |
|
|
|
1215 |
$i = $matches[1]; |
|
|
1216 |
return ( ( ! in_array($i, $allowedentitynames) ) ? "&$i;" : "&$i;" ); |
|
|
1217 |
} |
|
|
1218 |
|
|
|
1219 |
/** |
|
|
1220 |
* Callback for wp_kses_normalize_entities() regular expression. |
|
|
1221 |
* |
|
5
|
1222 |
* This function helps {@see wp_kses_normalize_entities()} to only accept 16-bit |
|
|
1223 |
* values and nothing more for `&#number;` entities. |
|
0
|
1224 |
* |
|
|
1225 |
* @access private |
|
|
1226 |
* @since 1.0.0 |
|
|
1227 |
* |
|
|
1228 |
* @param array $matches preg_replace_callback() matches array |
|
|
1229 |
* @return string Correctly encoded entity |
|
|
1230 |
*/ |
|
|
1231 |
function wp_kses_normalize_entities2($matches) { |
|
|
1232 |
if ( empty($matches[1]) ) |
|
|
1233 |
return ''; |
|
|
1234 |
|
|
|
1235 |
$i = $matches[1]; |
|
|
1236 |
if (valid_unicode($i)) { |
|
|
1237 |
$i = str_pad(ltrim($i,'0'), 3, '0', STR_PAD_LEFT); |
|
|
1238 |
$i = "&#$i;"; |
|
|
1239 |
} else { |
|
|
1240 |
$i = "&#$i;"; |
|
|
1241 |
} |
|
|
1242 |
|
|
|
1243 |
return $i; |
|
|
1244 |
} |
|
|
1245 |
|
|
|
1246 |
/** |
|
|
1247 |
* Callback for wp_kses_normalize_entities() for regular expression. |
|
|
1248 |
* |
|
|
1249 |
* This function helps wp_kses_normalize_entities() to only accept valid Unicode |
|
|
1250 |
* numeric entities in hex form. |
|
|
1251 |
* |
|
|
1252 |
* @access private |
|
|
1253 |
* |
|
|
1254 |
* @param array $matches preg_replace_callback() matches array |
|
|
1255 |
* @return string Correctly encoded entity |
|
|
1256 |
*/ |
|
|
1257 |
function wp_kses_normalize_entities3($matches) { |
|
|
1258 |
if ( empty($matches[1]) ) |
|
|
1259 |
return ''; |
|
|
1260 |
|
|
|
1261 |
$hexchars = $matches[1]; |
|
|
1262 |
return ( ( ! valid_unicode(hexdec($hexchars)) ) ? "&#x$hexchars;" : '&#x'.ltrim($hexchars,'0').';' ); |
|
|
1263 |
} |
|
|
1264 |
|
|
|
1265 |
/** |
|
|
1266 |
* Helper function to determine if a Unicode value is valid. |
|
|
1267 |
* |
|
|
1268 |
* @param int $i Unicode value |
|
|
1269 |
* @return bool True if the value was a valid Unicode number |
|
|
1270 |
*/ |
|
|
1271 |
function valid_unicode($i) { |
|
|
1272 |
return ( $i == 0x9 || $i == 0xa || $i == 0xd || |
|
|
1273 |
($i >= 0x20 && $i <= 0xd7ff) || |
|
|
1274 |
($i >= 0xe000 && $i <= 0xfffd) || |
|
|
1275 |
($i >= 0x10000 && $i <= 0x10ffff) ); |
|
|
1276 |
} |
|
|
1277 |
|
|
|
1278 |
/** |
|
|
1279 |
* Convert all entities to their character counterparts. |
|
|
1280 |
* |
|
5
|
1281 |
* This function decodes numeric HTML entities (`A` and `A`). |
|
|
1282 |
* It doesn't do anything with other entities like ä, but we don't |
|
|
1283 |
* need them in the URL protocol whitelisting system anyway. |
|
0
|
1284 |
* |
|
|
1285 |
* @since 1.0.0 |
|
|
1286 |
* |
|
|
1287 |
* @param string $string Content to change entities |
|
|
1288 |
* @return string Content after decoded entities |
|
|
1289 |
*/ |
|
|
1290 |
function wp_kses_decode_entities($string) { |
|
|
1291 |
$string = preg_replace_callback('/&#([0-9]+);/', '_wp_kses_decode_entities_chr', $string); |
|
|
1292 |
$string = preg_replace_callback('/&#[Xx]([0-9A-Fa-f]+);/', '_wp_kses_decode_entities_chr_hexdec', $string); |
|
|
1293 |
|
|
|
1294 |
return $string; |
|
|
1295 |
} |
|
|
1296 |
|
|
|
1297 |
/** |
|
|
1298 |
* Regex callback for wp_kses_decode_entities() |
|
|
1299 |
* |
|
|
1300 |
* @param array $match preg match |
|
|
1301 |
* @return string |
|
|
1302 |
*/ |
|
|
1303 |
function _wp_kses_decode_entities_chr( $match ) { |
|
|
1304 |
return chr( $match[1] ); |
|
|
1305 |
} |
|
|
1306 |
|
|
|
1307 |
/** |
|
|
1308 |
* Regex callback for wp_kses_decode_entities() |
|
|
1309 |
* |
|
|
1310 |
* @param array $match preg match |
|
|
1311 |
* @return string |
|
|
1312 |
*/ |
|
|
1313 |
function _wp_kses_decode_entities_chr_hexdec( $match ) { |
|
|
1314 |
return chr( hexdec( $match[1] ) ); |
|
|
1315 |
} |
|
|
1316 |
|
|
|
1317 |
/** |
|
|
1318 |
* Sanitize content with allowed HTML Kses rules. |
|
|
1319 |
* |
|
|
1320 |
* @since 1.0.0 |
|
|
1321 |
* |
|
|
1322 |
* @param string $data Content to filter, expected to be escaped with slashes |
|
|
1323 |
* @return string Filtered content |
|
|
1324 |
*/ |
|
|
1325 |
function wp_filter_kses( $data ) { |
|
|
1326 |
return addslashes( wp_kses( stripslashes( $data ), current_filter() ) ); |
|
|
1327 |
} |
|
|
1328 |
|
|
|
1329 |
/** |
|
|
1330 |
* Sanitize content with allowed HTML Kses rules. |
|
|
1331 |
* |
|
|
1332 |
* @since 2.9.0 |
|
|
1333 |
* |
|
|
1334 |
* @param string $data Content to filter, expected to not be escaped |
|
|
1335 |
* @return string Filtered content |
|
|
1336 |
*/ |
|
|
1337 |
function wp_kses_data( $data ) { |
|
|
1338 |
return wp_kses( $data , current_filter() ); |
|
|
1339 |
} |
|
|
1340 |
|
|
|
1341 |
/** |
|
|
1342 |
* Sanitize content for allowed HTML tags for post content. |
|
|
1343 |
* |
|
|
1344 |
* Post content refers to the page contents of the 'post' type and not $_POST |
|
|
1345 |
* data from forms. |
|
|
1346 |
* |
|
|
1347 |
* @since 2.0.0 |
|
|
1348 |
* |
|
|
1349 |
* @param string $data Post content to filter, expected to be escaped with slashes |
|
|
1350 |
* @return string Filtered post content with allowed HTML tags and attributes intact. |
|
|
1351 |
*/ |
|
|
1352 |
function wp_filter_post_kses($data) { |
|
|
1353 |
return addslashes ( wp_kses( stripslashes( $data ), 'post' ) ); |
|
|
1354 |
} |
|
|
1355 |
|
|
|
1356 |
/** |
|
|
1357 |
* Sanitize content for allowed HTML tags for post content. |
|
|
1358 |
* |
|
|
1359 |
* Post content refers to the page contents of the 'post' type and not $_POST |
|
|
1360 |
* data from forms. |
|
|
1361 |
* |
|
|
1362 |
* @since 2.9.0 |
|
|
1363 |
* |
|
|
1364 |
* @param string $data Post content to filter |
|
|
1365 |
* @return string Filtered post content with allowed HTML tags and attributes intact. |
|
|
1366 |
*/ |
|
|
1367 |
function wp_kses_post($data) { |
|
|
1368 |
return wp_kses( $data , 'post' ); |
|
|
1369 |
} |
|
|
1370 |
|
|
|
1371 |
/** |
|
|
1372 |
* Strips all of the HTML in the content. |
|
|
1373 |
* |
|
|
1374 |
* @since 2.1.0 |
|
|
1375 |
* |
|
|
1376 |
* @param string $data Content to strip all HTML from |
|
|
1377 |
* @return string Filtered content without any HTML |
|
|
1378 |
*/ |
|
|
1379 |
function wp_filter_nohtml_kses( $data ) { |
|
|
1380 |
return addslashes ( wp_kses( stripslashes( $data ), 'strip' ) ); |
|
|
1381 |
} |
|
|
1382 |
|
|
|
1383 |
/** |
|
|
1384 |
* Adds all Kses input form content filters. |
|
|
1385 |
* |
|
|
1386 |
* All hooks have default priority. The wp_filter_kses() function is added to |
|
|
1387 |
* the 'pre_comment_content' and 'title_save_pre' hooks. |
|
|
1388 |
* |
|
|
1389 |
* The wp_filter_post_kses() function is added to the 'content_save_pre', |
|
|
1390 |
* 'excerpt_save_pre', and 'content_filtered_save_pre' hooks. |
|
|
1391 |
* |
|
|
1392 |
* @since 2.0.0 |
|
|
1393 |
*/ |
|
|
1394 |
function kses_init_filters() { |
|
|
1395 |
// Normal filtering |
|
|
1396 |
add_filter('title_save_pre', 'wp_filter_kses'); |
|
|
1397 |
|
|
|
1398 |
// Comment filtering |
|
|
1399 |
if ( current_user_can( 'unfiltered_html' ) ) |
|
|
1400 |
add_filter( 'pre_comment_content', 'wp_filter_post_kses' ); |
|
|
1401 |
else |
|
|
1402 |
add_filter( 'pre_comment_content', 'wp_filter_kses' ); |
|
|
1403 |
|
|
|
1404 |
// Post filtering |
|
|
1405 |
add_filter('content_save_pre', 'wp_filter_post_kses'); |
|
|
1406 |
add_filter('excerpt_save_pre', 'wp_filter_post_kses'); |
|
|
1407 |
add_filter('content_filtered_save_pre', 'wp_filter_post_kses'); |
|
|
1408 |
} |
|
|
1409 |
|
|
|
1410 |
/** |
|
|
1411 |
* Removes all Kses input form content filters. |
|
|
1412 |
* |
|
|
1413 |
* A quick procedural method to removing all of the filters that kses uses for |
|
|
1414 |
* content in WordPress Loop. |
|
|
1415 |
* |
|
|
1416 |
* Does not remove the kses_init() function from 'init' hook (priority is |
|
|
1417 |
* default). Also does not remove kses_init() function from 'set_current_user' |
|
|
1418 |
* hook (priority is also default). |
|
|
1419 |
* |
|
|
1420 |
* @since 2.0.6 |
|
|
1421 |
*/ |
|
|
1422 |
function kses_remove_filters() { |
|
|
1423 |
// Normal filtering |
|
|
1424 |
remove_filter('title_save_pre', 'wp_filter_kses'); |
|
|
1425 |
|
|
|
1426 |
// Comment filtering |
|
|
1427 |
remove_filter( 'pre_comment_content', 'wp_filter_post_kses' ); |
|
|
1428 |
remove_filter( 'pre_comment_content', 'wp_filter_kses' ); |
|
|
1429 |
|
|
|
1430 |
// Post filtering |
|
|
1431 |
remove_filter('content_save_pre', 'wp_filter_post_kses'); |
|
|
1432 |
remove_filter('excerpt_save_pre', 'wp_filter_post_kses'); |
|
|
1433 |
remove_filter('content_filtered_save_pre', 'wp_filter_post_kses'); |
|
|
1434 |
} |
|
|
1435 |
|
|
|
1436 |
/** |
|
|
1437 |
* Sets up most of the Kses filters for input form content. |
|
|
1438 |
* |
|
|
1439 |
* If you remove the kses_init() function from 'init' hook and |
|
|
1440 |
* 'set_current_user' (priority is default), then none of the Kses filter hooks |
|
|
1441 |
* will be added. |
|
|
1442 |
* |
|
|
1443 |
* First removes all of the Kses filters in case the current user does not need |
|
|
1444 |
* to have Kses filter the content. If the user does not have unfiltered_html |
|
|
1445 |
* capability, then Kses filters are added. |
|
|
1446 |
* |
|
|
1447 |
* @since 2.0.0 |
|
|
1448 |
*/ |
|
|
1449 |
function kses_init() { |
|
|
1450 |
kses_remove_filters(); |
|
|
1451 |
|
|
|
1452 |
if (current_user_can('unfiltered_html') == false) |
|
|
1453 |
kses_init_filters(); |
|
|
1454 |
} |
|
|
1455 |
|
|
|
1456 |
/** |
|
|
1457 |
* Inline CSS filter |
|
|
1458 |
* |
|
|
1459 |
* @since 2.8.1 |
|
|
1460 |
*/ |
|
|
1461 |
function safecss_filter_attr( $css, $deprecated = '' ) { |
|
|
1462 |
if ( !empty( $deprecated ) ) |
|
|
1463 |
_deprecated_argument( __FUNCTION__, '2.8.1' ); // Never implemented |
|
|
1464 |
|
|
|
1465 |
$css = wp_kses_no_null($css); |
|
|
1466 |
$css = str_replace(array("\n","\r","\t"), '', $css); |
|
|
1467 |
|
|
5
|
1468 |
if ( preg_match( '%[\\\\(&=}]|/\*%', $css ) ) // remove any inline css containing \ ( & } = or comments |
|
0
|
1469 |
return ''; |
|
|
1470 |
|
|
|
1471 |
$css_array = explode( ';', trim( $css ) ); |
|
5
|
1472 |
|
|
|
1473 |
/** |
|
|
1474 |
* Filter list of allowed CSS attributes. |
|
|
1475 |
* |
|
|
1476 |
* @since 2.8.1 |
|
|
1477 |
* |
|
|
1478 |
* @param array $attr List of allowed CSS attributes. |
|
|
1479 |
*/ |
|
0
|
1480 |
$allowed_attr = apply_filters( 'safe_style_css', array( 'text-align', 'margin', 'color', 'float', |
|
|
1481 |
'border', 'background', 'background-color', 'border-bottom', 'border-bottom-color', |
|
|
1482 |
'border-bottom-style', 'border-bottom-width', 'border-collapse', 'border-color', 'border-left', |
|
|
1483 |
'border-left-color', 'border-left-style', 'border-left-width', 'border-right', 'border-right-color', |
|
|
1484 |
'border-right-style', 'border-right-width', 'border-spacing', 'border-style', 'border-top', |
|
|
1485 |
'border-top-color', 'border-top-style', 'border-top-width', 'border-width', 'caption-side', |
|
|
1486 |
'clear', 'cursor', 'direction', 'font', 'font-family', 'font-size', 'font-style', |
|
|
1487 |
'font-variant', 'font-weight', 'height', 'letter-spacing', 'line-height', 'margin-bottom', |
|
|
1488 |
'margin-left', 'margin-right', 'margin-top', 'overflow', 'padding', 'padding-bottom', |
|
|
1489 |
'padding-left', 'padding-right', 'padding-top', 'text-decoration', 'text-indent', 'vertical-align', |
|
|
1490 |
'width' ) ); |
|
|
1491 |
|
|
|
1492 |
if ( empty($allowed_attr) ) |
|
|
1493 |
return $css; |
|
|
1494 |
|
|
|
1495 |
$css = ''; |
|
|
1496 |
foreach ( $css_array as $css_item ) { |
|
|
1497 |
if ( $css_item == '' ) |
|
|
1498 |
continue; |
|
|
1499 |
$css_item = trim( $css_item ); |
|
|
1500 |
$found = false; |
|
|
1501 |
if ( strpos( $css_item, ':' ) === false ) { |
|
|
1502 |
$found = true; |
|
|
1503 |
} else { |
|
|
1504 |
$parts = explode( ':', $css_item ); |
|
|
1505 |
if ( in_array( trim( $parts[0] ), $allowed_attr ) ) |
|
|
1506 |
$found = true; |
|
|
1507 |
} |
|
|
1508 |
if ( $found ) { |
|
|
1509 |
if( $css != '' ) |
|
|
1510 |
$css .= ';'; |
|
|
1511 |
$css .= $css_item; |
|
|
1512 |
} |
|
|
1513 |
} |
|
|
1514 |
|
|
|
1515 |
return $css; |
|
|
1516 |
} |
|
|
1517 |
|
|
|
1518 |
/** |
|
|
1519 |
* Helper function to add global attributes to a tag in the allowed html list. |
|
|
1520 |
* |
|
|
1521 |
* @since 3.5.0 |
|
|
1522 |
* @access private |
|
|
1523 |
* |
|
|
1524 |
* @param array $value An array of attributes. |
|
|
1525 |
* @return array The array of attributes with global attributes added. |
|
|
1526 |
*/ |
|
|
1527 |
function _wp_add_global_attributes( $value ) { |
|
|
1528 |
$global_attributes = array( |
|
|
1529 |
'class' => true, |
|
|
1530 |
'id' => true, |
|
|
1531 |
'style' => true, |
|
|
1532 |
'title' => true, |
|
5
|
1533 |
'role' => true, |
|
0
|
1534 |
); |
|
|
1535 |
|
|
|
1536 |
if ( true === $value ) |
|
|
1537 |
$value = array(); |
|
|
1538 |
|
|
|
1539 |
if ( is_array( $value ) ) |
|
|
1540 |
return array_merge( $value, $global_attributes ); |
|
|
1541 |
|
|
|
1542 |
return $value; |
|
|
1543 |
} |