You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.5 KiB
Go
82 lines
2.5 KiB
Go
package proxy
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Addon interface {
|
|
// A client has connected to mitmproxy. Note that a connection can correspond to multiple HTTP requests.
|
|
ClientConnected(*ClientConn)
|
|
|
|
// A client connection has been closed (either by us or the client).
|
|
ClientDisconnected(*ClientConn)
|
|
|
|
// Mitmproxy has connected to a server.
|
|
ServerConnected(*ConnContext)
|
|
|
|
// A server connection has been closed (either by us or the server).
|
|
ServerDisconnected(*ConnContext)
|
|
|
|
// HTTP request headers were successfully read. At this point, the body is empty.
|
|
Requestheaders(*Flow)
|
|
|
|
// The full HTTP request has been read.
|
|
Request(*Flow)
|
|
|
|
// HTTP response headers were successfully read. At this point, the body is empty.
|
|
Responseheaders(*Flow)
|
|
|
|
// The full HTTP response has been read.
|
|
Response(*Flow)
|
|
}
|
|
|
|
// BaseAddon do nothing
|
|
type BaseAddon struct{}
|
|
|
|
func (addon *BaseAddon) ClientConnected(*ClientConn) {}
|
|
func (addon *BaseAddon) ClientDisconnected(*ClientConn) {}
|
|
func (addon *BaseAddon) ServerConnected(*ConnContext) {}
|
|
func (addon *BaseAddon) ServerDisconnected(*ConnContext) {}
|
|
|
|
func (addon *BaseAddon) Requestheaders(*Flow) {}
|
|
func (addon *BaseAddon) Request(*Flow) {}
|
|
func (addon *BaseAddon) Responseheaders(*Flow) {}
|
|
func (addon *BaseAddon) Response(*Flow) {}
|
|
|
|
// LogAddon log connection and flow
|
|
type LogAddon struct {
|
|
BaseAddon
|
|
}
|
|
|
|
func (addon *LogAddon) ClientConnected(client *ClientConn) {
|
|
log.Infof("%v client connect\n", client.Conn.RemoteAddr())
|
|
}
|
|
|
|
func (addon *LogAddon) ClientDisconnected(client *ClientConn) {
|
|
log.Infof("%v client disconnect\n", client.Conn.RemoteAddr())
|
|
}
|
|
|
|
func (addon *LogAddon) ServerConnected(connCtx *ConnContext) {
|
|
log.Infof("%v server connect %v (%v)\n", connCtx.ClientConn.Conn.RemoteAddr(), connCtx.ServerConn.Address, connCtx.ServerConn.Conn.RemoteAddr())
|
|
}
|
|
|
|
func (addon *LogAddon) ServerDisconnected(connCtx *ConnContext) {
|
|
log.Infof("%v server disconnect %v (%v)\n", connCtx.ClientConn.Conn.RemoteAddr(), connCtx.ServerConn.Address, connCtx.ServerConn.Conn.RemoteAddr())
|
|
}
|
|
|
|
func (addon *LogAddon) Requestheaders(f *Flow) {
|
|
start := time.Now()
|
|
go func() {
|
|
<-f.Done()
|
|
var StatusCode int
|
|
if f.Response != nil {
|
|
StatusCode = f.Response.StatusCode
|
|
}
|
|
var contentLen int
|
|
if f.Response != nil && f.Response.Body != nil {
|
|
contentLen = len(f.Response.Body)
|
|
}
|
|
log.Infof("%v %v %v %v %v - %v ms\n", f.ConnContext.ClientConn.Conn.RemoteAddr(), f.Request.Method, f.Request.URL.String(), StatusCode, contentLen, time.Since(start).Milliseconds())
|
|
}()
|
|
}
|