mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
improvement of error-based testing (no more sqlmap aborting on error-based payloads which happens very often on MySQL servers); also, minor improvement on brute forcing of column names
This commit is contained in:
parent
dd01d66f13
commit
0916117447
2 changed files with 26 additions and 13 deletions
|
|
@ -208,6 +208,12 @@ def columnExists(columnFile, regex=None):
|
|||
infoMsg = "starting %d threads" % conf.threads
|
||||
logger.info(infoMsg)
|
||||
else:
|
||||
message = "please enter number of threads? [Enter for default (%d)] " % conf.threads
|
||||
choice = readInput(message, default=str(conf.threads))
|
||||
if choice and choice.isdigit():
|
||||
conf.threads = int(choice)
|
||||
|
||||
if conf.threads == 1:
|
||||
warnMsg = "running in a single-thread mode. this could take a while."
|
||||
logger.warn(warnMsg)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue