Re: Auditing Code (security wise)
Posted by wtravel on 1197634034
Also let's put some attention to the potentially dangerous:
foreach ( $_POST as $k => $v ) {
${$k} = $v;
}
ICMS checks the superglobals for being present in requests but still it is better to prevent vulnerability by not using commonly known risky programming methods.
This Post was from: https://www.impresscms.org/iforum/viewtopic.php?topic_id=618&post_id=6228