forked from xibijj/autoSqlmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
27 lines (20 loc) · 767 Bytes
/
config.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
# -*- coding: utf-8 -*-
import os
save_path = os.getcwd() + '/tmp'
proxy_port = 8888
filter_file = ['.css', '.js', '.jpg', '.jpeg', '.gif', '.png', '.bmp', '.html', '.htm', '.swf', '.svg'] #host.endswith(item)
filter_code = r'4\d{2}' #re.match
included_host = [''] #host.endswith(item), [''] for all
excluded_host = ['google.com', '127.0.0.1', 'sinaimg.cn', 'cloudsation.com', 'qq.com'] #host.endswith(item)
sqlmap_host = 'http://127.0.0.1:8775'
#sqlmap_host = 'http://10.0.13.58:8775'
sqlmap_tasktimeout = 3*60
sqlmap_options = {}
sqlmap_options['threads'] = 3
#sqlmap_options['proxyFile'] = ''
#sqlmap_options['dbms'] = 'mysql'
#sqlmap_options['hpp'] = True
sqlmap_options['timeout'] = 15
#sqlmap_options['risk'] = 3
sqlmap_options['level'] = 3
queue = None