forked from evilsocket/xray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
http_grabber.go
201 lines (173 loc) · 5.29 KB
/
http_grabber.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
/*
* Copyleft 2017, Simone Margaritelli <evilsocket at protonmail dot com>
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of ARM Inject nor the names of its contributors may be used
* to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
package xray
import (
"net/http"
"crypto/tls"
"crypto/x509"
"crypto/x509/pkix"
"fmt"
"net"
"io/ioutil"
"strings"
"golang.org/x/net/html"
)
type Dialer func(network, addr string) (net.Conn, error)
const DisallowLimit = 4
func isTitleElement(n *html.Node) bool {
return n.Type == html.ElementNode && n.Data == "title"
}
func traverseHTML(n *html.Node) (string, bool) {
if n != nil && isTitleElement(n) && n.FirstChild != nil {
return n.FirstChild.Data, true
}
for c := n.FirstChild; c != nil; c = c.NextSibling {
result, ok := traverseHTML(c)
if ok {
return result, ok
}
}
return "", false
}
type HTTPGrabber struct {
}
func (g *HTTPGrabber) Name() string {
return "http"
}
func makeDialer( certs *[]*x509.Certificate, skipCAVerification bool) Dialer {
return func(network, addr string) (net.Conn, error) {
c, err := tls.Dial(network, addr, &tls.Config{InsecureSkipVerify: skipCAVerification})
if err != nil {
return c, err
}
connstate := c.ConnectionState()
*certs = connstate.PeerCertificates
return c, nil
}
}
func first(a []string) string {
if len(a) > 0 {
return a[0]
}
return ""
}
func Subject2String( s pkix.Name ) string {
return fmt.Sprintf( "C=%s/O=%s/OU=%s/L=%s/P=%s/CN=%s",
first(s.Country),
first(s.Organization),
first(s.OrganizationalUnit),
first(s.Locality),
first(s.Province),
s.CommonName )
}
func collectCertificates( certs []*x509.Certificate, t *Target ) {
if certs != nil && len(certs) > 0 {
for i, cert := range certs {
t.Banners[ fmt.Sprintf("https:chain[%d]",i) ] = Subject2String( cert.Subject )
}
}
}
func collectHeaders( resp *http.Response, t *Target ) {
for name, value := range resp.Header {
if name == "Server" {
t.Banners["http:server"] = strings.Trim( value[0], "\r\n\t " )
} else if name == "X-Powered-By" {
t.Banners["http:poweredby"] = strings.Trim( value[0], "\r\n\t " )
} else if name == "Location" {
t.Banners["http:redirect"] = strings.Trim( value[0], "\r\n\t" )
}
}
}
func collectHTML( resp *http.Response, t *Target ) {
if doc, err := html.Parse(resp.Body); err == nil {
if title, found := traverseHTML(doc); found {
t.Banners["html:title"] = strings.Trim( title, "\r\n\t " )
}
}
}
func collectRobots( client *http.Client, url string, t* Target ) {
rob, err := client.Get( url + "robots.txt" )
if err == nil {
defer rob.Body.Close()
if rob.StatusCode == 200 {
raw,err := ioutil.ReadAll(rob.Body)
if err == nil {
data := string(raw)
bann := make([]string,0)
for _, line := range strings.Split( data, "\n" ) {
if strings.Contains( line, "Disallow:" ) {
tok := strings.Trim( strings.Split( line, "Disallow:" )[1], "\r\n\t " )
if tok != "" {
bann = append( bann, tok )
}
}
if len(bann) >= DisallowLimit {
bann = append( bann, "..." )
break
}
}
if len(bann) > 0 {
t.Banners["http:disallow"] = strings.Join( bann, ", " )
}
}
}
}
}
func (g *HTTPGrabber) Grab( port int, t *Target ) {
if port != 80 && port != 8080 && port != 443 && port != 8433 {
return
}
base := ""
url := ""
if len(t.Domains) > 0 {
base = t.Domains[0]
} else {
base = t.Address
}
if port == 80 {
url = "http://" + base + "/"
} else if port == 443 || port == 8433 {
url = "https://" + base + "/"
}
certificates := make([]*x509.Certificate,0)
client := &http.Client{
Transport: &http.Transport{
DialTLS: makeDialer( &certificates, true ),
},
CheckRedirect: func(req *http.Request, via []*http.Request) error {
return http.ErrUseLastResponse
},
}
resp, err := client.Get(url)
if err == nil {
defer resp.Body.Close()
collectCertificates( certificates, t )
collectHeaders( resp, t )
collectHTML( resp, t )
}
collectRobots( client, url, t )
}