<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>

<example fontsize="1.5em" result="0"><![CDATA[https://www.xstreetsl.com/modules.php?%E0=attr_injection&name=Marketplace&file=item&ItemID=1988273]]></example>

</slide>
