GomitmProxy是想用golang语言实现的[mitmproxy](http://www.oschina.net/p/mitmproxy),主要实现http代理,目前实现了http代理和https抓包功能。
##
安装使用
<pre class="brush:shell;toolbar: true; auto-links: false;"> git clone https://github.com/sheepbao/gomitmproxy.git cd gomitmproxy
go build</pre>
##
例子
*
http代理
<pre class="brush:shell;toolbar: true; auto-links: false;">gomitmproxy</pre>
不带任何参数,表示http代理,默认端口8080,更改端口用 -port
*
http抓包
<pre class="brush:shell;toolbar: true; auto-links: false;">gomitmproxy -m</pre>
![image](https://raw.githubusercontent.com/sheepbao/gomitmproxy/develop/goproxy.png)