mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-05-07 01:03:43 +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:
|
if not attack_dict:
|
||||||
return
|
return
|
||||||
|
|
||||||
handle, filename = tempfile.mkstemp(suffix=".txt")
|
handle, filename = tempfile.mkstemp(prefix="sqlmaphashes-", suffix=".txt")
|
||||||
os.close(handle)
|
os.close(handle)
|
||||||
|
|
||||||
warnMsg = "writing hashes to file '%s' " % filename
|
infoMsg = "writing hashes to file '%s' " % filename
|
||||||
warnMsg += "for eventual further processing with other tools"
|
infoMsg += "for eventual further processing with other tools"
|
||||||
logger.warn(warnMsg)
|
logger.info(infoMsg)
|
||||||
|
|
||||||
items = set()
|
items = set()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user