-
Notifications
You must be signed in to change notification settings - Fork 113
/
fingerprint_headers.go
43 lines (36 loc) · 1.16 KB
/
fingerprint_headers.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
package wappalyzer
import (
"strings"
)
// checkHeaders checks if the headers for a target match the fingerprints
// and returns the matched IDs if any.
func (s *Wappalyze) checkHeaders(headers map[string]string) []matchPartResult {
technologies := s.fingerprints.matchMapString(headers, headersPart)
return technologies
}
// normalizeHeaders normalizes the headers for the tech discovery on headers
func (s *Wappalyze) normalizeHeaders(headers map[string][]string) map[string]string {
normalized := make(map[string]string, len(headers))
data := getHeadersMap(headers)
for header, value := range data {
normalized[strings.ToLower(header)] = strings.ToLower(value)
}
return normalized
}
// GetHeadersMap returns a map[string]string of response headers
func getHeadersMap(headersArray map[string][]string) map[string]string {
headers := make(map[string]string, len(headersArray))
builder := &strings.Builder{}
for key, value := range headersArray {
for i, v := range value {
builder.WriteString(v)
if i != len(value)-1 {
builder.WriteString(", ")
}
}
headerValue := builder.String()
headers[key] = headerValue
builder.Reset()
}
return headers
}