-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheadlysis.go
169 lines (121 loc) · 3.19 KB
/
headlysis.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
package headlysis
import (
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"strings"
"sync"
"time"
)
const (
singleUrl uint = iota
multUrl
preConError
)
const (
tag string = "[Headlysis]:"
)
var mainOutput Output // used online for mutli urls.
var mutex = new(sync.Mutex)
var counter = 1
func preCondition(opts *Options) uint {
if opts.Url == "" && opts.UrlFile != "" && opts.OutputFile != "" {
return multUrl
}
if opts.Url == "" && opts.UrlFile == "" && opts.OutputFile == "" {
return preConError
}
if opts.Url == "" && opts.UrlFile != "" && opts.OutputFile == "" {
return preConError
}
if opts.Url == "" && opts.UrlFile == "" && opts.OutputFile != "" {
return multUrl
}
if opts.Url != "" {
return singleUrl
}
return preConError
}
func makeRequest(url string) (*http.Response, error) {
client := http.DefaultClient
return client.Get(url)
}
func Headlysis(opts *Options) {
switch preCondition(opts) {
case singleUrl:
// fmt.Println(tag, "Welcome to headlysis... We are analyzing your url... please wait for some time...")
resp, err := makeRequest(opts.Url)
if err != nil {
log.Fatal(tag + " Error while making request")
}
np, p := GetMissingHeaders(resp.Header)
var out Output
tempOut := UrlAnalysisOutput{}
tempOut.Url = opts.Url
for _, sh := range p {
tempOut.PresentHeaders = append(tempOut.PresentHeaders, PresentHeader{Name: sh.Name, Value: resp.Header.Get(sh.Name)})
}
for _, h := range np {
tempOut.NotPresentHeaders = append(tempOut.NotPresentHeaders, NotPresentHeader{Name: h.Name, InfoUrl: h.GetUrl()})
}
out.Headlysis = append(out.Headlysis, tempOut)
bytes, _ := json.Marshal(out)
fmt.Println(string(bytes))
case multUrl:
urls, _ := getUrl(opts.UrlFile)
max_jobs := opts.Threads
done := make(chan bool, max_jobs)
for i, url := range urls {
if i%20 == 0 {
time.Sleep(time.Second * 2)
}
go handleUrl(url, opts.Verbose, done)
}
for status := 0; status < len(urls); status++ {
<-done
}
bytes, _ := json.Marshal(mainOutput)
ioutil.WriteFile(opts.OutputFile, bytes, 0666)
fmt.Println(string(bytes))
case preConError:
log.Fatal("Please check supplied options. Pass --help for viewing help")
}
}
func handleUrl(url string, verbose bool, done chan bool) {
if !strings.HasPrefix(url, "http") {
url = "https://" + url
}
resp, err := makeRequest(url)
if err != nil {
if verbose {
fmt.Println("[", err.Error(), "]", url)
}
}
if resp != nil {
mutex.Lock()
defer mutex.Unlock()
fmt.Println(counter, ": ", url)
counter++
np, p := GetMissingHeaders(resp.Header)
var tempOut UrlAnalysisOutput
tempOut.Url = url
for _, sh := range p {
tempOut.PresentHeaders = append(tempOut.PresentHeaders, PresentHeader{Name: sh.Name, Value: resp.Header.Get(sh.Name)})
}
for _, h := range np {
tempOut.NotPresentHeaders = append(tempOut.NotPresentHeaders, NotPresentHeader{Name: h.Name, InfoUrl: h.GetUrl()})
}
mainOutput.Headlysis = append(mainOutput.Headlysis, tempOut)
}
done <- true
}
func getUrl(file string) ([]string, error) {
bytes, err := ioutil.ReadFile(file)
if err != nil {
return nil, err
}
lines := strings.Split(string(bytes), "\n")
return lines, nil
}