SIGN IN SIGN UP
sqlmapproject / sqlmap UNCLAIMED

Automatic SQL injection and database takeover tool

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