HTTP
Quick HTTP inspection and packet pivots.
curl -sS -I https://example.com/
Follow redirects
curl -sS -L -D - -o /dev/null https://example.com/
Show HTTP requests in a PCAP
tshark -r capture.pcap -Y http.request
Extract HTTP host and URI fields
tshark -r capture.pcap -Y http.request -T fields -e ip.src -e http.host -e http.request.uri