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 54e0a2d commit a525dd4Copy full SHA for a525dd4
1 file changed
lib/core/target.py
@@ -204,15 +204,15 @@ def __setHashDB():
204
"""
205
206
if not conf.hashDBFile:
207
- conf.hashDBFile = "%s%shashdb" % (conf.outputPath, os.sep)
+ conf.hashDBFile = "%s%ssession.sqlite" % (conf.outputPath, os.sep)
208
209
if os.path.exists(conf.hashDBFile):
210
if conf.flushSession:
211
try:
212
os.remove(conf.hashDBFile)
213
- logger.info("flushing query storage file")
+ logger.info("flushing session file")
214
except OSError, msg:
215
- errMsg = "unable to flush the hashdb file (%s)" % msg
+ errMsg = "unable to flush the session file (%s)" % msg
216
raise sqlmapFilePathException, errMsg
217
218
conf.hashDB = HashDB(conf.hashDBFile)
0 commit comments