mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-09 15:28:40 +00:00
62 lines
1.7 KiB
PHP
62 lines
1.7 KiB
PHP
|
<?php
|
||
|
|
||
|
header('Content-type: text/html; charset=UTF-8');
|
||
|
|
||
|
?><!DOCTYPE html
|
||
|
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>HTMLPurifier Variable Width Attack Smoketest</title>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>HTMLPurifier Variable Width Attack Smoketest</h1>
|
||
|
<p>For more information, see
|
||
|
<a href="http://applesoup.googlepages.com/bypass_filter.txt">Cheng Peng Su's
|
||
|
original advisory.</a> This particular exploit code appears only to work
|
||
|
in Internet Explorer, if it works at all.</p>
|
||
|
<h2>Test</h2>
|
||
|
<?php
|
||
|
|
||
|
set_include_path('../library' . PATH_SEPARATOR . get_include_path());
|
||
|
require_once 'HTMLPurifier.php';
|
||
|
$purifier = new HTMLPurifier();
|
||
|
|
||
|
function escape($string) {
|
||
|
$string = htmlspecialchars($string, ENT_COMPAT, 'UTF-8');
|
||
|
$string = iconv('UTF-8', 'UTF-8//IGNORE', $string);
|
||
|
return $string;
|
||
|
}
|
||
|
|
||
|
?>
|
||
|
<table>
|
||
|
<thead><tr><th>ASCII</th><th width="30%">Raw</th><th>Output</th><th>Render</th></tr></thead>
|
||
|
<tbody>
|
||
|
<?php
|
||
|
|
||
|
for ($i = 0; $i < 256; $i++) {
|
||
|
$c = chr($i);
|
||
|
$html = '<img src="" alt="X' . $c . '"';
|
||
|
$html .= '>A"'; // in our out the attribute? ;-)
|
||
|
$html .= "onerror=alert('$i')>O";
|
||
|
$pure_html = $purifier->purify($html);
|
||
|
?>
|
||
|
<tr>
|
||
|
<td><?php echo $i; ?></td>
|
||
|
<td style="font-size:8pt;"><?php echo escape($html); ?></td>
|
||
|
<td style="font-size:8pt;"><?php echo escape($pure_html); ?></td>
|
||
|
<td><?php echo $pure_html; ?></td>
|
||
|
</tr>
|
||
|
<?php } ?>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
<h2>Analysis</h2>
|
||
|
|
||
|
<p>This test currently passes the XSS aspect but fails the validation aspect
|
||
|
due to generalized encoding issues. An augmented UTF-8 smoketest is
|
||
|
pending, until then, consider this a pass.</p>
|
||
|
|
||
|
</body>
|
||
|
</html>
|