Redirect history not recorded when resend request #2989
Closed
Description
opened on Nov 9, 2016
Hello zap team,
I found a problem about ZAP history log.
[Steps to reproduce]
- Make these three php files, and put it on webserver.
[index.php]
<?php
header('Location: index2.php');
exit;
?>
[index2.php]
<?php
header('Location: index3.php');
exit;
?>
[index3.php]
<?php
phpinfo();
?>
-
Run ZAP 2.5.0 and access index.php
-
the URL history on ZAP history window is below:
GET index.php / 302 Found / 0kb
GET index2.php / 302 Found / 0kb
GET index3.php / 200 OK / 97.96KiB
(* 3 lines)
-
Do resend request to index.php by select "Resend.." in contextmenu of ZAP history window.
-
The URL history displayed on ZAP history window is below:
GET index.php / 200 OK / 98.16KiB
(* 1 line)
This history log is looks like there is a one response back from index.php as single page and there is no redirects.
(Additional information, same problem occurs in a part of activescan to index.php)
Is this the intended behavior?
Regards.
Activity