Skip to content

Commit a49d685

Browse files
committed
Hidding --beep (Issue sqlmapproject#84)
1 parent ea9c661 commit a49d685

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

lib/core/optiondict.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,6 @@
185185
},
186186

187187
"Miscellaneous": {
188-
"beep": "boolean",
189188
"checkPayload": "boolean",
190189
"cleanup": "boolean",
191190
"dependencies": "boolean",

lib/parse/cmdline.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -589,10 +589,6 @@ def cmdLineParser():
589589
miscellaneous.add_option("-z", dest="mnemonics",
590590
help="Use short mnemonics (e.g. \"flu,bat,ban,tec=EU\")")
591591

592-
miscellaneous.add_option("--beep", dest="beep",
593-
action="store_true",
594-
help="Sound alert when SQL injection found")
595-
596592
miscellaneous.add_option("--check-payload", dest="checkPayload",
597593
action="store_true",
598594
help="Offline WAF/IPS/IDS payload detection testing")
@@ -645,6 +641,9 @@ def cmdLineParser():
645641
help="Simple wizard interface for beginner users")
646642

647643
# Hidden and/or experimental options
644+
parser.add_option("--beep", dest="beep", action="store_true",
645+
help=SUPPRESS_HELP)
646+
648647
parser.add_option("--profile", dest="profile", action="store_true",
649648
help=SUPPRESS_HELP)
650649

sqlmap.conf

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -633,9 +633,6 @@ updateAll = False
633633

634634
[Miscellaneous]
635635

636-
# Sound alert when SQL injection found.
637-
beep = False
638-
639636
# Offline WAF/IPS/IDS payload detection testing.
640637
checkPayload = False
641638

0 commit comments

Comments
 (0)