Unhide '--disable-stats' (#5912)

This commit is contained in:
Miroslav Stampar
2025-06-20 12:34:14 +02:00
parent 1de66fd7e1
commit 8f9eeb5d54
4 changed files with 11 additions and 7 deletions

View File

@@ -408,6 +408,9 @@ def cmdLineParser(argv=None):
techniques.add_argument("--time-sec", dest="timeSec", type=int,
help="Seconds to delay the DBMS response (default %d)" % defaults.timeSec)
techniques.add_argument("--disable-stats", dest="disableStats", action="store_true",
help="Disable the statistical model for detecting the delay")
techniques.add_argument("--union-cols", dest="uCols",
help="Range of columns to test for UNION query SQL injection")
@@ -827,9 +830,6 @@ def cmdLineParser(argv=None):
parser.add_argument("--disable-precon", dest="disablePrecon", action="store_true",
help=SUPPRESS)
parser.add_argument("--disable-stats", dest="disableStats", action="store_true",
help=SUPPRESS)
parser.add_argument("--profile", dest="profile", action="store_true",
help=SUPPRESS)