Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f681b4 commit 3995891Copy full SHA for 3995891
1 file changed
lib/core/defaults.py
@@ -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