sqlmap/lib/core/optiondict.py

227 lines
12 KiB
Python
Raw Normal View History

#!/usr/bin/env python
2008-10-15 19:38:22 +04:00
"""
2013-01-18 18:07:51 +04:00
Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
2010-10-15 03:18:29 +04:00
See the file 'doc/COPYING' for copying permission
2008-10-15 19:38:22 +04:00
"""
optDict = {
2010-05-27 20:45:09 +04:00
# Format:
# Family: { "parameter name": "parameter datatype" },
# Or:
# Family: { "parameter name": ("parameter datatype", "category name used for common outputs feature") },
"Target": {
"direct": "string",
2008-10-15 19:38:22 +04:00
"url": "string",
"logFile": "string",
2011-06-08 20:08:20 +04:00
"bulkFile": "string",
2010-01-14 23:42:45 +03:00
"requestFile": "string",
2012-11-08 22:16:37 +04:00
"sessionFile": "string",
2010-01-12 16:11:26 +03:00
"googleDork": "string",
2013-01-10 18:02:28 +04:00
"configFile": "string",
},
"Request": {
2008-10-15 19:38:22 +04:00
"data": "string",
"pDel": "string",
2008-10-15 19:38:22 +04:00
"cookie": "string",
2012-07-24 17:34:50 +04:00
"loadCookies": "string",
"dropSetCookie": "boolean",
2008-10-15 19:38:22 +04:00
"agent": "string",
2011-02-02 17:51:12 +03:00
"randomAgent": "boolean",
"host": "string",
"referer": "string",
"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",
"pCred": "string",
2010-03-03 19:19:17 +03:00
"ignoreProxy": "boolean",
2013-04-30 16:11:56 +04:00
"tor": "boolean",
"torPort": "integer",
"torType": "string",
"checkTor": "boolean",
"delay": "float",
"timeout": "float",
"retries": "integer",
2013-04-02 19:34:56 +04:00
"rParam": "string",
"safUrl": "string",
2011-11-21 20:41:02 +04:00
"saFreq": "integer",
"skipUrlEncode": "boolean",
2013-04-30 15:56:38 +04:00
"forceSSL": "boolean",
2013-04-30 16:32:11 +04:00
"hpp": "boolean",
2013-04-30 15:59:44 +04:00
"evalCode": "string",
2008-10-15 19:38:22 +04:00
},
"Optimization": {
"optimize": "boolean",
"predictOutput": "boolean",
"keepAlive": "boolean",
"nullConnection": "boolean",
2013-01-10 18:02:28 +04:00
"threads": "integer",
},
2008-10-15 19:38:22 +04:00
"Injection": {
"testParameter": "string",
2013-04-04 16:21:57 +04:00
"skip": "string",
2008-10-15 19:38:22 +04:00
"dbms": "string",
2013-04-30 16:05:50 +04:00
"dbmsCred": "string",
"os": "string",
"invalidBignum": "boolean",
2012-07-16 13:07:47 +04:00
"invalidLogical": "boolean",
"noCast": "boolean",
2013-01-18 18:40:37 +04:00
"noEscape": "boolean",
"prefix": "string",
"suffix": "string",
2013-01-10 18:02:28 +04:00
"tamper": "string",
},
"Detection": {
"level": "integer",
"risk": "integer",
"string": "string",
"notString": "string",
"regexp": "string",
2012-01-05 14:24:27 +04:00
"code": "integer",
"textOnly": "boolean",
2013-01-10 18:02:28 +04:00
"titles": "boolean",
2008-10-15 19:38:22 +04:00
},
"Techniques": {
2011-04-07 14:00:47 +04:00
"tech": "string",
2010-01-10 00:08:47 +03:00
"timeSec": "integer",
"uCols": "string",
2012-05-27 22:41:06 +04:00
"uChar": "string",
2013-03-21 14:28:44 +04:00
"uFrom": "string",
2012-07-26 16:07:05 +04:00
"dnsName": "string",
2013-01-10 18:02:28 +04:00
"secondOrder": "string",
},
2008-10-15 19:38:22 +04:00
"Fingerprint": {
2013-01-10 18:02:28 +04:00
"extensiveFp": "boolean",
2008-10-15 19:38:22 +04:00
},
"Enumeration": {
2012-10-05 12:24:09 +04:00
"getAll": "boolean",
2010-05-27 20:45:09 +04:00
"getBanner": ("boolean", "Banners"),
"getCurrentUser": ("boolean", "Users"),
"getCurrentDb": ("boolean", "Databases"),
"getHostname": "boolean",
"isDba": "boolean",
2010-05-27 20:45:09 +04:00
"getUsers": ("boolean", "Users"),
2010-05-30 18:53:13 +04:00
"getPasswordHashes": ("boolean", "Passwords"),
2010-05-27 20:45:09 +04:00
"getPrivileges": ("boolean", "Privileges"),
"getRoles": ("boolean", "Roles"),
"getDbs": ("boolean", "Databases"),
"getTables": ("boolean", "Tables"),
"getColumns": ("boolean", "Columns"),
"getSchema": "boolean",
"getCount": "boolean",
2008-10-15 19:38:22 +04:00
"dumpTable": "boolean",
"dumpAll": "boolean",
"search": "boolean",
2008-10-15 19:38:22 +04:00
"db": "string",
"tbl": "string",
"col": "string",
"user": "string",
2008-10-15 19:38:22 +04:00
"excludeSysDbs": "boolean",
"limitStart": "integer",
"limitStop": "integer",
"firstChar": "integer",
"lastChar": "integer",
2008-10-15 19:38:22 +04:00
"query": "string",
2012-07-10 03:27:08 +04:00
"sqlShell": "boolean",
2013-01-10 18:02:28 +04:00
"sqlFile": "string",
2010-11-09 19:59:36 +03:00
},
"Brute": {
"commonTables": "boolean",
2013-01-10 18:02:28 +04:00
"commonColumns": "boolean",
},
"User-defined function": {
"udfInject": "boolean",
2013-01-10 18:02:28 +04:00
"shLib": "string",
2008-10-15 19:38:22 +04:00
},
"File system": {
"rFile": "string",
"wFile": "string",
2013-01-10 18:02:28 +04:00
"dFile": "string",
2008-10-15 19:38:22 +04:00
},
"Takeover": {
"osCmd": "string",
2008-10-15 19:38:22 +04:00
"osShell": "boolean",
"osPwn": "boolean",
"osSmb": "boolean",
"osBof": "boolean",
"privEsc": "boolean",
"msfPath": "string",
2013-01-10 18:02:28 +04:00
"tmpPath": "string",
},
"Windows": {
"regRead": "boolean",
"regAdd": "boolean",
"regDel": "boolean",
"regKey": "string",
"regVal": "string",
"regData": "string",
2013-01-10 18:02:28 +04:00
"regType": "string",
2008-10-15 19:38:22 +04:00
},
2010-11-16 17:11:32 +03:00
"General": {
#"xmlFile": "string",
"trafficFile": "string",
"batch": "boolean",
"charset": "string",
"crawlDepth": "integer",
2011-11-30 21:39:41 +04:00
"csvDel": "string",
2012-11-28 13:58:18 +04:00
"dumpFormat": "string",
"eta": "boolean",
2010-11-16 17:11:32 +03:00
"flushSession": "boolean",
"forms": "boolean",
"freshQueries": "boolean",
"hexConvert": "boolean",
2012-07-03 02:50:23 +04:00
"oDir": "string",
"parseErrors": "boolean",
"pivotColumn": "string",
2012-12-20 20:53:43 +04:00
"saveCmdline": "boolean",
2013-04-30 16:32:11 +04:00
"scope": "string",
"testFilter": "string",
"updateAll": "boolean",
2010-11-16 17:11:32 +03:00
},
2008-10-15 19:38:22 +04:00
"Miscellaneous": {
2012-11-21 13:16:13 +04:00
"mnemonics": "string",
2012-12-11 15:48:58 +04:00
"alert": "string",
2012-11-21 13:16:13 +04:00
"answers": "string",
2012-12-11 15:02:06 +04:00
"beep": "boolean",
2013-01-09 16:30:13 +04:00
"checkWaf": "boolean",
"cleanup": "boolean",
"dependencies": "boolean",
2012-08-16 00:31:25 +04:00
"disableColoring": "boolean",
2010-11-16 17:09:09 +03:00
"googlePage": "integer",
2011-04-29 23:27:23 +04:00
"mobile": "boolean",
"pageRank": "boolean",
2012-12-20 20:53:43 +04:00
"purgeOutput": "boolean",
2011-07-10 19:16:58 +04:00
"smart": "boolean",
"wizard": "boolean",
2013-01-10 18:02:28 +04:00
"verbose": "integer",
2008-10-15 19:38:22 +04:00
},
2012-12-20 21:05:44 +04:00
"Hidden": {
"dummy": "boolean",
2013-06-04 01:32:57 +04:00
"binaryFields": "string",
2012-12-20 21:05:44 +04:00
"profile": "boolean",
"cpuThrottle": "integer",
"forceDns": "boolean",
"identifyWaf": "boolean",
2012-12-20 21:05:44 +04:00
"smokeTest": "boolean",
"liveTest": "boolean",
"stopFail": "boolean",
2013-01-10 18:02:28 +04:00
"runCase": "string",
2012-12-20 21:05:44 +04:00
}
2008-10-15 19:38:22 +04:00
}