mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
fix for a bug reported by Ulisses Castro (Too many open files) - also, added an important caching mechanism with thread safe logic
This commit is contained in:
parent
720e235d9a
commit
73b33ed765
4 changed files with 19 additions and 5 deletions
|
|
@ -993,6 +993,7 @@ def __setConfAttributes():
|
|||
conf.outputPath = None
|
||||
conf.paramDict = {}
|
||||
conf.parameters = {}
|
||||
conf.parseLock = None
|
||||
conf.path = None
|
||||
conf.port = None
|
||||
conf.redirectHandled = False
|
||||
|
|
@ -1022,6 +1023,7 @@ def __setKnowledgeBaseAttributes():
|
|||
kb.bannerFp = advancedDict()
|
||||
|
||||
kb.cache = advancedDict()
|
||||
kb.cache.content = {}
|
||||
kb.cache.regex = {}
|
||||
|
||||
kb.commonOutputs = None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue