File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8686 "tech" : "string" ,
8787 "timeSec" : "integer" ,
8888 "uCols" : "string" ,
89- "uChar" : "string"
89+ "uChar" : "string" ,
90+ "dnsDomain" : "string"
9091 },
9192
9293 "Fingerprint" : {
Original file line number Diff line number Diff line change @@ -272,6 +272,9 @@ def cmdLineParser():
272272 techniques .add_option ("--union-char" , dest = "uChar" ,
273273 help = "Character to use for bruteforcing number of columns" )
274274
275+ techniques .add_option ("--dns-domain" , dest = "dnsDomain" ,
276+ help = "Domain name used for DNS exfiltration attack" )
277+
275278 # Fingerprint options
276279 fingerprint = OptionGroup (parser , "Fingerprint" )
277280
@@ -641,9 +644,6 @@ def cmdLineParser():
641644 parser .add_option ("--test-filter" , dest = "testFilter" ,
642645 help = SUPPRESS_HELP )
643646
644- parser .add_option ("--dns-domain" , dest = "dnsDomain" ,
645- help = SUPPRESS_HELP )
646-
647647 parser .add_option_group (target )
648648 parser .add_option_group (request )
649649 parser .add_option_group (optimization )
Original file line number Diff line number Diff line change @@ -297,6 +297,10 @@ uCols =
297297# Example: NULL
298298uChar =
299299
300+ # Domain name used for DNS exfiltration attack
301+ # Valid: string
302+ dnsDomain =
303+
300304
301305[Fingerprint]
302306
You can’t perform that action at this time.
0 commit comments