Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sqlmapproject
GitHub Repository: sqlmapproject/sqlmap
Path: blob/master/lib/core/defaults.py
2989 views
1
#!/usr/bin/env python
2
3
"""
4
Copyright (c) 2006-2025 sqlmap developers (https://sqlmap.org)
5
See the file 'LICENSE' for copying permission
6
"""
7
8
from lib.core.datatype import AttribDict
9
10
_defaults = {
11
"csvDel": ',',
12
"timeSec": 5,
13
"googlePage": 1,
14
"verbose": 1,
15
"delay": 0,
16
"timeout": 30,
17
"retries": 3,
18
"csrfRetries": 0,
19
"safeFreq": 0,
20
"threads": 1,
21
"level": 1,
22
"risk": 1,
23
"dumpFormat": "CSV",
24
"tablePrefix": "sqlmap",
25
"technique": "BEUSTQ",
26
"torType": "SOCKS5",
27
}
28
29
defaults = AttribDict(_defaults)
30
31