-
Notifications
You must be signed in to change notification settings - Fork 1
/
proxy.go
116 lines (107 loc) · 2.53 KB
/
proxy.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
package main
import (
"crypto/tls"
"flag"
"fmt"
"io"
"net"
"net/http"
"os"
"os/signal"
"time"
)
func handleTunneling(w http.ResponseWriter, r *http.Request) {
dest_conn, err := net.DialTimeout("tcp", r.Host, 10*time.Second)
if err != nil {
http.Error(w, err.Error(), http.StatusServiceUnavailable)
return
}
w.WriteHeader(http.StatusOK)
hijacker, ok := w.(http.Hijacker)
if !ok {
http.Error(w, "Hijacking not supported", http.StatusInternalServerError)
return
}
client_conn, _, err := hijacker.Hijack()
if err != nil {
http.Error(w, err.Error(), http.StatusServiceUnavailable)
}
go transfer(dest_conn, client_conn)
go transfer(client_conn, dest_conn)
}
func transfer(destination io.WriteCloser, source io.ReadCloser) {
defer destination.Close()
defer source.Close()
io.Copy(destination, source)
}
func handleHTTP(w http.ResponseWriter, req *http.Request) {
fmt.Println(req.URL)
resp, err := http.DefaultTransport.RoundTrip(req)
if err != nil {
http.Error(w, err.Error(), http.StatusServiceUnavailable)
return
}
defer resp.Body.Close()
copyHeader(w.Header(), resp.Header)
w.WriteHeader(resp.StatusCode)
io.Copy(w, resp.Body)
}
func copyHeader(dst, src http.Header) {
for k, vv := range src {
for _, v := range vv {
dst.Add(k, v)
}
}
}
func main() {
var uninstall bool
flag.BoolVar(&uninstall, "uninstall", false, "uninstall the given certificate")
//port := flag.Int("port", 8888, "the port on which the HTTP(S) proxy will run")
flag.Parse()
// verify existence of CACert for HTTPS MITM self-signing
if err := ensureCACert(uninstall); err != nil {
fmt.Printf("error handling certificates : %v\n", err)
return
}
if uninstall {
return
}
enableProxy("localhost:8888")
//disable proxy on ^C
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
go func() {
<-c
disableProxy()
os.Exit(0)
}()
//disable proxy on end or panic
defer func() {
if r := recover(); r != nil {
disableProxy()
}
fmt.Println("Cleaning up proxy on end")
disableProxy()
}()
var pemPath string
var keyPath string
var proto string = "http"
server := &http.Server{
Addr: ":8888",
Handler: http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.Method == http.MethodConnect {
handleTunneling(w, r)
} else {
handleHTTP(w, r)
}
}),
// Disable HTTP/2.
//todo: Why did I add this years ago?
TLSNextProto: make(map[string]func(*http.Server, *tls.Conn, http.Handler)),
}
if proto == "http" {
server.ListenAndServe()
} else {
server.ListenAndServeTLS(pemPath, keyPath)
}
}