mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Minor fix for --dump --technique=B when empty strings are returned
This commit is contained in:
parent
21481df239
commit
3f596cda85
2 changed files with 2 additions and 1 deletions
|
|
@ -285,6 +285,7 @@ class Entries:
|
|||
query = rootQuery.blind.query % (index, column, tbl)
|
||||
|
||||
value = NULL if column in emptyColumns else inject.getValue(query, inband=False, error=False, dump=True)
|
||||
value = '' if value is None else value
|
||||
|
||||
_ = DUMP_REPLACEMENTS.get(getUnicode(value), getUnicode(value))
|
||||
lengths[column] = max(lengths[column], len(_))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue