mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 13:14:13 +03:00
minor update (pivot value should be safechardecoded)
This commit is contained in:
parent
ded28442fb
commit
dbbaefa79d
|
@ -32,6 +32,7 @@ from lib.core.common import safeSQLIdentificatorNaming
|
|||
from lib.core.common import strToHex
|
||||
from lib.core.common import unArrayizeValue
|
||||
from lib.core.common import unsafeSQLIdentificatorNaming
|
||||
from lib.core.convert import safechardecode
|
||||
from lib.core.convert import utf8decode
|
||||
from lib.core.data import conf
|
||||
from lib.core.data import kb
|
||||
|
@ -1207,7 +1208,7 @@ class Enumeration:
|
|||
breakRetrieval = True
|
||||
break
|
||||
else:
|
||||
pivotValue = value
|
||||
pivotValue = safechardecode(value)
|
||||
|
||||
lengths[column] = max(lengths[column], len(value) if value else 0)
|
||||
entries[column].append(value)
|
||||
|
|
Loading…
Reference in New Issue
Block a user