WIFI空口包在Wireshark中过滤条件

一)三大类 WIFI包过滤

wlan.fc.type == 0 管理帧

wlan.fc.type == 1 控制帧

wlan.fc.type == 2 数据帧

二)管理帧

Association Req /Rsp wlan.fc.type_subtype == 0x0000||wlan.fc.type_subtype == 0x0001

Reassociation Req /Rsp wlan.fc.type_subtype == 0x00002||wlan.fc.type_subtype == 0x0003

Probe Req/Rsp wlan.fc.type_subtype == 0x0004||wlan.fc.type_subtype == 0x0005

Measurement Pilot wlan.fc.type_subtype == 0x00006

Unrecognized wlan.fc.type_subtype == 0x00007

Beacon wlan.fc.type_subtype == 0x0008

ATIM wlan.fc.type_subtype == 0x0009

DisAssociation wlan.fc.type_subtype == 0x000a

Auth wlan.fc.type_subtype == 0x000b

Disauthention wlan.fc.type_subtype == 0x000c

Action wlan.fc.type_subtype == 0x000d

Action No ACK wlan.fc.type_subtype == 0x000e

Aruba Management wlan.fc.type_subtype == 0x000f

三)控制帧

ACK帧:wlan.fc.type_subtype == 0x1D。

CTS帧:wlan.fc.type_subtype == 0x1C。

RTS帧:wlan.fc.type_subtype == 0x1B

PS-POLL帧: wlan.fc.type_subtype == 0x1A

四)数据帧

Null Data帧:要过滤Null Data帧,使用wlan.fc.type_subtype == 0x24。

Acknowledgement(No data)帧 wlan.fc.type_subtype == 0x25

QoS Data帧:质量服务数据帧可以通过wlan.fc.type_subtype == 0x28来过滤

Qos CF-Ack + CF-Poll (No data)帧: wlan.fc.type_subtype == 0x2f

802.1X 4次握手帧: llc.type == 0x888e

五)WIFI组合包过滤条件

Auth帧 + Association Req /Rsp + Reassociation Req /Rsp + Disauthention + DisAssociation + 802.1X 4次握手包 过滤条件

wlan.fc.type_subtype == 0x0000||wlan.fc.type_subtype == 0x0001||wlan.fc.type_subtype == 0x00002||wlan.fc.type_subtype == 0x0003||wlan.fc.type_subtype == 0x000a||wlan.fc.type_subtype == 0x000b||wlan.fc.type_subtype == 0x000c||llc.type == 0x888e

源MAC+目的MAC + (Auth帧 + Association Req /Rsp + Reassociation Req /Rsp + Disauthention + DisAssociation + 802.1X 4次握手包 ) 过滤条件

((wlan.da == 96:17:5e:00:8e:60) || (wlan.sa == 96:17:5e:00:8e:60))&& (wlan.fc.type_subtype == 0x0000||wlan.fc.type_subtype == 0x0001||wlan.fc.type_subtype == 0x00002||wlan.fc.type_subtype == 0x0003||wlan.fc.type_subtype == 0x000a||wlan.fc.type_subtype == 0x000b||wlan.fc.type_subtype == 0x000c||llc.type == 0x888e)

发送端MAC+ 接收端MAC + (Auth帧 + Association Req /Rsp + Reassociation Req /Rsp + Disauthention + DisAssociation + 802.1X 4次握手包 ) 过滤条件

((wlan.ra == 96:17:5e:00:8e:60) || (wlan.ta == 96:17:5e:00:8e:60))&& (wlan.fc.type_subtype == 0x0000||wlan.fc.type_subtype == 0x0001||wlan.fc.type_subtype == 0x00002||wlan.fc.type_subtype == 0x0003||wlan.fc.type_subtype == 0x000a||wlan.fc.type_subtype == 0x000b||wlan.fc.type_subtype == 0x000c||llc.type == 0x888e)


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值