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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
|
import aiohttp
import json
import logging
import pkg_resources
import re
import requests
import warnings
from bs4 import BeautifulSoup
from typing import Union
logger = logging.getLogger(name=__name__)
class WappalyzerError(Exception):
"""
Raised for fatal Wappalyzer errors.
"""
pass
class WebPage:
"""
Simple representation of a web page, decoupled
from any particular HTTP library's API.
"""
def __init__(self, url, html, headers):
"""
Initialize a new WebPage object.
Parameters
----------
url : str
The web page URL.
html : str
The web page content (HTML)
headers : dict
The HTTP response headers
"""
self.url = url
self.html = html
self.headers = headers
try:
list(self.headers.keys())
except AttributeError:
raise ValueError("Headers must be a dictionary-like object")
self._parse_html()
def _parse_html(self):
"""
Parse the HTML with BeautifulSoup to find <script> and <meta> tags.
"""
self.parsed_html = soup = BeautifulSoup(self.html, 'lxml')
self.scripts = [script['src'] for script in
soup.findAll('script', src=True)]
self.meta = {
meta['name'].lower():
meta['content'] for meta in soup.findAll(
'meta', attrs=dict(name=True, content=True))
}
@classmethod
def new_from_url(cls, url: str, verify: bool = True, timeout: Union[int, float] = 10):
"""
Constructs a new WebPage object for the URL,
using the `requests` module to fetch the HTML.
Parameters
----------
url : str
verify: bool
timeout: int, float
"""
response = requests.get(url, verify=verify, timeout=timeout)
return cls.new_from_response(response)
@classmethod
async def new_from_url_async(cls, url: str, verify: bool = True, timeout: Union[int, float] = 2.5,
aiohttp_client_session: aiohttp.ClientSession = None):
"""
Same as new_from_url only Async.
Constructs a new WebPage object for the URL,
using the `aiohttp` module to fetch the HTML.
Parameters
----------
url : str
verify: bool
"""
if not aiohttp_client_session:
connector = aiohttp.TCPConnector(ssl=verify)
aiohttp_client_session = aiohttp.ClientSession(connector=connector)
async with aiohttp_client_session.get(url, timeout=timeout) as response:
return await cls.new_from_response_async(response)
@classmethod
def new_from_response(cls, response):
"""
Constructs a new WebPage object for the response,
using the `BeautifulSoup` module to parse the HTML.
Parameters
----------
response : requests.Response object
"""
return cls(response.url, html=response.text, headers=response.headers)
@classmethod
async def new_from_response_async(cls, response):
"""
Constructs a new WebPage object for the response,
using the `BeautifulSoup` module to parse the HTML.
Parameters
----------
response : aiohttp.ClientResponse¶ object
"""
html = await response.text()
return cls(str(response.url), html=html, headers=response.headers)
class Wappalyzer:
"""
Python Wappalyzer driver.
"""
def __init__(self, categories, technologies):
"""
Initialize a new Wappalyzer instance.
Parameters
----------
categories : dict
Map of category ids to names, as in technologies.json.
technologies : dict
Map of technology names to technology dicts, as in technologies.json.
"""
self.categories = categories
self.technologies = technologies
self.confidence_regexp = re.compile(r"(.+)\\;confidence:(\d+)")
# TODO
# print(self.technologies)
for name, technology in list(self.technologies.items()):
# print(technology)
self._prepare_technology(technology)
@classmethod
def latest(cls, technologies_file=None):
"""
Construct a Wappalyzer instance using a technologies db path passed in via
technologies_file, or alternatively the default in data/technologies.json
"""
if technologies_file:
with open(technologies_file, 'r') as fd:
obj = json.load(fd)
else:
obj = json.loads(pkg_resources.resource_string(__name__, "technologies.json"))
return cls(categories=obj['categories'], technologies=obj['technologies'])
def _prepare_technology(self, technology):
"""
Normalize technology data, preparing it for the detection phase.
"""
# Ensure these keys' values are lists
for key in ['url', 'html', 'scriptSrc', 'implies']:
try:
value = technology[key]
except KeyError:
technology[key] = []
else:
if not isinstance(value, list):
technology[key] = [value]
# print(technology["scriptSrc"])
# Ensure these keys exist
for key in ['headers', 'meta']:
try:
value = technology[key]
except KeyError:
technology[key] = {}
# Ensure the 'meta' key is a dict
obj = technology['meta']
if not isinstance(obj, dict):
technology['meta'] = {'generator': obj}
# Ensure keys are lowercase
for key in ['headers', 'meta']:
obj = technology[key]
technology[key] = {k.lower(): v for k, v in list(obj.items())}
"""
techname: {
url:
html:
scriptSrc:
}
"""
# Prepare regular expression patterns
for key in ['url', 'html', 'scriptSrc']:
# print("before:", technology[key])
technology[key] = [self._prepare_pattern(pattern) for pattern in technology[key]]
# print("after:", technology[key])
# print(technology)
for key in ['headers', 'meta']:
obj = technology[key]
for name, pattern in list(obj.items()):
try:
obj[name] = self._prepare_pattern(obj[name])
except:
continue
def _prepare_pattern(self, pattern):
"""
Strip out key:value pairs from the pattern and compile the regular
expression.
"""
attrs = {}
pattern = pattern.split('\\;')
for index, expression in enumerate(pattern):
if index == 0:
attrs['string'] = expression
try:
attrs['regex'] = re.compile(expression, re.I)
except re.error as err:
warnings.warn(
"Caught '{error}' compiling regex: {regex}".format(
error=err, regex=pattern)
)
# regex that never matches:
# http://stackoverflow.com/a/1845097/413622
attrs['regex'] = re.compile(r'(?!x)x')
else:
attr = expression.split(':')
if len(attr) > 1:
key = attr.pop(0)
attrs[str(key)] = ':'.join(attr)
# print(attrs)
return attrs
def _has_technology(self, technology, webpage):
"""
Determine whether the web page matches the technology signature.
"""
app = technology
has_app = False
# Search the easiest things first and save the full-text search of the
# HTML for last
for pattern in app['url']:
if pattern['regex'].search(webpage.url):
# print(pattern["regex"])
self._set_detected_app(app, 'url', pattern, webpage.url)
for name, pattern in list(app['headers'].items()):
if name in webpage.headers:
content = webpage.headers[name]
if pattern['regex'].search(content):
# print(pattern['regex'])
self._set_detected_app(app, 'headers', pattern, content, name)
has_app = True
for pattern in technology['scriptSrc']:
for script in webpage.scripts:
if pattern['regex'].search(script):
self._set_detected_app(app, 'scriptSrc', pattern, script)
# print(pattern['string'], webpage.scripts)
has_app = True
for name, pattern in list(technology['meta'].items()):
if name in webpage.meta:
content = webpage.meta[name]
if pattern['regex'].search(content):
# print(pattern['string'], content)
self._set_detected_app(app, 'meta', pattern, content, name)
has_app = True
for pattern in app['html']:
if pattern['regex'].search(webpage.html):
# print(pattern['string'])
self._set_detected_app(app, 'html', pattern, webpage.html)
has_app = True
# Set total confidence
if has_app:
total = 0
for index in app['confidence']:
total += app['confidence'][index]
app['confidenceTotal'] = total
return has_app
def _set_detected_app(self, app, app_type, pattern, value, key=''):
"""
Store detected app.
"""
app['detected'] = True
# Set confidence level
if key != '':
key += ' '
if 'confidence' not in app:
app['confidence'] = {}
if 'confidence' not in pattern:
pattern['confidence'] = 100
else:
# Convert to int for easy adding later
pattern['confidence'] = int(pattern['confidence'])
app['confidence'][app_type + ' ' + key + pattern['string']] = pattern['confidence']
def _get_implied_technologies(self, detected_technologies):
"""
Get the set of technologies implied by `detected_technologies`.
"""
def __get_implied_technologies(technologies):
_implied_technologies = set()
for tech in technologies:
try:
for implie in self.technologies[tech]['implies']:
# If we have no doubts just add technology
if 'confidence' not in implie:
_implied_technologies.add(implie)
# Case when we have "confidence" (some doubts)
else:
try:
# Use more strict regexp (cause we have already checked the entry of "confidence")
# Also, better way to compile regexp one time, instead of every time
app_name, confidence = self.confidence_regexp.search(implie).groups()
if int(confidence) >= 50:
_implied_technologies.add(app_name)
except (ValueError, AttributeError):
pass
except KeyError:
pass
return _implied_technologies
implied_technologies = __get_implied_technologies(detected_technologies)
all_implied_technologies = set()
# Descend recursively until we've found all implied technologies
while not all_implied_technologies.issuperset(implied_technologies):
all_implied_technologies.update(implied_technologies)
implied_technologies = __get_implied_technologies(all_implied_technologies)
return all_implied_technologies
def get_categories(self, tech_name):
"""
Returns a list of the categories for an technology name.
"""
cat_nums = self.technologies.get(tech_name, {}).get("cats", [])
cat_names = [self.categories.get(str(cat_num), "").get("name", "")
for cat_num in cat_nums]
return cat_names
def get_confidence(self, app_name):
"""
Returns the total confidence for an app name.
"""
return [] if 'confidenceTotal' not in self.technologies[app_name] else self.technologies[app_name]['confidenceTotal']
def analyze(self, webpage):
"""
Return a list of technologylications that can be detected on the web page.
"""
detected_technologies = set()
for tech_name, technology in list(self.technologies.items()):
if self._has_technology(technology, webpage):
detected_technologies.add(tech_name)
detected_technologies |= self._get_implied_technologies(detected_technologies)
return detected_technologies
def analyze_with_categories(self, webpage):
"""
Return a list of technologies and categories that can be detected on the web page.
"""
detected_technologies = self.analyze(webpage)
categorised_technologies = {}
for tech_name in detected_technologies:
cat_names = self.get_categories(tech_name)
categorised_technologies[tech_name] = {"categories": cat_names}
return categorised_technologies
def _cmp_to_key(self, mycmp):
"""
Convert a cmp= function into a key= function
"""
# https://docs.python.org/3/howto/sorting.html
class CmpToKey:
def __init__(self, obj, *args):
self.obj = obj
def __lt__(self, other):
return mycmp(self.obj, other.obj) < 0
def __gt__(self, other):
return mycmp(self.obj, other.obj) > 0
def __eq__(self, other):
return mycmp(self.obj, other.obj) == 0
def __le__(self, other):
return mycmp(self.obj, other.obj) <= 0
def __ge__(self, other):
return mycmp(self.obj, other.obj) >= 0
def __ne__(self, other):
return mycmp(self.obj, other.obj) != 0
return CmpToKey
if __name__ == "__main__":
warnings.filterwarnings("ignore")
wapp = Wappalyzer.latest()
# 输入url
webpage = WebPage.new_from_url("https://youku.com")
# 直接输出组件
print(wapp.analyze(webpage))
# 带着类别输出组件
print(wapp.analyze_with_categories(webpage))
|