mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
minor update (that default quit in --batch was bothering me - my original idea and it was bad :)
This commit is contained in:
parent
ed4cfbb6d2
commit
8a8b94883b
2 changed files with 11 additions and 14 deletions
|
|
@ -742,7 +742,7 @@ def strToHex(inpStr):
|
|||
|
||||
return hexStr
|
||||
|
||||
def readInput(message, default=None):
|
||||
def readInput(message, default=None, checkBatch=True):
|
||||
"""
|
||||
@param message: message to display on terminal.
|
||||
@type message: C{str}
|
||||
|
|
@ -758,7 +758,7 @@ def readInput(message, default=None):
|
|||
|
||||
message = "\r%s" % message
|
||||
|
||||
if conf.batch:
|
||||
if checkBatch and conf.batch:
|
||||
if isinstance(default, (list, tuple, set)):
|
||||
options = ",".join([getUnicode(opt, UNICODE_ENCODING) for opt in default])
|
||||
elif default:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue