Question:Consider the following code:<?phpheader("Location: {$_GET['url']}");?> Which of the following values of $_GET['url'] would cause session fixation?
<?phpheader("Location: {$_GET['url']}");?>
A Session Fixation is not possible with this code snippet B http://www.zend.com/?PHPSESSID=123 C PHPSESSID%611243 D Set-Cookie%3A+PHPSESSID%611234 E http%3A%2F%2Fwww.zend.com%2F%0D%0ASet-Cookie%3A+PHPSESSID%611234
+ AnswerB
+ Report