-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconf.py
36 lines (27 loc) · 1.29 KB
/
conf.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
# encoding: utf-8
# 并行扫描的WVS线程数
_WORKER_THREAD_NUM = 2
# 结果回调邮箱
callback_mail = '[email protected]'
# wvs安装位置
wvs_location = 'E:/wvs/"Web Vulnerability Scanner 10"/'
# 扫描结果存储位置
wvs_save_dir = 'E:/wvs_result/'
# WVS扫描语句,具体可在http://www.acunetix.com/blog/docs/acunetix-wvs-cli-operation/ 查询
#wvs_scan_sentence = 'E:/wvs/"Web Vulnerability Scanner 10"/wvs_console.exe /Scan %s /Profile default /ExportXML /SaveFolder %s --RestrictToBaseFolder=true'
wvs_scan_sentence = 'E:/wvs/"Web Vulnerability Scanner 10"/wvs_console.exe /Scan %s /Profile CSRF /ExportXML /SaveFolder %s --RestrictToBaseFolder=true'
#wvs_scan_sentence = 'E:/wvs/"Web Vulnerability Scanner 10"/wvs_console.exe /Scan %s /ExportXML /SaveFolder %s --tooltimeout=20 --enableportscanning=true /Profile default /Verbose'
# WVS结果过滤
filter = {
"color_white_list": ["orange", "red"], # green,blue,orange,red四种级别
"bug_black_list": [ # 漏洞黑名单,过滤掉一些危害等级高,但没什么卵用的洞
"User credentials are sent in clear text"
]
}
# 邮箱配置:
mail_conf = {
"username": "[email protected]",
"password": "XXXX",
"smtp_server": 'smtp.qq.com',
"mail_address": '[email protected]'
}