<slide title="Direct Attacks">

<image filename="dewie5.gif" align="right" marginright="10"/>
<blurb title="Dumb things" />
<blurb>
Don't do dumb things!
</blurb>

<example marginright="25"><![CDATA[<?php
    system($user_data);
?>]]></example>

<example marginright="25"><![CDATA[<?php
    include "$path/$user_data";
?>]]></example>

<example marginright="25"><![CDATA[<?php
    eval($user_data);
?>]]></example>

<blurb title="Others">
preg_replace with /e option, exec(), popen(), passthru, and backticks ``
</blurb>

</slide>
