Skip to content

Commit

Permalink
Merge pull request #332 from JustGuardian/master
Browse files Browse the repository at this point in the history
Removed the "channel" field since it is not required and not saved
  • Loading branch information
kimocoder authored Nov 25, 2024
2 parents c34340a + 4c72438 commit d395382
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 d395382

Please sign in to comment.