mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
Further pleasing the pylint gods
This commit is contained in:
@@ -635,7 +635,7 @@ def attackDumpedTable():
|
||||
col_passwords = set()
|
||||
attack_dict = {}
|
||||
|
||||
for column in sorted(columns, key=lambda _: len(_), reverse=True):
|
||||
for column in sorted(columns, key=len, reverse=True):
|
||||
if column and column.lower() in COMMON_USER_COLUMNS:
|
||||
col_user = column
|
||||
break
|
||||
|
||||
Reference in New Issue
Block a user