-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmain.go
102 lines (87 loc) · 1.83 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
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
package main
import (
"bufio"
"crypto/tls"
"flag"
"fmt"
"log"
"net"
"net/http"
"os"
"strings"
"sync"
"time"
)
func worker(jobChan <-chan string, resChan chan<- string, wg *sync.WaitGroup, includeSANs bool) {
defer wg.Done()
var transport = &http.Transport{
Dial: (&net.Dialer{
Timeout: 5 * time.Second,
}).Dial,
TLSHandshakeTimeout: 5 * time.Second,
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
var client = &http.Client{
Timeout: time.Second * 10,
Transport: transport,
}
for job := range jobChan {
if !strings.HasPrefix(job, "https://") {
job = "https://" + job
} else if strings.HasPrefix(job, "http://") {
job = strings.Replace(job, "http://", "https://", 1)
}
req, reqErr := http.NewRequest("HEAD", job, nil)
if reqErr != nil {
continue
}
resp, clientErr := client.Do(req)
if clientErr != nil {
continue
}
if resp.TLS != nil && len(resp.TLS.PeerCertificates) > 0 {
if includeSANs {
dnsNames := resp.TLS.PeerCertificates[0].DNSNames
for _, name := range dnsNames {
resChan <- string(name)
}
}
resChan <- resp.TLS.PeerCertificates[0].Subject.CommonName
}
}
}
func main() {
workers := flag.Int("t", 32, "numbers of threads")
includeSANs := flag.Bool("s", false, "print SANs")
flag.Parse()
scanner := bufio.NewScanner(os.Stdin)
jobChan := make(chan string)
resChan := make(chan string)
done := make(chan struct{})
var wg sync.WaitGroup
wg.Add(*workers)
go func() {
wg.Wait()
close(done)
}()
for i := 0; i < *workers; i++ {
go worker(jobChan, resChan, &wg, *includeSANs)
}
go func() {
for scanner.Scan() {
jobChan <- scanner.Text()
}
if err := scanner.Err(); err != nil {
log.Println(err)
}
close(jobChan)
}()
for {
select {
case <-done:
return
case res := <-resChan:
fmt.Println(res)
}
}
}