From a49d685eb86fdcf40a69c805b099f4c20a0e20d9 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Thu, 12 Jul 2012 17:03:24 +0200 Subject: [PATCH] Hidding --beep (Issue #84) --- lib/core/optiondict.py | 1 - lib/parse/cmdline.py | 7 +++---- sqlmap.conf | 3 --- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/lib/core/optiondict.py b/lib/core/optiondict.py index 15753a347..b3ea11b20 100644 --- a/lib/core/optiondict.py +++ b/lib/core/optiondict.py @@ -185,7 +185,6 @@ optDict = { }, "Miscellaneous": { - "beep": "boolean", "checkPayload": "boolean", "cleanup": "boolean", "dependencies": "boolean", diff --git a/lib/parse/cmdline.py b/lib/parse/cmdline.py index 8037ba4ab..ecdb52c27 100644 --- a/lib/parse/cmdline.py +++ b/lib/parse/cmdline.py @@ -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) diff --git a/sqlmap.conf b/sqlmap.conf index de213de16..e86d1d5ab 100644 --- a/sqlmap.conf +++ b/sqlmap.conf @@ -633,9 +633,6 @@ updateAll = False [Miscellaneous] -# Sound alert when SQL injection found. -beep = False - # Offline WAF/IPS/IDS payload detection testing. checkPayload = False