sqlmap/lib/core/optiondict.py

199 lines
10 KiB
Python
Raw Normal View History

2008-10-15 19:38:22 +04:00
#!/usr/bin/env python
"""
2012-01-11 18:59:46 +04:00
Copyright (c) 2006-2012 sqlmap developers (http://www.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",
2010-01-12 16:11:26 +03:00
"googleDork": "string",
2010-01-14 23:42:45 +03: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-03-07 18:48:45 +04:00
"loC": "string",
2010-01-14 23:42:45 +03:00
"cookieUrlencode": "boolean",
"dropSetCookie": "boolean",
2008-10-15 19:38:22 +04:00
"agent": "string",
2011-02-02 17:51:12 +03:00
"randomAgent": "boolean",
"rParam": "string",
"forceSSL": "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",
"delay": "float",
"timeout": "float",
"retries": "integer",
"scope": "string",
"safUrl": "string",
2011-11-21 20:41:02 +04:00
"saFreq": "integer",
"skipUrlEncode": "boolean",
2011-11-21 20:41:02 +04:00
"evalCode": "string"
2008-10-15 19:38:22 +04:00
},
"Optimization": {
"optimize": "boolean",
"predictOutput": "boolean",
"keepAlive": "boolean",
"nullConnection": "boolean",
"threads": "integer"
},
2008-10-15 19:38:22 +04:00
"Injection": {
"testParameter": "string",
2008-10-15 19:38:22 +04:00
"dbms": "string",
"os": "string",
"invalidBignum": "boolean",
"invalidLogical": "boolean",
"prefix": "string",
"suffix": "string",
2011-08-29 17:29:42 +04:00
"skip": "string",
"tamper": "string"
},
"Detection": {
"level": "integer",
"risk": "integer",
"string": "string",
"regexp": "string",
2012-01-05 14:24:27 +04:00
"code": "integer",
"textOnly": "boolean",
"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",
"dName": "string"
},
2008-10-15 19:38:22 +04:00
"Fingerprint": {
"extensiveFp": "boolean"
2008-10-15 19:38:22 +04:00
},
"Enumeration": {
2010-05-27 20:45:09 +04:00
"getBanner": ("boolean", "Banners"),
"getCurrentUser": ("boolean", "Users"),
"getCurrentDb": ("boolean", "Databases"),
"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",
2011-04-01 20:40:28 +04:00
"sqlShell": "boolean"
2010-11-09 19:59:36 +03:00
},
"Brute": {
"commonTables": "boolean",
"commonColumns": "boolean"
},
"User-defined function": {
"udfInject": "boolean",
"shLib": "string"
2008-10-15 19:38:22 +04:00
},
"File system": {
"rFile": "string",
"wFile": "string",
"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",
"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
},
2010-11-16 17:11:32 +03:00
"General": {
#"xmlFile": "string",
"trafficFile": "string",
"batch": "boolean",
"charset": "string",
2011-11-30 21:39:41 +04:00
"checkTor": "boolean",
"crawlDepth": "integer",
2011-11-30 21:39:41 +04:00
"csvDel": "string",
"eta": "boolean",
2010-11-16 17:11:32 +03:00
"flushSession": "boolean",
"forms": "boolean",
"freshQueries": "boolean",
"hexConvert": "boolean",
"parseErrors": "boolean",
"replicate": "boolean",
"updateAll": "boolean",
2011-10-25 21:37:43 +04:00
"tor": "boolean",
2011-12-23 14:57:09 +04:00
"torPort": "integer",
2011-12-16 03:19:55 +04:00
"torType": "string",
2010-11-16 17:11:32 +03:00
},
2008-10-15 19:38:22 +04:00
"Miscellaneous": {
2010-11-16 17:09:09 +03:00
"beep": "boolean",
"checkPayload": "boolean",
"cleanup": "boolean",
"dependencies": "boolean",
2012-06-28 20:47:55 +04:00
"disableCracking": "boolean",
"disableLike": "boolean",
2010-11-16 17:09:09 +03:00
"googlePage": "integer",
2011-04-29 23:27:23 +04:00
"mobile": "boolean",
"pageRank": "boolean",
2011-07-10 19:16:58 +04:00
"smart": "boolean",
2012-06-14 18:36:53 +04:00
"tstF": "string",
"wizard": "boolean",
"verbose": "integer"
2008-10-15 19:38:22 +04:00
},
}