Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3995891

Browse files
committed
new file containing default settings
1 parent 6f681b4 commit 3995891

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

lib/core/defaults.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#!/usr/bin/env python
2+
3+
"""
4+
$Id$
5+
6+
Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/)
7+
See the file 'doc/COPYING' for copying permission
8+
"""
9+
10+
from lib.core.datatype import advancedDict
11+
12+
_defaults = {
13+
"timeSec": 5,
14+
"googlePage": 1,
15+
"cpuThrottle": 10,
16+
"verbose": 1,
17+
"cDel": ";",
18+
"delay": 0,
19+
"timeout": 30,
20+
"retries": 3,
21+
"saFreq": 0,
22+
"threads": 1,
23+
"level": 1,
24+
"risk": 1,
25+
"tech": "BEUST"
26+
}
27+
28+
defaults = advancedDict(_defaults)

0 commit comments

Comments
 (0)