Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have used Fiddler2 with great results on windows before, but now I have moved to using linux for development. The problem I have, is that I have not been able to find a decent replacement for Fiddler2 that will run on linux.

I have tried Wireshark, but it is perhaps too generic in what it does, and I can never really make any sense of its output.

What tools do you use on linux to debug/inspect web-traffic during development?

share|improve this question
Have you tried running it on linux using mono? Slight chance it will even work. – Dykam Jan 11 '10 at 8:38
6  
I'm not going to recommend searching Google, as this question is the first hit for "fiddler2 linux" :p – James Polley Jan 11 '10 at 9:27
@Dykam: Very slight chance, unless Mono can somehow fake the whole WinInet library, which is IIRC Win32 native code. – Piskvor Jan 11 '10 at 15:35
2  
Fiddler only uses WinINET to hook WinINET, so that won't be the problem. It does do a fair amount of PInvoke however, so it's unlikely to run on Mono. – EricLaw Jan 13 '10 at 20:50
@EricLaw: I stand corrected. – Piskvor Jan 13 '10 at 23:01

16 Answers

up vote 18 down vote accepted

Charles looks good, although it isn't free.

There are various plugins for firefox such as Live HTTP headers that do some of this.

share|improve this answer
7  
Tamper Data is another good Firefox plugin. – caf Jan 12 '10 at 1:27
4  
If you just want to view the HTTP Headers through the browser Web Developer Toolbar can do that and it works with FF and Chrome. – Evan Carroll May 6 '11 at 17:10

Late to the game, I know, but there is also WebScarab which is a free Java web proxy similar to Fiddler. Quite good, I've been using it for years.

share|improve this answer
2  
You will have to jump through some hoops to run WebScarab-NG in Ubuntu 10.04. You can find more information at brighthub.com/hubfolio/matthew-casperson/articles/81091.aspx – Phyxx Aug 4 '10 at 3:49

You could run Fiddler on a different machine and set that as your HTTP proxy; this way, it doesn't matter on what OS your app runs. As MarkR notes, "different machine" can also mean "inside a VM."

share|improve this answer

There is another Java application that aims to do what Fiddler does called Paros. Runs in Linux and Windows, etc.

share|improve this answer

You could continue to use Fiddler anyway, as you'll definitely want to run Windows VMs to test your applications (Assuming you support Windows as a client OS for your app).

If on the other hand, your app is 100% Linux-only and doesn't support Windows as a client environment, then you can still install a VM to run Fiddler (Fiddler is a proxy and sits between the client and server hence does not depend on a specific client or server).

I can't imagine developing any web app which doesn't support Windows as a client OS, it would be commercially inadvisable.

share|improve this answer
1  
One might be making a dedicated web app for an embedded linux client. – MrFox Jul 30 '12 at 18:59

Firebug is a good option. Granted that it doesn't even get close to the functionality provided by Fiddler (i.e. breakpoints, rules, etc.) but if all you want is just to inspect http requests and responses, Firebug is decent enough.

http://getfirebug.com/network

share|improve this answer

Still using Fiddler, you can use a Windows PC as a proxy for your network:

Another good Firefox plugin is HttpFox. It shows the query string separated by key and value.

share|improve this answer
This can also be done with a Windows VM on your linux machine. It's obviously a lot of overhead, but Fiddler is a pretty amazing tool – STW Feb 23 '12 at 15:14

Burp proxy is a proprietary, java based application that can be used for analyzing http requests. It's free version has enough features to replace fiddler for an ordinary web developer.

As it works in "proxy" mode, some trickery is necessary to make it work in "sniffing" mode - see my blog entry over here. Short version of the post is to create wrapper script to run burp:

sudo iptables -t nat -I OUTPUT -p tcp --dport 80 -m owner \
  --uid-owner evgeny -j REDIRECT --to-port 8080
sudo java -jar burpsuite_v1.3.03.jar
sudo iptables -t nat -D OUTPUT -p tcp --dport 80 -m owner \
  --uid-owner evgeny -j REDIRECT --to-port 8080
share|improve this answer

mitmproxy: http://mitmproxy.org. It's a command-line http/https proxy, written in python, Works on OSX, Linux.

It's not going to cover all possible use cases for fiddler2, but my main use of fiddler2 is to capture https traffic...and then be frustrated by fiddler's UI when I try to inspect it. With this, you run it as 'mitmdump' and you'll get a log file you can inspect with whatever tools you prefer. It's not quite as slick to set up as fiddler, in that you'll need to install its CA cert manually rather than have that happen for you when you tick the box in fiddler; but that's a one-time pain.

share|improve this answer

I like Burp.

http://portswigger.net/burp/

I think it's even better then Fiddler2 (used it as you before moved to Linux). Burp has good comparer, much more convenient repeater and comparer.

share|improve this answer

Paros seems to be stagnated. zaproxy is a fork of Paros, and has been more recently updated.

share|improve this answer

If you just need to view http packets flying by then catcher has fiddler-like interface for that.

share|improve this answer

WebScarab-ng is distributed using java webstart at

http://dawes.za.net/rogan/webscarab-ng/webstart/WebScarab-ng.jnlp

So you can give it a whirl and forget about if you think it stinks since its not installed (well - if you already have the java plugin installed in your browser ;-)

share|improve this answer

Tamper data its a plugin for firefox

share|improve this answer

Although a useful answer has been I want to mention Rest Client:
http://code.google.com/p/rest-client/

It is simple and just works.

share|improve this answer
2  
This doesn't solve the usecases where you would use Fiddler2 as far as I can tell. – Epcylon Oct 20 '11 at 13:12
Well, the use case is very generic - What do you use during development. I use RestClient :) Furthermore, to intercept and watch traffic back and forth, I've been using Burp Suite: portswigger.net It's a proxy server, which you run locally, but very handy – Kristoffer Mortensen Nov 3 '11 at 12:22

If you use chrome, you can use RESTConsole on any platform https://chrome.google.com/webstore/detail/cokgbflfommojglbmbpenpphppikmonn?hl=en&hc=search&hcp=main

share|improve this answer
2  
This doesn't solve the usecases where you would use Fiddler2 as far as I can tell. – Epcylon Oct 20 '11 at 13:12

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.