sqlmap/lib/core/defaults.py

29 lines
716 B
Python
Raw Normal View History

2011-06-16 15:43:07 +04:00
#!/usr/bin/env python
"""
$Id$
2011-07-08 00:10:03 +04:00
Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/)
2011-06-16 15:43:07 +04:00
See the file 'doc/COPYING' for copying permission
"""
from lib.core.datatype import advancedDict
_defaults = {
2011-06-18 15:02:48 +04:00
"timeSec": 5,
"googlePage": 1,
"cpuThrottle": 10,
"verbose": 1,
"cDel": ";",
"delay": 0,
"timeout": 30,
"retries": 3,
"saFreq": 0,
"threads": 1,
"level": 1,
"risk": 1,
"tech": "BEUST"
}
2011-06-16 15:43:07 +04:00
2011-06-16 16:12:30 +04:00
defaults = advancedDict(_defaults)