Add MITM proxy for HTTPS requests

This commit is contained in:
David Stotijn
2019-11-24 00:14:49 +01:00
parent c48562e873
commit ef4f829572
6 changed files with 321 additions and 37 deletions

47
net.go Normal file
View File

@ -0,0 +1,47 @@
package main
import (
"errors"
"net"
)
var ErrAlreadyAccepted = errors.New("listener already accepted")
// OnceListener implements net.Listener.
//
// Accepts a connection once and returns an error on subsequent
// attempts.
type OnceAcceptListener struct {
c net.Conn
}
func (l *OnceAcceptListener) Accept() (net.Conn, error) {
if l.c == nil {
return nil, ErrAlreadyAccepted
}
c := l.c
l.c = nil
return c, nil
}
func (l *OnceAcceptListener) Close() error {
return nil
}
func (l *OnceAcceptListener) Addr() net.Addr {
return l.c.LocalAddr()
}
// ConnNotify embeds net.Conn and adds a channel field for notifying
// that the connection was closed.
type ConnNotify struct {
net.Conn
closed chan struct{}
}
func (c *ConnNotify) Close() {
c.Conn.Close()
c.closed <- struct{}{}
}