-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwhitelist.go
More file actions
285 lines (237 loc) · 5.58 KB
/
whitelist.go
File metadata and controls
285 lines (237 loc) · 5.58 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
package main
import (
"bufio"
"bytes"
"fmt"
"io/ioutil"
"log"
"net"
"net/http"
"net/url"
"os"
"sync"
"github.com/zpencerq/goproxy"
)
type WhitelistLoader interface {
Load(adder func(entry Entry)) error
}
type MemoryWhitelistLoader struct {
entries []Entry
}
func NewMemoryWhitelistLoader(entries []Entry) *MemoryWhitelistLoader {
return &MemoryWhitelistLoader{entries}
}
func (mws *MemoryWhitelistLoader) Load(adder func(entry Entry)) error {
for _, entry := range mws.entries {
adder(entry)
}
return nil
}
type FileWhitelistLoader struct {
filename string
}
func NewFileWhitelistLoader(filename string) (*FileWhitelistLoader, error) {
fws := &FileWhitelistLoader{filename: filename}
if err := fws.Load(func(entry Entry) {}); err != nil {
return nil, err
}
return fws, nil
}
func (fws *FileWhitelistLoader) Load(adder func(entry Entry)) error {
tmp, err := os.Open(fws.filename)
if err != nil {
return err
}
defer func() {
err := tmp.Close()
if err != nil {
log.Printf("Error closing file - %v", err)
}
}()
scanner := bufio.NewScanner(tmp)
scanner.Split(bufio.ScanLines)
for scanner.Scan() {
adder(NewEntry(scanner.Text()))
log.Printf("Added: %v", scanner.Text())
}
return nil
}
type WhitelistManager struct {
sync.RWMutex
entries []Entry
cache map[string]bool
loader WhitelistLoader
Tracker Tracker
Verbose bool
}
func NewWhitelistManager(loader WhitelistLoader) (*WhitelistManager, error) {
twm := &WhitelistManager{
loader: loader,
cache: make(map[string]bool),
Tracker: NewNoopTracker(),
}
err = twm.load()
return twm, err
}
func (wm *WhitelistManager) Refresh() error {
wm.Lock()
defer wm.Unlock()
oldEntries := make([]Entry, len(wm.entries))
copy(oldEntries, wm.entries)
wm.entries = nil
wm.cache = make(map[string]bool)
err := wm.load()
if err != nil {
wm.entries = oldEntries
}
return err
}
func (wm *WhitelistManager) Add(entry Entry) {
wm.Lock()
defer wm.Unlock()
wm.add(entry)
}
func (wm *WhitelistManager) Size() int {
wm.RLock()
defer wm.RUnlock()
return len(wm.entries)
}
func (wm *WhitelistManager) Check(URL *url.URL) bool {
return wm.CheckString(URL.String())
}
func (wm *WhitelistManager) CheckHttpHost(host string) bool {
return wm.CheckString("http://" + host)
}
func (wm *WhitelistManager) CheckTlsHost(host string) bool {
return wm.CheckString("https://" + host)
}
func (wm *WhitelistManager) trackAllow(str string) error {
return wm.Tracker.Track(NewEvent(
"smykowski.allow",
map[string]interface{}{
"Value": 1,
"Type": Counter,
"Tags": map[string]string{
"Value": str,
},
}))
}
func (wm *WhitelistManager) trackBlock(str string) error {
return wm.Tracker.Track(NewEvent(
"smykowski.block",
map[string]interface{}{
"Value": 1,
"Type": Counter,
"Tags": map[string]string{
"Value": str,
},
}))
}
func (wm *WhitelistManager) CheckString(str string) bool {
wm.RLock()
defer wm.RUnlock()
if _, present := wm.cache[str]; present {
defer wm.trackAllow(str)
return true
}
for _, entry := range wm.entries {
if entry.MatchesString(str) {
wm.cache[str] = true
defer wm.trackAllow(str)
return true
}
}
defer wm.trackBlock(str)
return false
}
func BadRequestResponse(ctx *goproxy.ProxyCtx) *http.Response {
return &http.Response{
StatusCode: 400,
ProtoMajor: 1,
ProtoMinor: 1,
Request: ctx.Req,
Header: http.Header{"Cache-Control": []string{"no-cache"}},
}
}
func (wm *WhitelistManager) ReqHandler() goproxy.FuncReqHandler {
return func(r *http.Request, ctx *goproxy.ProxyCtx) (req *http.Request, resp *http.Response) {
resp = nil
defer func() {
if rec := recover(); rec != nil {
log.Printf("Recovered from panic: %v", rec)
resp = &http.Response{
StatusCode: 500,
ProtoMajor: 1,
ProtoMinor: 1,
Request: ctx.Req,
Header: http.Header{"Cache-Control": []string{"no-cache"}},
}
}
}()
ip, _, err := net.SplitHostPort(r.RemoteAddr)
if err != nil {
log.Printf("userip: %q is not IP:port", r.RemoteAddr)
resp = BadRequestResponse(ctx)
return
}
userIP := net.ParseIP(ip)
if userIP == nil {
log.Printf("userip: %q is not IP", ip)
resp = BadRequestResponse(ctx)
return
}
if r.URL == nil {
log.Printf("Bad Request: URL is nil (from %q)", userIP)
resp = BadRequestResponse(ctx)
return
}
if r.URL.Host == "" { // this is a mitm'd request
r.URL.Host = r.Host
host := r.URL.Host
if ok := wm.CheckTlsHost(host); ok {
if wm.Verbose {
log.Printf("IP %s visited - %v", ip, host)
}
return
}
}
host := r.URL.Host
hostaddr, port, err := net.SplitHostPort(host)
if err != nil { // host didn't have a port
hostaddr = host
}
if port == "443" {
if ok := wm.CheckTlsHost(hostaddr); ok {
if wm.Verbose {
log.Printf("IP %s visited - %v", ip, hostaddr)
}
return
}
}
if ok := wm.CheckHttpHost(hostaddr); ok {
if wm.Verbose {
log.Printf("IP %s visited - %v", ip, hostaddr)
}
return
}
log.Printf("IP %s was blocked visiting - %v", ip, hostaddr)
buf := bytes.Buffer{}
buf.WriteString(fmt.Sprint("<html><body>Requested destination not in whitelist</body></html>"))
resp = &http.Response{
StatusCode: 403,
ProtoMajor: 1,
ProtoMinor: 1,
Request: ctx.Req,
Header: http.Header{"Cache-Control": []string{"no-cache"}},
Body: ioutil.NopCloser(&buf),
ContentLength: int64(buf.Len()),
}
return
}
}
func (wm *WhitelistManager) load() error {
return wm.loader.Load(wm.add)
}
func (wm *WhitelistManager) add(entry Entry) {
wm.entries = append(wm.entries, entry)
}