We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 72a430e + 38c840b commit 1bae850Copy full SHA for 1bae850
wifite/model/target.py
@@ -76,6 +76,7 @@ def __init__(self, fields):
76
14 Key ()
77
"""
78
self.manufacturer = None
79
+ self.wps = WPSState.NONE
80
self.bssid = fields[0].strip()
81
self.channel = fields[3].strip()
82
self.encryption = fields[5].strip()
@@ -87,6 +88,8 @@ def __init__(self, fields):
87
88
self.encryption = 'WPA'
89
elif 'WEP' in self.encryption:
90
self.encryption = 'WEP'
91
+ elif 'WPS' in self.encryption:
92
+ self.encryption = 'WPS'
93
94
if len(self.encryption) > 4:
95
self.encryption = self.encryption[:4].strip()
0 commit comments