mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 00:38:24 -05:00
tests: Mesh scan element parse error
Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
699074d30c
commit
e8739be842
@ -11,6 +11,7 @@ import subprocess
|
|||||||
import time
|
import time
|
||||||
|
|
||||||
import hwsim_utils
|
import hwsim_utils
|
||||||
|
import hostapd
|
||||||
from wpasupplicant import WpaSupplicant
|
from wpasupplicant import WpaSupplicant
|
||||||
from utils import HwsimSkip, alloc_fail, fail_test, wait_fail_trigger
|
from utils import HwsimSkip, alloc_fail, fail_test, wait_fail_trigger
|
||||||
from tshark import run_tshark
|
from tshark import run_tshark
|
||||||
@ -1275,3 +1276,19 @@ def test_mesh_default_beacon_int(dev, apdev):
|
|||||||
check_mesh_group_added(dev[0])
|
check_mesh_group_added(dev[0])
|
||||||
finally:
|
finally:
|
||||||
dev[0].request("SET beacon_int 0")
|
dev[0].request("SET beacon_int 0")
|
||||||
|
|
||||||
|
def test_mesh_scan_parse_error(dev, apdev):
|
||||||
|
"""Mesh scan element parse error"""
|
||||||
|
check_mesh_support(dev[0])
|
||||||
|
params = { "ssid": "open",
|
||||||
|
"beacon_int": "2000" }
|
||||||
|
hapd = hostapd.add_ap(apdev[0], params)
|
||||||
|
bssid = apdev[0]['bssid']
|
||||||
|
hapd.set('vendor_elements', 'dd0201')
|
||||||
|
for i in range(10):
|
||||||
|
dev[0].scan(freq=2412)
|
||||||
|
if bssid in dev[0].request("SCAN_RESULTS"):
|
||||||
|
break
|
||||||
|
# This will fail in IE parsing due to the truncated IE in the Probe
|
||||||
|
# Response frame.
|
||||||
|
bss = dev[0].request("BSS " + bssid)
|
||||||
|
Loading…
Reference in New Issue
Block a user