forked from jaeles-project/gospider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathothersource.go
215 lines (179 loc) · 3.97 KB
/
othersource.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
package core
import (
"bufio"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"os"
"sync"
)
func OtherSources(domain string, includeSubs bool) []string {
noSubs := true
if includeSubs {
noSubs = false
}
var urls []string
fetchFns := []fetchFn{
getWaybackURLs,
getCommonCrawlURLs,
getVirusTotalURLs,
getOtxUrls,
}
var wg sync.WaitGroup
for _, fn := range fetchFns {
wUrlChan := make(chan wurl)
wg.Add(1)
fetch := fn
go func() {
defer wg.Done()
resp, err := fetch(domain, noSubs)
if err != nil {
return
}
for _, r := range resp {
wUrlChan <- r
}
}()
go func() {
wg.Wait()
close(wUrlChan)
}()
for w := range wUrlChan {
urls = append(urls, w.url)
}
}
return Unique(urls)
}
type wurl struct {
date string
url string
}
type fetchFn func(string, bool) ([]wurl, error)
func getWaybackURLs(domain string, noSubs bool) ([]wurl, error) {
subsWildcard := "*."
if noSubs {
subsWildcard = ""
}
res, err := http.Get(
fmt.Sprintf("http://web.archive.org/cdx/search/cdx?url=%s%s/*&output=json&collapse=urlkey", subsWildcard, domain),
)
if err != nil {
return []wurl{}, err
}
raw, err := ioutil.ReadAll(res.Body)
res.Body.Close()
if err != nil {
return []wurl{}, err
}
var wrapper [][]string
err = json.Unmarshal(raw, &wrapper)
out := make([]wurl, 0, len(wrapper))
skip := true
for _, urls := range wrapper {
// The first item is always just the string "original",
// so we should skip the first item
if skip {
skip = false
continue
}
out = append(out, wurl{date: urls[1], url: urls[2]})
}
return out, nil
}
func getCommonCrawlURLs(domain string, noSubs bool) ([]wurl, error) {
subsWildcard := "*."
if noSubs {
subsWildcard = ""
}
res, err := http.Get(
fmt.Sprintf("http://index.commoncrawl.org/CC-MAIN-2019-51-index?url=%s%s/*&output=json", subsWildcard, domain),
)
if err != nil {
return []wurl{}, err
}
defer res.Body.Close()
sc := bufio.NewScanner(res.Body)
out := make([]wurl, 0)
for sc.Scan() {
wrapper := struct {
URL string `json:"url"`
Timestamp string `json:"timestamp"`
}{}
err = json.Unmarshal([]byte(sc.Text()), &wrapper)
if err != nil {
continue
}
out = append(out, wurl{date: wrapper.Timestamp, url: wrapper.URL})
}
return out, nil
}
func getVirusTotalURLs(domain string, noSubs bool) ([]wurl, error) {
out := make([]wurl, 0)
apiKey := os.Getenv("VT_API_KEY")
if apiKey == "" {
Logger.Warnf("You are not set VirusTotal API Key yet.")
return out, nil
}
fetchURL := fmt.Sprintf(
"https://www.virustotal.com/vtapi/v2/domain/report?apikey=%s&domain=%s",
apiKey,
domain,
)
resp, err := http.Get(fetchURL)
if err != nil {
return out, err
}
defer resp.Body.Close()
wrapper := struct {
URLs []struct {
URL string `json:"url"`
} `json:"detected_urls"`
}{}
dec := json.NewDecoder(resp.Body)
err = dec.Decode(&wrapper)
for _, u := range wrapper.URLs {
out = append(out, wurl{url: u.URL})
}
return out, nil
}
func getOtxUrls(domain string, noSubs bool) ([]wurl, error) {
var urls []wurl
page := 0
for {
r, err := http.Get(fmt.Sprintf("https://otx.alienvault.com/api/v1/indicators/hostname/%s/url_list?limit=50&page=%d", domain, page))
if err != nil {
return []wurl{}, err
}
bytes, err := ioutil.ReadAll(r.Body)
if err != nil {
return []wurl{}, err
}
r.Body.Close()
wrapper := struct {
HasNext bool `json:"has_next"`
ActualSize int `json:"actual_size"`
URLList []struct {
Domain string `json:"domain"`
URL string `json:"url"`
Hostname string `json:"hostname"`
Httpcode int `json:"httpcode"`
PageNum int `json:"page_num"`
FullSize int `json:"full_size"`
Paged bool `json:"paged"`
} `json:"url_list"`
}{}
err = json.Unmarshal(bytes, &wrapper)
if err != nil {
return []wurl{}, err
}
for _, url := range wrapper.URLList {
urls = append(urls, wurl{url: url.URL})
}
if !wrapper.HasNext {
break
}
page++
}
return urls, nil
}