mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 21:21:33 +00:00
quick fix
This commit is contained in:
@@ -75,6 +75,7 @@ from lib.core.settings import NON_CONTROL_CHAR_REGEX
|
|||||||
from lib.core.settings import SQL_STATEMENTS
|
from lib.core.settings import SQL_STATEMENTS
|
||||||
from lib.core.settings import SUPPORTED_DBMS
|
from lib.core.settings import SUPPORTED_DBMS
|
||||||
from lib.core.settings import UNKNOWN_DBMS_VERSION
|
from lib.core.settings import UNKNOWN_DBMS_VERSION
|
||||||
|
from lib.core.settings import DEFAULT_MSSQL_SCHEMA
|
||||||
from lib.core.settings import DUMP_NEWLINE_MARKER
|
from lib.core.settings import DUMP_NEWLINE_MARKER
|
||||||
from lib.core.settings import DUMP_CR_MARKER
|
from lib.core.settings import DUMP_CR_MARKER
|
||||||
from lib.core.settings import DUMP_DEL_MARKER
|
from lib.core.settings import DUMP_DEL_MARKER
|
||||||
|
|||||||
@@ -96,7 +96,7 @@ def tableExists(tableFile, regex=None):
|
|||||||
infoMsg = "starting %d threads" % conf.threads
|
infoMsg = "starting %d threads" % conf.threads
|
||||||
logger.info(infoMsg)
|
logger.info(infoMsg)
|
||||||
else:
|
else:
|
||||||
message = "please enter number of threads? [Enter for default (%d)] " % conf.threads
|
message = "please enter number of threads? [Enter for %d (current)] " % conf.threads
|
||||||
choice = readInput(message, default=str(conf.threads))
|
choice = readInput(message, default=str(conf.threads))
|
||||||
if choice and choice.isdigit():
|
if choice and choice.isdigit():
|
||||||
conf.threads = int(choice)
|
conf.threads = int(choice)
|
||||||
@@ -208,7 +208,7 @@ def columnExists(columnFile, regex=None):
|
|||||||
infoMsg = "starting %d threads" % conf.threads
|
infoMsg = "starting %d threads" % conf.threads
|
||||||
logger.info(infoMsg)
|
logger.info(infoMsg)
|
||||||
else:
|
else:
|
||||||
message = "please enter number of threads? [Enter for default (%d)] " % conf.threads
|
message = "please enter number of threads? [Enter for %d (current)] " % conf.threads
|
||||||
choice = readInput(message, default=str(conf.threads))
|
choice = readInput(message, default=str(conf.threads))
|
||||||
if choice and choice.isdigit():
|
if choice and choice.isdigit():
|
||||||
conf.threads = int(choice)
|
conf.threads = int(choice)
|
||||||
|
|||||||
Reference in New Issue
Block a user