-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathfuncs.go
executable file
·447 lines (351 loc) · 8.6 KB
/
funcs.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
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
package main
import (
"bufio"
"bytes"
"crypto/tls"
"encoding/csv"
"encoding/json"
"errors"
"fmt"
"github.com/PuerkitoBio/goquery"
termutil "github.com/andrew-d/go-termutil"
"io/ioutil"
"net"
"net/http"
"net/url"
"os"
"path"
"regexp"
"strings"
"sync"
"time"
)
type PhishUrls struct {
URL string `json:"url"`
}
type fetchFn func() ([]PhishUrls, error)
type Response struct {
StatusCode int64
Body []byte
URL string
ContentLength int64
ContentType string
}
func NewResponse(httpresp *http.Response, url string) Response {
var resp Response
resp.StatusCode = int64(httpresp.StatusCode)
if respbody, err := ioutil.ReadAll(httpresp.Body); err == nil {
resp.Body = respbody
}
resp.URL = url
return resp
}
/*
iterate over a list of functions to pull the latest
phishfeed urls from each source. this provides an easy
template to add more sources when they're identified
*/
func GetPhishURLsFromManyFeeds() ([]PhishUrls, error) {
fetchFns := []fetchFn{
getPhishTankURLs,
getOpenPhishURLs,
getNewLinksToday,
getPhishStatsInfo,
}
phishing_urls := make(chan PhishUrls)
out := make([]PhishUrls, 0)
var wg sync.WaitGroup
for _, fn := range fetchFns {
wg.Add(1)
fetch := fn
go func() {
defer wg.Done()
resp, err := fetch()
if err != nil {
return
}
for _, r := range resp {
phishing_urls <- r
}
}()
}
go func() {
wg.Wait()
close(phishing_urls)
}()
for w := range phishing_urls {
out = append(out, PhishUrls{URL: w.URL})
}
return out, nil
}
func getOpenPhishURLs() ([]PhishUrls, error) {
phishfeed := "https://openphish.com/feed.txt"
res, err := http.Get(phishfeed)
if err != nil {
return []PhishUrls{}, err
}
defer res.Body.Close()
sc := bufio.NewScanner(res.Body)
out := make([]PhishUrls, 0)
for sc.Scan() {
out = append(out, PhishUrls{URL: sc.Text()})
}
return out, nil
}
func getPhishTankURLs() ([]PhishUrls, error) {
phishfeed := "http://data.phishtank.com/data/online-valid.json"
apiKey := os.Getenv("PT_API_KEY")
if apiKey != "" {
phishfeed = fmt.Sprintf("http://data.phishtank.com/data/%s/online-valid.json", apiKey)
}
client := &http.Client{}
req, err := http.NewRequest("GET", phishfeed, nil)
if err != nil {
return []PhishUrls{}, err
}
req.Header.Set("User-Agent", "kitphishr/1.0")
resp, err := client.Do(req)
if err != nil {
return []PhishUrls{}, err
}
defer resp.Body.Close()
var urls []PhishUrls
buf := new(bytes.Buffer)
buf.ReadFrom(resp.Body)
respByte := buf.Bytes()
if err := json.Unmarshal(respByte, &urls); err != nil {
return []PhishUrls{}, err
}
return urls, nil
}
func getNewLinksToday() ([]PhishUrls, error) {
phishfeed := "https://raw.githubusercontent.com/mitchellkrogza/Phishing.Database/master/phishing-links-NEW-today.txt"
res, err := http.Get(phishfeed)
if err != nil {
return []PhishUrls{}, err
}
defer res.Body.Close()
sc := bufio.NewScanner(res.Body)
out := make([]PhishUrls, 0)
for sc.Scan() {
out = append(out, PhishUrls{URL: sc.Text()})
}
return out, nil
}
func getPhishStatsInfo() ([]PhishUrls, error) {
phishfeed := "https://phishstats.info/phish_score.csv"
out := make([]PhishUrls, 0)
res, err := http.Get(phishfeed)
if err != nil {
return []PhishUrls{}, err
}
defer res.Body.Close()
reader := csv.NewReader(res.Body)
reader.Comma = ','
reader.Comment = '#'
data, err := reader.ReadAll()
if err != nil {
return []PhishUrls{}, err
}
for _, row := range data {
out = append(out, PhishUrls{URL: row[2]})
}
return out, nil
}
/*
get a list of urls either from the user
piping into this program, or fetch the latest
phishing urls from phishtank
*/
func GetUserInput() ([]PhishUrls, error) {
var urls []PhishUrls
// if nothing on stdin, default getting input from phishtank
if termutil.Isatty(os.Stdin.Fd()) {
phishfeeds, err := GetPhishURLsFromManyFeeds()
if err != nil {
return urls, err
}
urls = phishfeeds
} else {
// if we do have stdin input, process that instead
sc := bufio.NewScanner(os.Stdin)
for sc.Scan() {
urls = append(urls, PhishUrls{URL: sc.Text()})
}
}
return urls, nil
}
/*
iterate through the paths of each url to generate
a target list...e.g.
http://example.com/foo/bar
http://example.com/foo/bar.zip
http://example.com/foo/
http://example.com/foo.zip
http://example.com/
*/
func GenerateTargets(urls []PhishUrls) chan string {
_urls := make(chan string, 1)
go func() {
seen := make(map[string]bool)
for _, row := range urls {
myurl := row.URL
// parse the url
u, err := url.Parse(myurl)
if err != nil {
continue
}
// split the paths from the parsed url
paths := strings.Split(u.Path, "/")
// iterate over the paths slice to traverse and send to urls channel
for i := 0; i < len(paths); i++ {
_path := paths[:len(paths)-i]
tmp_url := fmt.Sprintf(u.Scheme + "://" + u.Host + strings.Join(_path, "/"))
// if we've seen the url already, keep moving
if _, ok := seen[tmp_url]; ok {
continue
}
// add to seen
seen[tmp_url] = true
// feed the _urls channels
_urls <- tmp_url
// guess zip path and send to targets
zipurl := tmp_url + ".zip"
// ignore http://example.com/.zip and http://example.com.zip
if strings.HasSuffix(zipurl, "/.zip") || strings.Count(zipurl, "/") < 3 {
continue
}
// feed the _urls channels
_urls <- zipurl
}
}
close(_urls)
}()
return _urls
}
/*
parse the response to see if we've hit an open dir
if we have, then look for hrefs that are zips
*/
func ZipFromDir(resp Response) ([]string, error) {
var zip_href []string
// read body for hrefs
data := bytes.NewReader(resp.Body)
doc, err := goquery.NewDocumentFromReader(data)
if err != nil {
return nil, err
}
title := doc.Find("title").Text()
if strings.Contains(title, "Index of /") {
// iterate over each href and look for all zips
doc.Find("a").Each(func(i int, s *goquery.Selection) {
found_href, ok := s.Attr("href")
if ok && strings.Contains(found_href, ".zip") {
zip_href = append(zip_href, found_href)
}
})
}
// return slice of zip hrefs
return zip_href, nil
}
/*
make an http client
allow redirects
skip ssl warnings
set some timeouts
*/
func MakeClient() *http.Client {
proxyURL := http.ProxyFromEnvironment
var tr = &http.Transport{
Proxy: proxyURL,
MaxConnsPerHost: 50,
// DisableKeepAlives: true,
TLSClientConfig: &tls.Config{
InsecureSkipVerify: true,
Renegotiation: tls.RenegotiateOnceAsClient,
},
DialContext: (&net.Dialer{
Timeout: time.Second * time.Duration(to),
DualStack: true,
}).DialContext,
}
client := &http.Client{
Transport: tr,
Timeout: time.Second * time.Duration(to),
}
return client
}
/*
peform a GET against the target URL
return the response
*/
func AttemptTarget(client *http.Client, url string) (Response, error) {
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return Response{}, err
}
req.Header.Set("User-Agent", ua)
req.Header.Add("Connection", "close")
req.Close = true
httpresp, err := client.Do(req)
if err != nil {
return Response{}, err
}
defer httpresp.Body.Close()
resp := NewResponse(httpresp, url)
resp.ContentLength = httpresp.ContentLength
resp.ContentType = httpresp.Header.Get("Content-Type")
return resp, nil
}
/*
saves the resp.body to a file
uses the url as the basis for the filename
*/
func (r Response) SaveResponse() (string, error) {
/*
Save the response content to a file, using the hostname
as the basis for a filename, but replacing weird chars
and truncating longer filenames.
TODO
have option to overwrite existing files?
*/
// skip if content is empty
content := r.Body
if len(content) < 1 {
return "", errors.New("The file was empty")
}
// generate a clean filename by dropping all non alphanumeric chars
// but do allow dots, so we at least get the file ext
reg, err := regexp.Compile("[^a-zA-Z0-9.]+")
if err != nil {
return "", err
}
filename := reg.ReplaceAllString(r.URL, "")
parts := []string{defaultOutputDir}
parts = append(parts, filename)
p := path.Join(parts...)
// truncate filename if it's too long
// usually MAX is 255 chars
if len(p) >= 255 {
diff := len(p) - 255
p = p[:100] + p[100+diff:]
}
// if file exists, return with an error
// else write it
if fileExists(p) {
return "", errors.New("File already exists")
} else {
err := ioutil.WriteFile(p, content, 0640)
if err != nil {
return "", err
}
}
return filename, nil
}
func fileExists(filename string) bool {
info, err := os.Stat(filename)
if os.IsNotExist(err) {
return false
}
return !info.IsDir()
}