mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Hidding --beep (Issue #84)
This commit is contained in:
parent
ea9c66108e
commit
a49d685eb8
|
@ -185,7 +185,6 @@ optDict = {
|
||||||
},
|
},
|
||||||
|
|
||||||
"Miscellaneous": {
|
"Miscellaneous": {
|
||||||
"beep": "boolean",
|
|
||||||
"checkPayload": "boolean",
|
"checkPayload": "boolean",
|
||||||
"cleanup": "boolean",
|
"cleanup": "boolean",
|
||||||
"dependencies": "boolean",
|
"dependencies": "boolean",
|
||||||
|
|
|
@ -589,10 +589,6 @@ def cmdLineParser():
|
||||||
miscellaneous.add_option("-z", dest="mnemonics",
|
miscellaneous.add_option("-z", dest="mnemonics",
|
||||||
help="Use short mnemonics (e.g. \"flu,bat,ban,tec=EU\")")
|
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",
|
miscellaneous.add_option("--check-payload", dest="checkPayload",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
help="Offline WAF/IPS/IDS payload detection testing")
|
help="Offline WAF/IPS/IDS payload detection testing")
|
||||||
|
@ -645,6 +641,9 @@ def cmdLineParser():
|
||||||
help="Simple wizard interface for beginner users")
|
help="Simple wizard interface for beginner users")
|
||||||
|
|
||||||
# Hidden and/or experimental options
|
# 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",
|
parser.add_option("--profile", dest="profile", action="store_true",
|
||||||
help=SUPPRESS_HELP)
|
help=SUPPRESS_HELP)
|
||||||
|
|
||||||
|
|
|
@ -633,9 +633,6 @@ updateAll = False
|
||||||
|
|
||||||
[Miscellaneous]
|
[Miscellaneous]
|
||||||
|
|
||||||
# Sound alert when SQL injection found.
|
|
||||||
beep = False
|
|
||||||
|
|
||||||
# Offline WAF/IPS/IDS payload detection testing.
|
# Offline WAF/IPS/IDS payload detection testing.
|
||||||
checkPayload = False
|
checkPayload = False
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user