mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 05:04:11 +03:00
consistency fix
This commit is contained in:
parent
87db5d0dab
commit
20c5f9a030
|
@ -305,12 +305,12 @@ def storeHashesToFile(attack_dict):
|
|||
if not attack_dict:
|
||||
return
|
||||
|
||||
handle, filename = tempfile.mkstemp(suffix=".txt")
|
||||
handle, filename = tempfile.mkstemp(prefix="sqlmaphashes-", suffix=".txt")
|
||||
os.close(handle)
|
||||
|
||||
warnMsg = "writing hashes to file '%s' " % filename
|
||||
warnMsg += "for eventual further processing with other tools"
|
||||
logger.warn(warnMsg)
|
||||
infoMsg = "writing hashes to file '%s' " % filename
|
||||
infoMsg += "for eventual further processing with other tools"
|
||||
logger.info(infoMsg)
|
||||
|
||||
items = set()
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user