Minor update

This commit is contained in:
Miroslav Stampar
2018-12-17 17:03:51 +01:00
parent 1e508547d8
commit b288bfdbc3
3 changed files with 5 additions and 5 deletions

View File

@@ -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