Skip to content

Instantly share code, notes, and snippets.

@soulmachine
Last active October 30, 2017 07:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save soulmachine/fa5cb17b234392ffdaaba3ec5e5b4adb to your computer and use it in GitHub Desktop.
Save soulmachine/fa5cb17b234392ffdaaba3ec5e5b4adb to your computer and use it in GitHub Desktop.
aircrack-ng快速入门

1. 准备阶段:开启无线网卡的监听模式

启动 Kali VMWare 虚拟机,把USB无线网卡插到电脑上,选择连接到这台Kali虚拟机。

首先使用 ifconfig -a 查看你的无线网卡叫什么名字,例如叫做wlan0

激活无线网卡,

ifconfig wlan0 up

杀掉系统中可能的干扰进程,

airmon-ng check kill

开启网卡的监听模式,记下监听模式的名字,例如叫做 wlan0mon

airmon-ng start wlan0

ifconfig -a 你也可以看到 wlan0 不见了,取而代之的是wlan0mon,这说明监听模式开启成功了。

重启一下网卡,

ifconfig wlan0mon down
iwconfig wlan0mon mode monitor
ifconfig wlan0mon up

2. 探测阶段:监听周围wifi状态,选择要破解的无线路由器

如果过了一会儿你还是看不到Station信息,可能的一个原因是你的USB无线网卡太老了,不支持 802.11 ac 协议,建议去买一个Alfa Network AWUS036ACH 网卡,这也是 Kali 官方推荐的一款网卡,记得用命令 apt install realtek-rtl88xxau-dkms 安装网卡驱动。

3. 抓包阶段:抓取可用于破解的IVS数据报文

4. 破解极端:离线暴力破解

Reference

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment