views:

429

answers:

1

Hi guys, How can you test Http header injection in your application. Actually I want to see what is the diff after adding enableheader=false in config and before in my application. Can somebody help me with that.

Framework .NET 2.0 Language C# Platform: windows XP

+2  A: 

You can manually test it by inspecting the header request/response with a tool such as Fiddler (an article about how to use it here), or using a Firefox add-on like Firebug or Live HTTP Headers.

Alconja
so i installed fiddler and tried running on my application.I got some HTTP responses back.But how would I know about http header injection from fiddler.Is there anything I need to see which tells me that this page is vulnerable to http header injection.
alice7
Alconja