LinuxCommandLibrary

httpry

specialized HTTP packet sniffer

TLDR

Capture HTTP traffic

$ sudo httpry -i [eth0]
copy
Filter by port
$ sudo httpry -i [eth0] 'port 8080'
copy
Log to file
$ sudo httpry -i [eth0] -o [http.log]
copy
Read from pcap
$ httpry -r [capture.pcap]
copy
Custom output format
$ sudo httpry -i [eth0] -f [method,host,request-uri]
copy

SYNOPSIS

httpry [options] [filter]

DESCRIPTION

httpry is a specialized HTTP packet sniffer. It captures and logs HTTP request and response metadata for analysis.
The tool focuses on HTTP header parsing with customizable output. It's designed for HTTP-specific traffic analysis and logging.

PARAMETERS

FILTER

BPF filter expression.
-i INTERFACE
Network interface.
-r FILE
Read from pcap.
-o FILE
Output file.
-f FIELDS
Output fields.
-d
Daemon mode.
--help
Display help information.

CAVEATS

Requires root. HTTP only, not HTTPS. Uses libpcap.

HISTORY

httpry was developed as a lightweight HTTP-specific packet analysis tool for network monitoring.

SEE ALSO

tcpdump(1), httpflow(1), ngrep(1)

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community