Rinoqp / andiparos

Automatically exported from code.google.com/p/andiparos
0 stars 0 forks source link

Feature Request: Add the HTTP response number after the directories/files names if it's different than "200 OK" #6

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Hi all,

I have a little request for the site map :)
Could you add the HTTP response number after the directories/files names if 
it's different than "200 OK"

To add this functionality, add the following code before "return leafName;" of 
the getLeafName method in the src/org/parosproxy/paros/model/SiteMap.java file :

if( msg.getResponseHeader().getStatusCode() != 200)
            leafName = leafName + "  [" + msg.getResponseHeader().getStatusCode() + "]";

Regards,

Nicolas K.

Original issue reported on code.google.com by nicolas....@gmail.com on 28 Jun 2010 at 10:47

GoogleCodeExporter commented 8 years ago
This will be integrated as an option in the next release of Andiparos.

Regards,
Axel

Original comment by a.c.neumann on 28 Jun 2010 at 11:36

GoogleCodeExporter commented 8 years ago

Original comment by a.c.neumann on 28 Jun 2010 at 11:37

GoogleCodeExporter commented 8 years ago
Hi Nicolas,

i just integrated the feature of adding the HTTP response code to the sitemap 
nodes. I wondered why you only want to have the status code added when it is 
different than "200 OK". For the moment, i add the status code to each sitemap 
node.

Could you please explain your idea for only adding Non-"200 OK"s?

Regards,
Axel

Original comment by a.c.neumann on 29 Jun 2010 at 5:41

GoogleCodeExporter commented 8 years ago
Adding all status codes is great too.
Benefit to only add status codes different than 200 permits to quickly warn if 
a folder or a file has an unusual response, which is quite useful during a 
penetration test :)

Original comment by nicolas....@gmail.com on 1 Jul 2010 at 8:15

GoogleCodeExporter commented 8 years ago
Implemented as requested

Original comment by a.c.neumann on 2 Jul 2010 at 12:28