- Kali Linux Wireless Penetration Testing:Beginner's Guide
- Vivek Ramachandran Cameron Buchanan
- 223字
- 2021-07-23 19:45:32
Time for action – experimenting with your adapter
Follow the instructions below carefully:
- Enter the
iwconfig wlan0
command to check the capabilities of your card. As you can see in the figure below, my adapter can operate in the b, g, and n bands. - To set the card on a particular channel, we use the
iwconfig mon0 channel X
commands. - The
iwconfig
series of commands does not have a channel hopping mode. One could write a simple script over it to make it do so. An easier way is to use Airodump-NG with options to either hop channels arbitrarily, use only a subset, or use only selected bands. All these options are illustrated in the screenshot below when we runairodump-ng --help
:
What just happened?
We understood that both wireless sniffing and packet injection depend on the hardware support available. This means that we can only operate on bands and channels allowed by our card. Also, the wireless card radio can only be on one channel at a time. This further means that we can only sniff or inject in one channel at a time.
Have a go hero – sniffing multiple channels
If you need to simultaneously sniff on multiple channels, you will require multiple physical Wi-Fi cards. If you can procure additional cards, then try to sniff on multiple channels simultaneously.
推薦閱讀
- SpringMVC+MyBatis快速開發(fā)與項目實戰(zhàn)
- 自己動手實現(xiàn)Lua:虛擬機、編譯器和標(biāo)準(zhǔn)庫
- PostgreSQL Cookbook
- 劍指JVM:虛擬機實踐與性能調(diào)優(yōu)
- Learning SciPy for Numerical and Scientific Computing(Second Edition)
- Java EE 8 Application Development
- 圖數(shù)據(jù)庫實戰(zhàn)
- OpenCV with Python By Example
- Java圖像處理:基于OpenCV與JVM
- 區(qū)塊鏈架構(gòu)之美:從比特幣、以太坊、超級賬本看區(qū)塊鏈架構(gòu)設(shè)計
- Simulation for Data Science with R
- Penetration Testing with the Bash shell
- MATLAB從入門到精通
- C語言從入門到精通(第4版)
- C#多線程編程實戰(zhàn)