mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
adding --purge-output to be one of mandatory switches
This commit is contained in:
parent
d57d5e4b2c
commit
697768c01a
3 changed files with 4 additions and 4 deletions
|
|
@ -1968,7 +1968,7 @@ def init(inputOptions=AttribDict(), overrideOptions=False):
|
|||
parseTargetUrl()
|
||||
parseTargetDirect()
|
||||
|
||||
if any([conf.url, conf.logFile, conf.bulkFile, conf.requestFile, conf.googleDork, conf.liveTest]):
|
||||
if any((conf.url, conf.logFile, conf.bulkFile, conf.requestFile, conf.googleDork, conf.liveTest)):
|
||||
__setHTTPTimeout()
|
||||
__setHTTPExtraHeaders()
|
||||
__setHTTPCookies()
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ def purge(directory):
|
|||
if not os.path.isdir(directory):
|
||||
return
|
||||
|
||||
infoMsg = "purging content of directory ('%s'). Please wait. This could take a while..." % directory
|
||||
infoMsg = "purging content of directory ('%s'). Please wait as this could take a while" % directory
|
||||
logger.info(infoMsg)
|
||||
|
||||
filepaths = []
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue