Skip to content

Commit

Permalink
add zD to wfpayload
Browse files Browse the repository at this point in the history
  • Loading branch information
xmendez committed Mar 10, 2019
1 parent c4f8971 commit 10eaca1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/wfuzz/wfuzz.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ def usage():
\t-z payload : Specify a payload for each FUZZ keyword used in the form of type,parameters,encoder.
\t A list of encoders can be used, ie. md5-sha1. Encoders can be chained, ie. md5@sha1.
\t Encoders category can be used. ie. url
\t--zD default : Default argument for the specified payload (it must be preceded by -z or -w).
\t--zP <params> : Arguments for the specified payload (it must be preceded by -z or -w).
\t--slice <filter> : Filter payload\'s elements using the specified expression.
\t-w wordlist : Specify a wordlist file (alias for -z file,wordlist).
Expand All @@ -84,7 +85,7 @@ def usage():
import getopt

try:
opts, args = getopt.getopt(sys.argv[1:], "vhz:m:w:", ["field=", "help", "slice=", "zP="])
opts, args = getopt.getopt(sys.argv[1:], "vhz:m:w:", ["field=", "help", "slice=", "zD=", "zP="])
except getopt.GetoptError as err:
print((str(err)))
usage()
Expand Down

0 comments on commit 10eaca1

Please sign in to comment.