sqlmap/lib/core/defaults.py

30 lines
559 B
Python
Raw Normal View History

2019-05-08 13:47:52 +03:00
#!/usr/bin/env python
2011-06-16 15:43:07 +04:00
"""
2023-01-03 01:24:59 +03:00
Copyright (c) 2006-2023 sqlmap developers (https://sqlmap.org/)
2017-10-11 15:50:46 +03:00
See the file 'LICENSE' for copying permission
2011-06-16 15:43:07 +04:00
"""
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 = {
"csvDel": ',',
"timeSec": 5,
"googlePage": 1,
"verbose": 1,
"delay": 0,
"timeout": 30,
"retries": 3,
"csrfRetries": 0,
2022-05-04 19:14:43 +03:00
"safeFreq": 0,
"threads": 1,
"level": 1,
"risk": 1,
"dumpFormat": "CSV",
2019-08-13 16:22:02 +03:00
"tablePrefix": "sqlmap",
2019-06-07 01:21:43 +03:00
"technique": "BEUSTQ",
"torType": "SOCKS5",
2013-01-10 18:02:28 +04:00
}
2011-06-16 15:43:07 +04:00
2011-07-08 10:02:31 +04:00
defaults = AttribDict(_defaults)