sqlmap/lib/core/defaults.py

30 lines
750 B
Python
Raw Normal View History

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