mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-09 17:51:33 +00:00
some more optimizations
This commit is contained in:
parent
267d67b024
commit
9697e80013
5 changed files with 24 additions and 14 deletions
|
|
@ -414,4 +414,7 @@ COMMON_USER_COLUMNS = ('user', 'username', 'user_name', 'benutzername', 'benutze
|
|||
DEFAULT_GET_POST_DELIMITER = '&'
|
||||
|
||||
# Default delimiter in cookie values
|
||||
DEFAULT_COOKIE_DELIMITER = ';'
|
||||
DEFAULT_COOKIE_DELIMITER = ';'
|
||||
|
||||
# Skip unforced HashDB flush requests below the threshold number of cached items
|
||||
HASHDB_FLUSH_THRESHOLD = 10
|
||||
|
|
|
|||
|
|
@ -181,7 +181,7 @@ def runThreads(numThreads, threadFunction, cleanupFunction=None, forwardExceptio
|
|||
kb.threadContinue = True
|
||||
kb.threadException = False
|
||||
|
||||
conf.hashDB.flush()
|
||||
conf.hashDB.flush(True)
|
||||
|
||||
if cleanupFunction:
|
||||
cleanupFunction()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue