sqlmap/lib/core/defaults.py

29 lines
586 B
Python
Raw Normal View History

#!/usr/bin/env python
2011-06-16 15:43:07 +04:00
"""
2013-01-18 18:07:51 +04:00
Copyright (c) 2006-2013 sqlmap developers (http://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
2013-01-10 16:18:44 +04:00
_defaults = {
2013-01-10 18:02:28 +04:00
"csvDel": ",",
"timeSec": 5,
"googlePage": 1,
"cpuThrottle": 5,
"verbose": 1,
"delay": 0,
"timeout": 30,
"retries": 3,
"saFreq": 0,
"threads": 1,
"level": 1,
"risk": 1,
"dumpFormat": "CSV",
"tech": "BEUSTQ",
"torType": "HTTP",
}
2011-06-16 15:43:07 +04:00
2011-07-08 10:02:31 +04:00
defaults = AttribDict(_defaults)