<slide title="XSS Types">
<break lines="6"/>

<blurb fontsize="5em">Character Encoding Hack</blurb>
<example fontsize="1.5em" result="0"><![CDATA[<?php 
$foo = htmlspecialchars($_GET['foo'], ENT_QUOTES);
$bar = htmlspecialchars($_GET['bar'], ENT_QUOTES);
?>
<input type=text name=foo value="<?php echo $foo?>"/>
<input type=text name=bar value="<?php echo $bar?>"/>]]></example>
</slide>
