HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

httpry — A lightweight packet sniffer for displaying and logging HTTP traffic. It can be run in real-time dis

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandsnifferlightweightclihttpryfordisplayingpacket

Problem

How to use the httpry command: A lightweight packet sniffer for displaying and logging HTTP traffic. It can be run in real-time displaying the traffic as it is parsed, or as a daemon process that logs to an output file. More information: <https://dumpsterventures.com/jason/httpry/>.

Solution

httpry — A lightweight packet sniffer for displaying and logging HTTP traffic. It can be run in real-time displaying the traffic as it is parsed, or as a daemon process that logs to an output file. More information: <https://dumpsterventures.com/jason/httpry/>.

Save output to a file:
httpry -o {{path/to/file.log}}


Listen on a specific interface and save output to a binary PCAP format file:
httpry {{eth0}} -b {{path/to/file.pcap}}


Filter output by a comma-separated list of HTTP verbs:
httpry -m {{get|post|put|head|options|delete|trace|connect|patch}}


Read from an input capture file and filter by IP:
httpry -r {{path/to/file.log}} '{{host 192.168.5.25}}'


Run as daemon process:
httpry -d -o {{path/to/file.log}}

Code Snippets

Save output to a file

httpry -o {{path/to/file.log}}

Listen on a specific interface and save output to a binary PCAP format file

httpry {{eth0}} -b {{path/to/file.pcap}}

Filter output by a comma-separated list of HTTP verbs

httpry -m {{get|post|put|head|options|delete|trace|connect|patch}}

Read from an input capture file and filter by IP

httpry -r {{path/to/file.log}} '{{host 192.168.5.25}}'

Run as daemon process

httpry -d -o {{path/to/file.log}}

Context

tldr-pages: common/httpry

Revisions (0)

No revisions yet.