Skip to content

Commit

Permalink
Detect Ubiquiti encrypted mode
Browse files Browse the repository at this point in the history
  • Loading branch information
davesteele committed Jun 13, 2017
1 parent e35bb01 commit 183637d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comitup/iwscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def candidates():
pt = {}
pt['ssid'] = ap['SSID']
pt['strength'] = ap['power']
if 'WPA' in ap:
if 'WPA' in ap or 'RSN' in ap:
pt['security'] = 'encrypted'
else:
pt['security'] = 'unencrypted'
Expand Down

0 comments on commit 183637d

Please sign in to comment.