zoukankan      html  css  js  c++  java
  • 查看无线网卡是否支持监听模式

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

    在实施无线渗透测试时,通常需要将无线网卡设置为监听模式,来监听经过其网卡的所有流量。大学霸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,则表示支持监听。否则,不支持。

  • 相关阅读:
    【洛谷P2967】【USACO 2009 Dec】电子游戏 Video Game Troubles
    2021-09-11 刷题 39. 组合总和
    2021-09-10 刷题 160. 相交链表
    2021-09-09 刷题 141. 环形链表
    2021-09-08 刷题 20. 有效的括号
    2021-09-07 刷题 119杨辉三角2
    2021-08-01 刷题 合并两个有序链表
    2021-07-31 leetcode刷题记录 两数之和
    根据需要数据库的内容,封装增删改查的sql函数
    QT 对XML 文件进行增删改查
  • 原文地址:https://www.cnblogs.com/daxueba-ITdaren/p/12675484.html
Copyright © 2011-2022 走看看