-
Notifications
You must be signed in to change notification settings - Fork 6
/
scopein.go
266 lines (195 loc) · 4.57 KB
/
scopein.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
package main
import (
"fmt"
"strings"
"bufio"
"flag"
"net/url"
"regexp"
"io/ioutil"
"os"
"log"
"sync"
)
func init() {
flag.Usage = func() {
help := []string{
"",
"[buffer] | scopein [flags]",
"+====================================================================================+",
"-s <scope> In Scope targets separated by '|'",
"-b <outscope> Out of scope targets separated by '|'",
"-f <file> File with In Scope urls",
"-bf <file> File with Out of Scope urls",
"-h, Show This Help Message",
"",
"+====================================================================================+",
"",
}
fmt.Println(`
A
/!\
/ ! \
/\ )___(
( '.____(_)_________
| __..--""
( _.-|
\ ,' | |
\ / | |
\( | |
' | |
| |
`)
fmt.Fprintf(os.Stderr, strings.Join(help, "\n"))
}
}
func main(){
log.SetOutput(ioutil.Discard)
var single string
flag.StringVar(&single, "s", "", "")
var scopeFile string
flag.StringVar(&scopeFile,"f", "","")
var outscope string
flag.StringVar(&outscope, "b", "", "")
var outscopeFile string
flag.StringVar(&outscopeFile, "bf", "", "")
flag.Parse()
visto := make(map[string]bool)
std := bufio.NewScanner(os.Stdin)
targets := make(chan string)
var wg sync.WaitGroup
for i:=0;i<50;i++ {
wg.Add(1)
go func() {
defer wg.Done()
for v := range targets{
if !strings.HasPrefix(v, "http"){
v = "https://" + v
}
u, err := url.Parse(v)
if err != nil{
continue
}
scopeurl := scopein(u, single, scopeFile, outscope, outscopeFile)
if scopeurl != "not"{
fmt.Println(scopeurl)
}
}
}()
}
for std.Scan() {
var line string = std.Text()
if visto[line] != true{
targets <- line
}
visto[line] = true
}
close(targets)
wg.Wait()
}
func scopein(v *url.URL, single string, scopeFile string, outscope string, outscopeFile string) string{
//fmt.Println(v.Host)
host := v.Host
if strings.Contains(host, ":"){
host = strings.Split(host, ":")[0]
}
// SPLIT REGEX WITH |, -s "xx|xxx|xxx"
if single != ""{
if strings.HasPrefix(single, "*."){
single = strings.Replace(single, "*.", "", 1)
}
re, err := regexp.Compile(`.*\.?` + single + `\/?.*`)
if err != nil{
log.Println("Failed to compile regex!")
}
for _, value := range re.FindAllString(host, -1){
log.Println(value)
if v.String() == "https:"{
return "not"
}
return v.String()
}
//(http:\/\/|https:\/\/)?(\.*\.[a-z0-9.-])?(www.)?(scope.com)\/?.*
}else if scopeFile != ""{
f, err := os.ReadFile(scopeFile)
if err != nil{
log.Println("Error opening file!")
}
arr := string(f)
var array string
str := strings.Split(arr, "\n")
for _, p := range str{
if !strings.HasPrefix(p, " "){
array = array + p + "|"
}
}
textstr := string(array[0:len(array)-2])
if strings.HasPrefix(textstr, "*."){
textstr = strings.Replace(textstr, "*.", "", -1)
}
re, err := regexp.Compile(`.*\.?` + textstr + `\/?.*`)
if err != nil{
log.Println("Failed to compile regex!")
}
for _, value := range re.FindAllString(host, -1){
log.Println(value)
if v.String() == "https:"{
return "not"
}
return v.String()
}
//return "not"
}else if outscope != ""{
if strings.HasPrefix(outscope, "*."){
outscope = strings.Replace(outscope, "*.", "", 1)
}
//fmt.Println(single)
re, err := regexp.Compile(`.*\.?` + outscope + `\/?.*`)
if err != nil{
log.Println("Failed to compile regex!")
}
search := re.FindAllString(host, -1)
if (search == nil) == true{
if v.String() == "https:"{
return "not"
}
return v.String()
}else{
return "not"
}
}else if outscopeFile != ""{
f, err := os.ReadFile(outscopeFile)
if err != nil{
log.Println("Error opening file!")
}
arr := string(f)
var array string
str := strings.Split(arr, "\n")
for _, p := range str{
if !strings.HasPrefix(p, " "){
array = array + p + "|"
}
}
outs := string(array[0:len(array)-2])
if strings.HasPrefix(outs, "*."){
outs = strings.Replace(outs, "*.", "", -1)
}
re, err := regexp.Compile(`.*\.?` + outs + `\/?.*`)
if err != nil{
log.Println("Failed to compile regex!")
}
search := re.FindAllString(host, -1)
if (search == nil) == true{
if v.String() == "https:"{
return "not"
}
return v.String()
}else{
return "not"
}
}else{
// read ~/.config/scopein/scope.conf
return "not"
}
return "not"
}