Tell me more ×
Web Applications Stack Exchange is a question and answer site for power users of web applications. It's 100% free, no registration required.

I often go looking at websites of Facebook offers people have claimed, or just general investigations into how legitimate a site looks by where one ends up after visiting the initial URL / the page contents on the final page. However the web based tools I have currently found all have limitations, which limit my ability to do this and also cite my evidence.

I am aware of the following sites that allow you to inspect the particulars of an HTTP(S) transaction with most websites:

http://web-sniffer.net

  • HTTP & HTTPS
  • Only bookmark result if HTTP header includes an etag, or a redirect like a HTTP302
  • No following redirects

http://www.rexswain.com/httpview.html

  • HTTP only
  • Can specify parameters of the request in the GET string
  • Follows redirects

http://www.metamend.com/seo-tools/http-header-request-viewer.html

  • HTTP only
  • Doesn't appear to allow bookmarking of the query in any way
  • Follows redirects

For reference, there is also one that will only work on web servers you have write access to (needs to find a file named delorie.html in directory wanting to fetch, or root), which I haven't tested:

http://www.delorie.com/web/headers.html

So, the Question - I have listed them in order of preferred features for me, but just wondering if anyone knows of one that deals with either HTTP or HTTPS, will allow the query to be bookmarked and follows redirects?

share|improve this question
Perhaps those who spend their time making the great fiddle websites (jsfiddle.com / sqlfiddle.com / etc) could also make a ¿httpfiddle.com? one, which I am sure would include the above akin-to-principle features, and many more me and others would find cool! – user66001 Mar 17 at 22:57

migrated from superuser.com Feb 14 at 11:08

2 Answers

Have you considered HTTPAnalyzer?

HTTPWatch is good for saving sessions and opening those saved at other computers.

share|improve this answer
So, what's your answer? Analyser or Watch? Are you by any chance affiliated to either programmes? – Jacob Jan Tuinstra Mar 13 at 12:08
Igor Savinkin - Perhaps you were meaning to put "HTTPWatch is also good..."? Also, looked at both HTTPAnalyzer and HTTPWatch, but both appear to be PC software, and not websites where I can easily share a link to my findings with others. Thanks for the suggesting these though, they may come in handy for other projects. – user66001 Mar 17 at 22:54
I'm not affiliated. I just find them good, much better than online or browser built-in sniffers. Sure you want smth. on the web to be able to bookmark. I'll check more on this condition and also those that follow redirects. – Igor Savinkin Mar 18 at 12:04

I'm not sure whats your exact purpose but if you want to save/see http transcation and you can do it your own machine, you can use local proxy utilities like Paros or OWASP's zap (both support http and https). They'll start a local proxy server on your machine. You can then configure your broswer to use it as a proxy to any request. Open any page you want to save/sniff, you'll get all the http info in the utility's logs.

You could also simply use curl -vl {url} to quickly get details of http transaction.

share|improve this answer
Hi Arpit Jain - Need it to be a web based utility, so I can send to others that may not have tools installed. – user66001 Feb 5 at 8:11
Do you plan to provide a alternative to the sites you mentioned in your question? – Arpit Jain Feb 5 at 13:06
Um, no, that is why I asked a question. If I knew, I would have answered it right away, or not posted anything... – user66001 Feb 6 at 4:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.