add - new options to inject into cache poisoning: payload from comand line, payload from file, complete new HTML file

add - some visual improvements in argparser
This commit is contained in:
cr0hn
2016-02-18 11:11:59 +01:00
parent 8fb88f3a16
commit 0cf71412be
4 changed files with 179 additions and 103 deletions

View File

@@ -7,7 +7,9 @@ This file contains command line actions for argparser
# ----------------------------------------------------------------------
def parser_proc_raw_dump(parser):
parser.add_argument("--tail", action="store_true", dest="tail_mode", default=False,
help="although all information be dumped do not stop")
parser.add_argument("-I", dest="interval", type=float, default=4,
help="timeout interval between tow connections")
gr = parser.add_argument_group("custom raw dump options")
gr.add_argument("--tail", action="store_true", dest="tail_mode", default=False,
help="although all information be dumped do not stop")
gr.add_argument("-I", dest="interval", type=float, default=4,
help="timeout interval between tow connections")