Httpry – HTTP logging and information retrieval tool

Sponsored Link
httpry is a tool, written in C, designed for displaying and logging HTTP traffic. It parses traffic, online and offline,in an easy to read format. Daemonization is also supported for long-term logging. Before I discovered httpry I was parsing HTTP traffic from pcaps with ngrep and lots of ugly sed and awk to make my results readable. Doing this wasn’t very pretty and tended to consume more time than I would have liked, however, with httpry none of the extra work is needed.

Install httpry on Ubuntu

Open the terminal and run the following commands

sudo apt-get install build-essential git libpcap0.8-dev

git clone https://github.com/jbittel/httpry.git

cd httpry

make

sudo make install

Using Httpry

httpry available options

1

By default httpry listens on port 80 and 8080. The BPF filter would be: ‘port (80 or 8080)’

The default output format is this:

timestamp,source-ip,dest-ip,direction,method,host,request-uri,http-version,status-code,reason-phrase

Httpry Example

httpry -i eth0 -n 3

2

Sponsored Link

You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *