-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
main.go
75 lines (61 loc) · 1.14 KB
/
main.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
package main
import (
"bufio"
"flag"
"net"
"net/url"
"os"
"strings"
)
func main() {
concurrency := 20
flag.IntVar(&concurrency, "c", concurrency, "Set the concurrency level")
flag.BoolVar(&domainMode, "d", false, "Print domains instead of IP addresses")
flag.BoolVar(&showCloudflare, "cf", false, "Show CloudFlare only")
flag.Parse()
jobs := make(chan string)
for i := 0; i < concurrency; i++ {
wg.Add(1)
go func() {
for host := range jobs {
addr, err := net.LookupIP(strings.TrimSpace(host))
if err != nil {
continue
}
ip := addr[0]
cf := isCloudflare(ip)
if !cf && !showCloudflare {
show(host, ip, domainMode)
} else if cf && showCloudflare {
show(host, ip, domainMode)
}
}
defer wg.Done()
}()
}
fn := flag.Arg(0)
if isStdin() {
sc = bufio.NewScanner(os.Stdin)
} else if fn != "" {
r, err := os.Open(fn)
if err != nil {
panic(err)
}
sc = bufio.NewScanner(r)
} else {
return
}
for sc.Scan() {
i := sc.Text()
u, err := url.Parse(i)
if err == nil {
if u.Host != "" {
jobs <- u.Host
} else {
jobs <- i
}
}
}
close(jobs)
wg.Wait()
}