Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions htpclient/hashcat_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ def __init__(self, line):
if line[index] == "UTIL":
index += 1
while len(line) - 1 > index: # -1 because the \r\n is also included in the split
# Hashcat 7 has extra parameter where we expect utils of cards
if line[index] == "POWER":
break
self.util.append(int(line[index]))
index += 1

Expand Down