-
Notifications
You must be signed in to change notification settings - Fork 52
/
config.yaml
31 lines (26 loc) · 1.3 KB
/
config.yaml
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
version: 1.0
nmap:
path: #不指定则使用系统默认的nmap
masscan:
path: #不指定则使用系统默认的masscan
rate: 3000 #masscan扫描速度,不建议设很大
es:
address: 127.0.0.1:9200 #elasticsearch地址
scan:
ipFile: ip.txt #包含扫描的ip范围文件,文件内容格式参照nmap -iL参数所支持的格式
ipexcludeFile: ipExclude.txt #包含需排除的ip范围文件,文件内容格式参照nmap --excludefile参数所支持的格式
port: 1-65535 #扫描端口范围
mas_num: 1 #同时可运行的最大masscan数
nmap_num: 20 #同时可运行的最大nmap数
scan_interval: 30 #扫描间隔,单位:秒
userDict: user.txt #对服务进行弱口令爆破的用户名字典
passwordDict: password.txt #对服务进行弱口令爆破的密码字典
observe:
switch: on #观察者模式开关:(1)开启:on (2)关闭:off
mail: #告警邮箱设置,若观察者模式始终开启,则可忽略邮箱配置
host: xxx.xxx.com
port: 123
username: xxx@xxx.com
password: xxx
from: xxx@xxx.com
to: ["xxx@xxx.com","xxx@xxx.com"]