1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
#!/usr/bin/env python
# Impacket - Collection of Python classes for working with network protocols.
#
# Copyright Fortra, LLC and its affiliated companies
#
# All rights reserved.
#
# This software is provided under a slightly modified version
# of the Apache Software License. See the accompanying LICENSE file
# for more information.
#
import unittest
from impacket.dot11 import Dot11,Dot11Types,Dot11ControlFramePSPoll
class TestDot11FrameControlPSPoll(unittest.TestCase):
def setUp(self):
# 802.11 Control Frame PSPoll
self.frame_orig=b'\xa6\x73\xf1\xaf\x48\x06\xee\x23\x2b\xc9\xfe\xbe\xe5\x05\x4c\x0a\x04\xa0\x00\x0f'
d = Dot11(self.frame_orig)
type = d.get_type()
self.assertEqual(type,Dot11Types.DOT11_TYPE_CONTROL)
subtype = d.get_subtype()
self.assertEqual(subtype,Dot11Types.DOT11_SUBTYPE_CONTROL_POWERSAVE_POLL)
typesubtype = d.get_type_n_subtype()
self.assertEqual(typesubtype,Dot11Types.DOT11_TYPE_CONTROL_SUBTYPE_POWERSAVE_POLL)
self.pspoll = Dot11ControlFramePSPoll(d.get_body_as_string())
d.contains(self.pspoll)
def test_01_HeaderTailSize(self):
'Test Header and Tail Size field'
self.assertEqual(self.pspoll.get_header_size(), 14)
self.assertEqual(self.pspoll.get_tail_size(), 0)
def test_02_AID(self):
'Test AID field'
self.assertEqual(self.pspoll.get_aid(), 0xAFF1)
self.pspoll.set_aid(0x1234)
self.assertEqual(self.pspoll.get_aid(), 0x1234)
def test_03_BSSID(self):
'Test BSS ID field'
bssid=self.pspoll.get_bssid()
self.assertEqual(bssid.tolist(), [0x48,0x06,0xee,0x23,0x2b,0xc9])
bssid[0]=0x12
bssid[5]=0x34
self.pspoll.set_bssid(bssid)
self.assertEqual(self.pspoll.get_bssid().tolist(), [0x12,0x06,0xee,0x23,0x2b,0x34])
def test_04_TA(self):
'Test TA field'
ta=self.pspoll.get_ta()
self.assertEqual(ta.tolist(), [0xfe,0xbe,0xe5,0x05,0x4c,0x0a])
ta[0]=0x12
ta[5]=0x34
self.pspoll.set_ta(ta)
self.assertEqual(self.pspoll.get_ta().tolist(), [0x12,0xbe,0xe5,0x05,0x4c,0x34])
if __name__ == '__main__':
unittest.main(verbosity=1)
|