Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87db5d0 commit 20c5f9aCopy full SHA for 20c5f9a
1 file changed
lib/utils/hash.py
@@ -305,12 +305,12 @@ def storeHashesToFile(attack_dict):
305
if not attack_dict:
306
return
307
308
- handle, filename = tempfile.mkstemp(suffix=".txt")
+ handle, filename = tempfile.mkstemp(prefix="sqlmaphashes-", suffix=".txt")
309
os.close(handle)
310
311
- warnMsg = "writing hashes to file '%s' " % filename
312
- warnMsg += "for eventual further processing with other tools"
313
- logger.warn(warnMsg)
+ infoMsg = "writing hashes to file '%s' " % filename
+ infoMsg += "for eventual further processing with other tools"
+ logger.info(infoMsg)
314
315
items = set()
316
0 commit comments