mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
unhiding --dns-domain switch
This commit is contained in:
parent
fed0212631
commit
76eeba10e2
|
@ -86,7 +86,8 @@ optDict = {
|
|||
"tech": "string",
|
||||
"timeSec": "integer",
|
||||
"uCols": "string",
|
||||
"uChar": "string"
|
||||
"uChar": "string",
|
||||
"dnsDomain": "string"
|
||||
},
|
||||
|
||||
"Fingerprint": {
|
||||
|
|
|
@ -272,6 +272,9 @@ def cmdLineParser():
|
|||
techniques.add_option("--union-char", dest="uChar",
|
||||
help="Character to use for bruteforcing number of columns")
|
||||
|
||||
techniques.add_option("--dns-domain", dest="dnsDomain",
|
||||
help="Domain name used for DNS exfiltration attack")
|
||||
|
||||
# Fingerprint options
|
||||
fingerprint = OptionGroup(parser, "Fingerprint")
|
||||
|
||||
|
@ -641,9 +644,6 @@ def cmdLineParser():
|
|||
parser.add_option("--test-filter", dest="testFilter",
|
||||
help=SUPPRESS_HELP)
|
||||
|
||||
parser.add_option("--dns-domain", dest="dnsDomain",
|
||||
help=SUPPRESS_HELP)
|
||||
|
||||
parser.add_option_group(target)
|
||||
parser.add_option_group(request)
|
||||
parser.add_option_group(optimization)
|
||||
|
|
|
@ -297,6 +297,10 @@ uCols =
|
|||
# Example: NULL
|
||||
uChar =
|
||||
|
||||
# Domain name used for DNS exfiltration attack
|
||||
# Valid: string
|
||||
dnsDomain =
|
||||
|
||||
|
||||
[Fingerprint]
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user