Capturing Plaintext Traffic on Open Networks
Open wireless networks transmit all data frames without encryption. Any adapter in monitor mode on the same channel receives every frame from every client without any decryption step. This includes HTTP requests and responses, DNS queries, unencrypted application protocols, and any credentials submitted over plaintext connections. The capture is entirely passive and produces no traffic on the network.
Confirm the target network is open before proceeding. See the open network detection page if needed.
Capture All Traffic on the Target Channel
Lock to the target AP channel and write a capture file:
Let this run for at least several minutes on an active network. The #Data counter in airodump-ng shows how many data frames have been captured. A low count means few clients or low activity — wait longer or return during peak usage hours.
Open the Capture in Wireshark
Filter for HTTP traffic to find plaintext web requests:
http
Filter for HTTP POST requests which commonly carry login form submissions:
http.request.method == "POST"
Follow a TCP stream from any HTTP frame to read the full request and response including any form data: right-click a packet and select Follow > TCP Stream.
Extract Credentials with tshark
Search the capture for HTTP basic authentication headers:
Extract all HTTP POST request bodies:
Extract all DNS queries to map what services clients are using:
Extract HTTP Cookies
Session cookies transmitted over HTTP allow session hijacking without needing the original credentials:
Capture Live with tshark Directly
For real-time extraction without saving to file first:
Decrypt Frames with airdecap-ng
For open networks with no encryption, airdecap-ng strips the 802.11 headers and produces a standard pcap that any tool can read without needing 802.11 awareness:
Total number of packets read 4821 Total number of packets written 3204
This produces open-capture-01-dec.cap containing only the decapsulated Layer 3 and above frames. Feed this into any standard network analysis tool that does not understand 802.11 encapsulation.
References
-
Wireshark — HTTP display filter referencewww.wireshark.org/docs/dfref/h/http.html (opens in new tab)
HTTP field names for credential and cookie extraction
-
Aircrack-ng — airdecap-ng documentationwww.aircrack-ng.org/doku.php?id=airdecap-ng (opens in new tab)
Stripping 802.11 headers from open and encrypted captures
Was this helpful?
Your feedback helps improve this page.