This repository has been archived by the owner on Jul 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 140
/
utils.py
86 lines (63 loc) · 3.42 KB
/
utils.py
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
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import requests
import argparse, json
from random import randint
USAGE = './dzscan.py [options]'
HEADERS = {"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36",
"X-Forwarded-For": '%s:%s:%s:%s' % (randint(1, 255),
randint(1, 255), randint(1, 255), randint(1, 255)),
"Content-Type": "application/x-www-form-urlencoded",
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
"Connection": "keep-alive"}
def parseCmd():
"""
@cmdline parser
"""
parser = argparse.ArgumentParser(usage=USAGE, formatter_class=argparse.RawTextHelpFormatter, add_help=False)
parser.add_argument('-u', '--url', dest='url',
help='The Discuz! URL/domain to scan.')
parser.add_argument('--gevent', dest='gevent', metavar='<number of gevent>',
help='The number of gevents to use when multi-requests')
parser.add_argument('-f', '--force', dest='force', action='store_true', default=False,
help='Forces DzScan to not check if the remote site is running Discuz!')
parser.add_argument('-h', '--help', action='help',
help='Show help message and exit.')
parser.add_argument('-v', '--verbose', action='store_true',
default=False, help='Show verbose message during scaning')
parser.add_argument('--update', dest='update', action='store_true', default=False,
help='Update database to the latests version.')
parser.add_argument('--log', dest='log', action='store_true', default=False,
help='Record scan output in .log file')
args = parser.parse_args()
return args.__dict__
def banner():
"""
@dzscan banner
"""
str = """_______________________________________________________________
██████╗ ███████╗███████╗ ██████╗ █████╗ ███╗ ██╗
██╔══██╗╚══███╔╝██╔════╝██╔════╝██╔══██╗████╗ ██║
██║ ██║ ███╔╝ ███████╗██║ ███████║██╔██╗ ██║
██║ ██║ ███╔╝ ╚════██║██║ ██╔══██║██║╚██╗██║
██████╔╝███████╗███████║╚██████╗██║ ██║██║ ╚████║
╚═════╝ ╚══════╝╚══════╝ ╚═════╝╚═╝ ╚═╝╚═╝ ╚═══╝
Dizscan! Security Scanner by the DzScan Team
Version 0.2
http://dzscan.org wyc@Dzscan
_______________________________________________________________
"""
print str
def examine(content):
if '插件不存在或已关闭' not in content and len(content) > 1000 \
and 'http://error.www.xiaomi.cn' not in content:
return True
return False
def fetch_vul(addon):
ids = set()
return ids
url = 'http://dzscan.org/index.php/welcome/view?plugin=%s' % addon
json_data = json.loads(requests.get(url).content)
for vul in json_data:
ids.add(vul['id'])
return ids