mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-11 19:13:12 +00:00
Minor update
This commit is contained in:
parent
1e508547d8
commit
b288bfdbc3
3 changed files with 5 additions and 5 deletions
|
|
@ -623,7 +623,7 @@ def attackDumpedTable():
|
|||
col_passwords = set()
|
||||
attack_dict = {}
|
||||
|
||||
for column in columns:
|
||||
for column in sorted(columns, key=lambda _: len(_), reverse=True):
|
||||
if column and column.lower() in COMMON_USER_COLUMNS:
|
||||
col_user = column
|
||||
break
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue