Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I wonder if there is a piece of software to allow automatically testing a webserver for compliance with the HTTP protocol? Ideally I'd like this program to work like this: I give it the address and port, it runs a bunch of requests and then outputs one of "non-compliant", "conditionally compliant", "fully compliant".
Thanks
The only general HTTP test suite that I'm currently aware of is CoAdvisor/HTTP.
Afaik, you can have a free demo of it, but the demo contains only a subset of all the existing test cases they have. If you need more than that, check their license options.
maybe pathod is some tool for you ? also, look for libhtp tests directory
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I want to analyze the HTTP Requests generated when I am interacting with a web application through my browser.
Can anyone suggest a tool that I can use to see the outgoing Http Requests from my browser?
I want to see the entire Http Request, not only the header.
I tend to use Fiddler which is freeware works with all browsers, but there are several others, including the built-in dev tools for the browser of your choice.
I am using Burp Suite community edition, with that we can do things like view requests response and some other stuff, it commonly used by bug hunters. If you are good at any programming, you can built your own tools for this purpose, there are a lot of libraries out there. PS your programming skill will increase.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
We wish to write a music streaming app to run on our college LAN. A single user would be able to broadcast an mp3 using this app and all other hosts must be playing it...sort of like a radio.Which of the media streaming protocols are best suited for this purpose?
try using the RTSP
reference wiki
or try googling it
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I currently use fiddler2 ,paros proxy, Live Http Header and HttpFox.
I would like to know if there are some Free good quality http debugging tools available other than these.
Thanks Again Guys!
I would say, Firebug is a pretty good (and free) complement to all these tools you are mentioning. I would also recommend Wireshark. It's a lower level PACKET SNIFFER than the ones you've mentioned, but is has a pretty good HTTP decoder.
Paros hasnt been updated for many years -
have a look at the OWASP Zed Attack Proxy instead.
Its a free, open source fork of Paros and has been significantly enhanced.
Simon (ZAP Project Lead)
Check out Glimpse. It hooks into your ASP.NET MVC/Forms app and provides you with debug info on calls/cache hits and misses/remote calls/etc.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
What are some good libraries for doing TCP reassembly? I have some pcap files (too large to handle using wireshark) and I want to do TCP reassembly. Development of libnids seems to have stopped. I'm wondering if anybody could give
Have you tried using the bro-ids http://bro-ids.org/ TCP layer written in C++? You are able to write simple application layer bro-scripts to do whatever you need to do. Otherwise, you can take a look on their src code.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
In some crucial projects I relelized that time is one of the biggest concern while developing a project, specially a web application.
Specifically about ASP.NET, does any Open Source tools exists for generating code for helping developers [like codesmith] to work smarter rather than work harder?
I think T4 templates is what you need.
Check this out: http://msdn.microsoft.com/en-us/library/bb126445.aspx
I'm not sure if your problem is that you want a code generator or something to help you generate automated tests to be run in different browsers. Since codesmith does .NET I'll assume you wanted automated tests for various browsers.
Check out selenium