Skip to content
Open
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
5 changes: 3 additions & 2 deletions wlan_client_capability.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,10 @@ def analyze_frame(assoc_req_frame, silent_mode=False, required_client=''):
# covert tag list in to useable format (decimal list of values)
dec_array = map(ord, str(dot11_elt_info))
#hex_array = map(hex, dec_array)

DA = list()
for d in dec_array: DA.append(d)
# store each tag list in a common tag dictionary
dot11_elt_dict[dot11_elt_id] = dec_array
dot11_elt_dict[dot11_elt_id] = DA #dec_array

# move to next layer - end of while loop
dot11_elt = dot11_elt.payload
Expand Down