查看无线网卡是否支持监听模式

查看无线网卡是否支持监听模式

在实施无线渗透测试时,通常需要将无线网卡设置为监听模式,来监听经过其网卡的所有流量。大学霸IT达人对于很多用户,都不知道如何确定自己的无线网卡是否支持监听,结果浪费大量时间做了无用的操作。为了帮助用户提供工作效率,可以在使用无线网卡之前先使用iw list命令查看无线网卡是否支持监听,以节约不必要浪费的时间。执行命令如下所示:

iw list
执行以上命令后,将输出设备的所有功能信息。如下所示:
Wiphy phy0
        max # scan SSIDs: 4
        max scan IEs length: 2257 bytes
        max # sched scan SSIDs: 0
        max # match sets: 0
        max # scan plans: 1
        max scan plan interval: -1
        max scan plan iterations: 0
        Retry short long limit: 2
        Coverage class: 0 (up to 0m)
        Device supports RSN-IBSS.
        Supported Ciphers:
                * WEP40 (00-0f-ac:1)
                * WEP104 (00-0f-ac:5)
                * TKIP (00-0f-ac:2)
                * CCMP-128 (00-0f-ac:4)
                * CCMP-256 (00-0f-ac:10)
                * GCMP-128 (00-0f-ac:8)
                * GCMP-256 (00-0f-ac:9)
        Available Antennas: TX 0 RX 0
        Supported interface modes: #支持的接口模式
                 * IBSS
                 * managed
                 * AP
                 * AP/VLAN
                 * monitor #监听模式
                 * mesh point
...//省略部分内容//...
        Device supports HT-IBSS.
        Device supports SAE with AUTHENTICATE command
        Device supports low priority scan.
        Device supports scan flush.
        Device supports AP scan.
        Device supports per-vif TX power setting
        Driver supports full state transitions for AP/GO clients
        Driver supports a userspace MPM
        Device supports configuring vdev MAC-addr on create.
        Supported extended features:
                * [ RRM ]: RRM
                * [ FILS_STA ]: STA FILS (Fast Initial Link Setup)
                * [ CQM_RSSI_LIST ]: multiple CQM_RSSI_THOLD records
                * [ CONTROL_PORT_OVER_NL80211 ]: control port over nl80211
在输出的信息中包括一部分Supported interface modes,可以查看无线网卡支持的工作模式。如果列出的模式有monitor,则表示支持监听。否则,不支持。

发布了1037 篇原创文章 · 获赞 231 · 访问量 138万+

猜你喜欢

转载自blog.csdn.net/u014621518/article/details/105439976