Skip to content

Redirect history not recorded when resend request #2989

Closed
@g-sato

Description

Hello zap team,

I found a problem about ZAP history log.

[Steps to reproduce]

  1. 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();
?>
  1. Run ZAP 2.5.0 and access index.php

  2. 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)
  1. Do resend request to index.php by select "Resend.." in contextmenu of ZAP history window.

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions