Mastering Kali LInux Wireless pentesting [读书笔记]

  1. 最常见WIFI 协议

802.11.png

  1. 2.4G 包含14个频道,从1(2412), 2(2417), ... 13(2472), 14(2477),北美只用1到11, 其他国家最多用到13, 几乎没有国家用到14。 都是由本国政府规定可以用那个。
  2. 5G 频道更多,分布更广,一般从 36(5180 MHz) 到 165(5825), 还有从7(4915) 到195.
  3. Adapter 的4种模式

    1. managed mode 最常见模式,只从它对应的AP接收信号,忽略其它的;
    2. ad-hoc mode 点对点通信用,必然蓝牙
    3. monitor mode passive 模式,接收一切信号,不管是不是给自己的;
    4. master mode 配置当前adapter为AP,比如设置成一个虚假的WIFI访问点
  4. 802.11 的配置模式

    1. Infrastructure 模式,一般的AP 模式
    2. ad-hoc 模式 点对点 模式 很少见
  5. 802.11 frame 类型

    1. management frame
    2. control frame
    3. data frame
  6. 网络加密类型

    1. Open
    2. WEP Wired Equivalent Privacy
    3. WPA/WPA2 Wi-Fi Protected Access 安全标准 802.11i,从兼容过度的Temporal Key Integrity Protocol(兼容WEP的硬件) 到
    4. WPA2 是802.11i的完全实现,使用AES(Advanced Encryption Standard) 加密
  7. WPA/WPA2

    1. 分为 WPA Personal 和 WPA Enterprise
    2. WPA Personal 又被称为: WPA Pre Shared Key (PSK)
    3. WPA Enterprise 需要 RADIUS server on the network to authenticate the clients
    4. WPA PSK 需要最少8个ASCII码的字符作为key, 这个key又称作 Pre-shared Master Key (PMK)
    5. 通过PMK生成 Pairwise Transient Keys (PTK) 在一个session期间加密数据
    6. 即使攻击者拥有PMK,也不能破解其它client和AP的数据,因为它没有PTK.要捕获PTK必须在它们握手期间获得.
  8. 字典攻击 WPA 捕获client 和 AP的握手包,然后用密码字典破解

    1. 打开monitor 模式

    ifconfig wlan3 down
    iwconfig wlan3 mode monitor
    ifconfig wlan3 up

    1. airodump-ng -w mydump -c 6 wlan3 //开始dump,一旦捕获握手,就显示在右上
    2. aircrack-ng mydump.cap -c pwddict.txt //用字典破解
  9. 使用彩虹表加速破解

标签: none

添加新评论