Mitmproxy – Open-source console-based proxy
11–20 of 41 posts
Re: Mitmproxy – Open-source console-based proxy
#12Re: Mitmproxy – Open-source console-based proxy
#13This tool has really helped me on several occasions with a wide variety of issues up and down the stack. Even with debugging web apps because while the chrome Dev tools are awesome they (at least at the time as far as I know) didn't expose the initial headers/network exchange for certain types of auth like NTLM.
SSLKEYLOGFILE=$HOME/ssl_crt_dbg google-chrome --user-data-dir=TEMPUSER
Then you configure wireshark SSL decoding with with pre master key file as "ssl_crt_dbg", it fails too often for me.Now days I use remote-debugging and Python a lot:
$ google-chrome --remote-debugging-port=9222
import PyChromeDevTools
chrome = PyChromeDevTools.ChromeInterface(host="localhost", port=9222)
chrome.Network.enable()
while True:
print chrome.wait_message(timeout=0.1)
But the simplicity of a Mitmproxy is almost as great as wireshark.Re: Mitmproxy – Open-source console-based proxy
#14Re: Mitmproxy – Open-source console-based proxy
#15Re: Mitmproxy – Open-source console-based proxy
#16This tool has really helped me on several occasions with a wide variety of issues up and down the stack. Even with debugging web apps because while the chrome Dev tools are awesome they (at least at the time as far as I know) didn't expose the initial headers/network exchange for certain types of auth like NTLM.
We've shifted to using https://github.com/joeferner/node-http-mitm-proxy as a part of WrapAPI Proxy (https://wrapapi.com/proxy), which is a zero-install proxy in the style of mitmproxy and Charles.
The node proxy is really great in that it's fully extensible, allows you to generate certificates, and filter/save the kinds of traffic you get to simple JSON structures. We've found it to be a huge boon in development, but it's clearly inspired by mitmproxy (which predates node), so credit where it's due.
Re: Mitmproxy – Open-source console-based proxy
#17one of the best tools for reverse engineering mobile apps. I'm just having problems when certificate pinning is enabled. Does anyone have an idea (or even a solution) how to deal with that?
Re: Mitmproxy – Open-source console-based proxy
#18one of the best tools for reverse engineering mobile apps. I'm just having problems when certificate pinning is enabled. Does anyone have an idea (or even a solution) how to deal with that?
Re: Mitmproxy – Open-source console-based proxy
#19one of the best tools for reverse engineering mobile apps. I'm just having problems when certificate pinning is enabled. Does anyone have an idea (or even a solution) how to deal with that?
For iOS, I know there are jailbreak cydia tweaks that try to disable certificate pinning, but I have no experience with this.
Re: Mitmproxy – Open-source console-based proxy
#20one of the best tools for reverse engineering mobile apps. I'm just having problems when certificate pinning is enabled. Does anyone have an idea (or even a solution) how to deal with that?