Hidding --beep (Issue #84)

This commit is contained in:
Miroslav Stampar 2012-07-12 17:03:24 +02:00
parent ea9c66108e
commit a49d685eb8
3 changed files with 3 additions and 8 deletions

View File

@ -185,7 +185,6 @@ optDict = {
},
"Miscellaneous": {
"beep": "boolean",
"checkPayload": "boolean",
"cleanup": "boolean",
"dependencies": "boolean",

View File

@ -589,10 +589,6 @@ def cmdLineParser():
miscellaneous.add_option("-z", dest="mnemonics",
help="Use short mnemonics (e.g. \"flu,bat,ban,tec=EU\")")
miscellaneous.add_option("--beep", dest="beep",
action="store_true",
help="Sound alert when SQL injection found")
miscellaneous.add_option("--check-payload", dest="checkPayload",
action="store_true",
help="Offline WAF/IPS/IDS payload detection testing")
@ -645,6 +641,9 @@ def cmdLineParser():
help="Simple wizard interface for beginner users")
# Hidden and/or experimental options
parser.add_option("--beep", dest="beep", action="store_true",
help=SUPPRESS_HELP)
parser.add_option("--profile", dest="profile", action="store_true",
help=SUPPRESS_HELP)

View File

@ -633,9 +633,6 @@ updateAll = False
[Miscellaneous]
# Sound alert when SQL injection found.
beep = False
# Offline WAF/IPS/IDS payload detection testing.
checkPayload = False