2008-10-15 19:38:22 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2008-10-15 19:56:32 +04:00
|
|
|
$Id$
|
2008-10-15 19:38:22 +04:00
|
|
|
|
|
|
|
This file is part of the sqlmap project, http://sqlmap.sourceforge.net.
|
|
|
|
|
2010-03-03 18:26:27 +03:00
|
|
|
Copyright (c) 2007-2010 Bernardo Damele A. G. <bernardo.damele@gmail.com>
|
2009-04-22 15:48:07 +04:00
|
|
|
Copyright (c) 2006 Daniele Bellucci <daniele.bellucci@gmail.com>
|
2008-10-15 19:38:22 +04:00
|
|
|
|
|
|
|
sqlmap is free software; you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU General Public License as published by the Free
|
|
|
|
Software Foundation version 2 of the License.
|
|
|
|
|
|
|
|
sqlmap is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with sqlmap; if not, write to the Free Software Foundation, Inc., 51
|
|
|
|
Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
"""
|
|
|
|
|
|
|
|
optDict = {
|
2008-12-04 20:40:03 +03:00
|
|
|
# Family: { "parameter_name": "parameter_datatype" },
|
|
|
|
"Target": {
|
2008-10-15 19:38:22 +04:00
|
|
|
"url": "string",
|
2008-11-20 20:56:09 +03:00
|
|
|
"list": "string",
|
2010-01-14 23:42:45 +03:00
|
|
|
"requestFile": "string",
|
2010-01-12 16:11:26 +03:00
|
|
|
"googleDork": "string",
|
2010-01-14 23:42:45 +03:00
|
|
|
"configFile": "string"
|
2008-12-04 20:40:03 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
"Request": {
|
2008-10-15 19:38:22 +04:00
|
|
|
"method": "string",
|
|
|
|
"data": "string",
|
|
|
|
"cookie": "string",
|
2010-01-14 23:42:45 +03:00
|
|
|
"cookieUrlencode": "boolean",
|
2010-01-02 05:02:12 +03:00
|
|
|
"dropSetCookie": "boolean",
|
2008-10-15 19:38:22 +04:00
|
|
|
"referer": "string",
|
|
|
|
"agent": "string",
|
|
|
|
"userAgentsFile": "string",
|
2008-12-09 00:24:24 +03:00
|
|
|
"headers": "string",
|
2008-10-15 19:38:22 +04:00
|
|
|
"aType": "string",
|
|
|
|
"aCred": "string",
|
2010-01-07 15:59:09 +03:00
|
|
|
"aCert": "string",
|
2008-10-15 19:38:22 +04:00
|
|
|
"proxy": "string",
|
2010-03-03 19:19:17 +03:00
|
|
|
"ignoreProxy": "boolean",
|
2008-10-15 19:38:22 +04:00
|
|
|
"threads": "integer",
|
2008-11-09 19:57:47 +03:00
|
|
|
"delay": "float",
|
2010-01-09 23:44:50 +03:00
|
|
|
"timeout": "float",
|
|
|
|
"retries": "integer",
|
2010-03-03 19:19:17 +03:00
|
|
|
"scope": "string"
|
2008-10-15 19:38:22 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
"Injection": {
|
2008-12-04 20:40:03 +03:00
|
|
|
"testParameter": "string",
|
2008-10-15 19:38:22 +04:00
|
|
|
"dbms": "string",
|
2009-04-22 15:48:07 +04:00
|
|
|
"os": "string",
|
2008-12-09 00:24:24 +03:00
|
|
|
"prefix": "string",
|
|
|
|
"postfix": "string",
|
2008-12-05 18:34:13 +03:00
|
|
|
"string": "string",
|
|
|
|
"regexp": "string",
|
|
|
|
"eString": "string",
|
2010-01-14 21:05:03 +03:00
|
|
|
"eRegexp": "string",
|
2008-10-15 19:38:22 +04:00
|
|
|
},
|
|
|
|
|
2008-12-04 20:40:03 +03:00
|
|
|
"Techniques": {
|
2008-12-17 00:30:24 +03:00
|
|
|
"stackedTest": "boolean",
|
2008-11-12 03:36:50 +03:00
|
|
|
"timeTest": "boolean",
|
2010-01-10 00:08:47 +03:00
|
|
|
"timeSec": "integer",
|
2008-11-12 03:36:50 +03:00
|
|
|
"unionTest": "boolean",
|
2008-12-22 00:39:53 +03:00
|
|
|
"uTech": "string",
|
2009-09-26 03:03:45 +04:00
|
|
|
"unionUse": "boolean"
|
2008-12-04 20:40:03 +03:00
|
|
|
},
|
2008-11-12 03:36:50 +03:00
|
|
|
|
2008-10-15 19:38:22 +04:00
|
|
|
"Fingerprint": {
|
2009-09-26 03:03:45 +04:00
|
|
|
"extensiveFp": "boolean"
|
2008-10-15 19:38:22 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
"Enumeration": {
|
|
|
|
"getBanner": "boolean",
|
|
|
|
"getCurrentUser": "boolean",
|
|
|
|
"getCurrentDb": "boolean",
|
2008-12-18 23:41:11 +03:00
|
|
|
"isDba": "boolean",
|
2008-10-15 19:38:22 +04:00
|
|
|
"getUsers": "boolean",
|
|
|
|
"getPasswordHashes": "boolean",
|
|
|
|
"getPrivileges": "boolean",
|
|
|
|
"getDbs": "boolean",
|
|
|
|
"getTables": "boolean",
|
|
|
|
"getColumns": "boolean",
|
|
|
|
"dumpTable": "boolean",
|
|
|
|
"dumpAll": "boolean",
|
|
|
|
"user": "string",
|
|
|
|
"db": "string",
|
|
|
|
"tbl": "string",
|
|
|
|
"col": "string",
|
|
|
|
"excludeSysDbs": "boolean",
|
|
|
|
"limitStart": "integer",
|
|
|
|
"limitStop": "integer",
|
2009-09-26 03:03:45 +04:00
|
|
|
"firstChar": "integer",
|
|
|
|
"lastChar": "integer",
|
2008-10-15 19:38:22 +04:00
|
|
|
"query": "string",
|
2009-09-26 03:03:45 +04:00
|
|
|
"sqlShell": "boolean"
|
|
|
|
},
|
|
|
|
|
|
|
|
"User-defined function": {
|
|
|
|
"udfInject": "boolean",
|
|
|
|
"shLib": "string"
|
2008-10-15 19:38:22 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
"File system": {
|
|
|
|
"rFile": "string",
|
|
|
|
"wFile": "string",
|
2009-09-26 03:03:45 +04:00
|
|
|
"dFile": "string"
|
2008-10-15 19:38:22 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
"Takeover": {
|
2009-04-22 15:48:07 +04:00
|
|
|
"osCmd": "string",
|
2008-10-15 19:38:22 +04:00
|
|
|
"osShell": "boolean",
|
2009-04-22 15:48:07 +04:00
|
|
|
"osPwn": "boolean",
|
|
|
|
"osSmb": "boolean",
|
|
|
|
"osBof": "boolean",
|
|
|
|
"privEsc": "boolean",
|
|
|
|
"msfPath": "string",
|
2009-09-26 03:03:45 +04:00
|
|
|
"tmpPath": "string"
|
|
|
|
},
|
|
|
|
|
|
|
|
"Windows": {
|
|
|
|
"regRead": "boolean",
|
|
|
|
"regAdd": "boolean",
|
|
|
|
"regDel": "boolean",
|
|
|
|
"regKey": "string",
|
|
|
|
"regVal": "string",
|
|
|
|
"regData": "string",
|
|
|
|
"regType": "string"
|
2008-10-15 19:38:22 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
"Miscellaneous": {
|
2010-01-02 05:02:12 +03:00
|
|
|
"sessionFile": "string",
|
2010-03-04 16:01:18 +03:00
|
|
|
"flushSession": "boolean",
|
2008-10-15 19:38:22 +04:00
|
|
|
"eta": "boolean",
|
2010-01-02 05:02:12 +03:00
|
|
|
"googlePage": "integer",
|
2008-10-15 19:38:22 +04:00
|
|
|
"updateAll": "boolean",
|
|
|
|
"batch": "boolean",
|
2010-01-02 05:02:12 +03:00
|
|
|
"cleanup": "boolean",
|
|
|
|
"verbose": "integer"
|
2008-10-15 19:38:22 +04:00
|
|
|
},
|
|
|
|
}
|