Skip to content

Commit

Permalink
Removed the "channel" field since it is not required and not saved. I…
Browse files Browse the repository at this point in the history
…t was always failing to load cracked wps for this reason.
  • Loading branch information
JustGuardian committed Nov 5, 2024
1 parent c34340a commit 4c72438
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions wifite/model/result.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,7 @@ def load(json):
result = CrackResultWPS(bssid=json['bssid'],
essid=json['essid'],
pin=json['pin'],
psk=json['psk'],
channel=json['channel'])
psk=json['psk'])

elif json['type'] == 'PMKID':
from .pmkid_result import CrackResultPMKID
Expand Down

0 comments on commit 4c72438

Please sign in to comment.