Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a tool like fiddler that supports http2?

Tags:

I tend to user fiddler for its autoresponder (testing how latency or invalid responses will impact overall page loads) and only just now realized that http2 is not supported, all site default to http1/1 when loading pages along with fiddler! Any recommendations of replacement tool would be most appreciated!

like image 913
Moonπ Avatar asked Jan 07 '20 22:01

Moonπ


1 Answers

Mitmproxy

I have not tried the http/2 capability myself but based on the official documentation mitmproxy is capable of intercepting HTTP/2 traffic.

Mitmproxy is Python based. On Windows you can use the two variants mitmweb (starts a web server as UI that can be opened in a web browser) and mitmdump (command-line no GUI).

Charles Proxy

Also Charles Proxy has according to it's docs HTTP/2 support.

Charles Proxy is Java based

Burp Suite

Burp Suite (AFAIR Java based) claims to have HTTP/2 support

like image 133
Robert Avatar answered Oct 05 '22 01:10

Robert