mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
fix for a bug reported by Kirill (value is None in attack table phase) and minor fix for loading request file
This commit is contained in:
@@ -261,7 +261,7 @@ def attackDumpedTable():
|
||||
|
||||
value = table[column]['values'][i]
|
||||
|
||||
if value.lower() == hash_.lower():
|
||||
if all(map(lambda x: x, [value, hash_])) and value.lower() == hash_.lower():
|
||||
table[column]['values'][i] += " (%s)" % password
|
||||
table[column]['length'] = max(table[column]['length'], len(table[column]['values'][i]))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user