fix mitm for http1 proxy connections

Add back Hijacking support for http1.1 CONNECT requests.
This commit is contained in:
Barna Csorogi 2016-03-28 18:11:58 +02:00
parent fd53c9cb8c
commit f9a6377450
1 changed files with 14 additions and 4 deletions

View File

@ -3,6 +3,7 @@ package proxy
import (
"fmt"
"log"
"net"
"net/http"
)
@ -97,14 +98,23 @@ func (p *Proxy) handleConnect(w http.ResponseWriter, r *http.Request) error {
return fmt.Errorf("CONNECT received but mitm is not enabled")
}
w.WriteHeader(http.StatusOK)
fw := w.(FlushWriter)
fw.Flush()
conn := newMitmConn(fw, r.Body, r.RemoteAddr)
var conn net.Conn
if h, ok := w.(http.Hijacker); ok {
conn, _, _ = h.Hijack()
} else {
fw := w.(FlushWriter)
fw.Flush()
mconn := newMitmConn(fw, r.Body, r.RemoteAddr)
conn = mconn
defer func() {
<-mconn.closed
}()
}
sconn, err := p.ml.Serve(conn, r.Host)
if err != nil {
conn.Close()
return err
}
sconn.Close() // TODO: reuse this connection for https requests
<-conn.closed
return nil
}