forked from projectdiscovery/wappalyzergo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fingerprints.go
287 lines (255 loc) · 6.79 KB
/
fingerprints.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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
package wappalyzer
import "regexp"
// Fingerprints contains a map of fingerprints for tech detection
type Fingerprints struct {
// Apps is organized as <name, fingerprint>
Apps map[string]*Fingerprint `json:"apps"`
}
// Fingerprint is a single piece of information about a tech validated and normalized
type Fingerprint struct {
Cookies map[string]string `json:"cookies"`
JS []string `json:"js"`
Headers map[string]string `json:"headers"`
HTML []string `json:"html"`
CSS []string `json:"css"`
Script []string `json:"scripts"`
Meta map[string][]string `json:"meta"`
Implies []string `json:"implies"`
}
// CompiledFingerprints contains a map of fingerprints for tech detection
type CompiledFingerprints struct {
// Apps is organized as <name, fingerprint>
Apps map[string]*CompiledFingerprint
}
// CompiledFingerprint contains the compiled fingerprints from the tech json
type CompiledFingerprint struct {
// implies contains technologies that are implicit with this tech
implies []string
// cookies contains fingerprints for target cookies
cookies map[string]*regexp.Regexp
// js contains fingerprints for the js file
js []*regexp.Regexp
// headers contains fingerprints for target headers
headers map[string]*regexp.Regexp
// html contains fingerprints for the target HTML
html []*regexp.Regexp
// script contains fingerprints for script tags
script []*regexp.Regexp
// meta contains fingerprints for meta tags
meta map[string][]*regexp.Regexp
}
// part is the part of the fingerprint to match
type part int
// parts that can be matched
const (
cookiesPart part = iota + 1
jsPart
headersPart
htmlPart
scriptPart
metaPart
)
// loadPatterns loads the fingerprint patterns and compiles regexes
func compileFingerprint(fingerprint *Fingerprint) *CompiledFingerprint {
compiled := &CompiledFingerprint{
implies: fingerprint.Implies,
cookies: make(map[string]*regexp.Regexp),
js: make([]*regexp.Regexp, 0, len(fingerprint.JS)),
headers: make(map[string]*regexp.Regexp),
html: make([]*regexp.Regexp, 0, len(fingerprint.HTML)),
script: make([]*regexp.Regexp, 0, len(fingerprint.Script)),
meta: make(map[string][]*regexp.Regexp),
}
for header, pattern := range fingerprint.Cookies {
fingerprint, err := regexp.Compile(pattern)
if err != nil {
continue
}
compiled.cookies[header] = fingerprint
}
for _, pattern := range fingerprint.JS {
fingerprint, err := regexp.Compile(pattern)
if err != nil {
continue
}
compiled.js = append(compiled.js, fingerprint)
}
for header, pattern := range fingerprint.Headers {
fingerprint, err := regexp.Compile(pattern)
if err != nil {
continue
}
compiled.headers[header] = fingerprint
}
for _, pattern := range fingerprint.HTML {
fingerprint, err := regexp.Compile(pattern)
if err != nil {
continue
}
compiled.html = append(compiled.html, fingerprint)
}
for _, pattern := range fingerprint.Script {
fingerprint, err := regexp.Compile(pattern)
if err != nil {
continue
}
compiled.script = append(compiled.script, fingerprint)
}
for meta, patterns := range fingerprint.Meta {
var compiledList []*regexp.Regexp
for _, pattern := range patterns {
fingerprint, err := regexp.Compile(pattern)
if err != nil {
continue
}
compiledList = append(compiledList, fingerprint)
}
compiled.meta[meta] = compiledList
}
return compiled
}
// matchString matches a string for the fingerprints
func (f *CompiledFingerprints) matchString(data string, part part) []string {
var matched bool
var technologies []string
for app, fingerprint := range f.Apps {
switch part {
case jsPart:
for _, pattern := range fingerprint.js {
if pattern.MatchString(data) {
matched = true
}
}
case scriptPart:
for _, pattern := range fingerprint.script {
if pattern.MatchString(data) {
matched = true
}
}
case htmlPart:
for _, pattern := range fingerprint.html {
if pattern.MatchString(data) {
matched = true
}
}
}
// If no match, continue with the next fingerprint
if !matched {
continue
}
// Append the technologies as well as implied ones
technologies = append(technologies, app)
if len(fingerprint.implies) > 0 {
technologies = append(technologies, fingerprint.implies...)
}
matched = false
}
return technologies
}
// matchKeyValue matches a key-value store map for the fingerprints
func (f *CompiledFingerprints) matchKeyValueString(key, value string, part part) []string {
var matched bool
var technologies []string
for app, fingerprint := range f.Apps {
switch part {
case cookiesPart:
for data, pattern := range fingerprint.cookies {
if data != key {
continue
}
if pattern.MatchString(value) {
matched = true
break
}
}
case headersPart:
for data, pattern := range fingerprint.headers {
if data != key {
continue
}
if pattern.MatchString(value) {
matched = true
break
}
}
case metaPart:
for data, patterns := range fingerprint.meta {
if data != key {
continue
}
for _, pattern := range patterns {
if pattern.MatchString(value) {
matched = true
break
}
}
}
}
// If no match, continue with the next fingerprint
if !matched {
continue
}
// Append the technologies as well as implied ones
technologies = append(technologies, app)
if len(fingerprint.implies) > 0 {
technologies = append(technologies, fingerprint.implies...)
}
matched = false
}
return technologies
}
// matchMapString matches a key-value store map for the fingerprints
func (f *CompiledFingerprints) matchMapString(keyValue map[string]string, part part) []string {
var matched bool
var technologies []string
for app, fingerprint := range f.Apps {
switch part {
case cookiesPart:
for data, pattern := range fingerprint.cookies {
value, ok := keyValue[data]
if !ok {
continue
}
if pattern.MatchString(value) {
matched = true
break
}
}
case headersPart:
for data, pattern := range fingerprint.headers {
value, ok := keyValue[data]
if !ok {
continue
}
if pattern.MatchString(value) {
matched = true
break
}
}
case metaPart:
for data, patterns := range fingerprint.meta {
value, ok := keyValue[data]
if !ok {
continue
}
for _, pattern := range patterns {
if pattern.MatchString(value) {
matched = true
break
}
}
}
}
// If no match, continue with the next fingerprint
if !matched {
continue
}
// Append the technologies as well as implied ones
technologies = append(technologies, app)
if len(fingerprint.implies) > 0 {
technologies = append(technologies, fingerprint.implies...)
}
matched = false
}
return technologies
}