// Network Traffic Analysis & Wireshark
Packets don't lie. Network Traffic Analysis (NTA) is the process of capturing, inspecting, and interpreting the data that moves across a network to understand behavior, diagnose problems, and detect malicious activity — a hands-on Wireshark live demo from the UNG Cyber Unit workshop.
// Download
// Meet Wireshark
A free, open-source packet analyzer that captures traffic on a network interface and displays it in human-readable detail — live capture, opens .pcap/.pcapng files from other tools, and deep protocol dissection (HTTP, DNS, TCP, TLS, and more).
// The Challenge
Telnet (TCP port 23) sends everything — including usernames and passwords — as plain, unencrypted text over the network. It's still found on legacy devices and older lab equipment, and it's a textbook example of why NTA matters for a defender.
Viewing Cleartext Credentials in Wireshark
Reconstruct a Telnet session from the capture and read the login straight off the wire.
- Open the class capture file (
wireshark-101-class-capture.pcapng) - Filter on
tcp.port == 23to isolate the Telnet session - Right-click any packet in that conversation, then Follow → TCP Stream
- Read the reconstructed session top to bottom
- Spot the username and password sitting in plain text
// Instructor Answer Key
Answer Key (.pdf) Instructor-only — not linked or visible to students// Capture Responsibly
Only capture traffic on networks you own, or where you have explicit written authorization to test. Unauthorized packet capture can violate the Computer Fraud and Abuse Act (CFAA) and similar state laws. Club labs, personal home networks, and NCL/CTF ranges are fair game — production or public networks are not. When in doubt, ask leadership before you sniff.