mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Fixes #3732
This commit is contained in:
parent
de57a28223
commit
f0306af58d
2 changed files with 3 additions and 3 deletions
|
|
@ -645,8 +645,8 @@ def attackDumpedTable():
|
|||
break
|
||||
|
||||
for column in columns:
|
||||
if column != "__infos__":
|
||||
if all(INVALID_UNICODE_CHAR_FORMAT.split('%')[0] in value for value in table[column]["values"]):
|
||||
if column != "__infos__" and table[column]["values"]:
|
||||
if all(INVALID_UNICODE_CHAR_FORMAT.split('%')[0] in (value or "") for value in table[column]["values"]):
|
||||
binary_fields.add(column)
|
||||
|
||||
if binary_fields:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue