mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 21:21:33 +00:00
minor enhancement for dumping 'None' values (proper way should be empty string because None is too pythonic)
This commit is contained in:
@@ -414,6 +414,9 @@ class Dump:
|
||||
if len(info["values"]) <= i:
|
||||
continue
|
||||
|
||||
if info["values"][i] is None:
|
||||
value = u''
|
||||
else:
|
||||
value = getUnicode(info["values"][i])
|
||||
|
||||
if re.search("^[\ *]*$", value):
|
||||
|
||||
Reference in New Issue
Block a user