mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-11 18:51:20 +00:00
fix for a bug reported by Kirill Morozov (we haven't expected mixed case/copied results in partial union pages)
This commit is contained in:
parent
af5342c495
commit
c5b6d377fb
2 changed files with 6 additions and 4 deletions
|
|
@ -1252,7 +1252,7 @@ def __setKnowledgeBaseAttributes(flushAll=True):
|
|||
kb.threadData = {}
|
||||
|
||||
kb.misc = advancedDict()
|
||||
kb.misc.delimiter = randomStr(length=6)
|
||||
kb.misc.delimiter = randomStr(length=6, lowercase=True)
|
||||
kb.misc.start = ":%s:" % randomStr(length=3, lowercase=True)
|
||||
kb.misc.stop = ":%s:" % randomStr(length=3, lowercase=True)
|
||||
kb.misc.space = ":%s:" % randomStr(length=1, lowercase=True)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue