Revisiting WLAN frames
As this book deals with the security aspects of wireless, we will assume that you already have a basic understanding of the protocol and the packet headers. If not, or if it's been some time since you worked on wireless, this would be a good time to revisit this topic again.
Let's now quickly review some basic concepts of WLANs that most of you may already be aware of. In WLANs, communication happens over frames. A frame would have the following header structure:

The Frame Control
field itself has a more complex structure:

The Type
field defines three types of WLAN frame:
- Management frames: Management frames are responsible for maintaining communication between access points and wireless clients. Management frames can have the following subtypes:
- Authentication
- Deauthentication
- Association request
- Association response
- Reassociation request
- Reassociation response
- Disassociation
- Beacon
- Probe request
- Probe response
- Control frames: Control frames are responsible for ensuring a proper exchange of data between access points and wireless clients. Control frames can have the following subtypes:
- Request to Send (RTS)
- Clear to Send (CTS)
- Acknowledgement (ACK)
- Data frames: Data frames carry the actual data that is sent on the wireless network. There are no subtypes for data frames.
We will discuss the security implications of each of these frames when we discuss different attacks in later chapters.
We will now look at how to sniff these frames over a wireless network using Wireshark. There are other tools—such as Airodump-NG, Tcpdump, or Tshark—that you can use for sniffing as well. We will, however, mostly use Wireshark in this book, but we encourage you to explore other tools as well. The first step to do this is to create a monitor mode interface. This will create an interface for our adapter, which allows us to read all wireless frames in the air, regardless of whether they are destined for us or not. In the wired world, this is popularly called promiscuous mode.
- Redis Applied Design Patterns
- Go語言高效編程:原理、可觀測性與優化
- 零基礎學Java程序設計
- 運用后端技術處理業務邏輯(藍橋杯軟件大賽培訓教材-Java方向)
- Mastering Business Intelligence with MicroStrategy
- 西門子S7-200 SMART PLC編程從入門到實踐
- 一本書講透Java線程:原理與實踐
- 開源項目成功之道
- Android應用開發深入學習實錄
- RubyMotion iOS Develoment Essentials
- Getting Started with Python
- 零基礎學HTML+CSS
- C語言程序設計
- Python硬件編程實戰
- Java RESTful Web Service實戰