Skip to content

A multi-threading tool to sniff TCP flow statistics and embedded HTTP headers from PCAP file. Each TCP flow carrying HTTP is exported to text file in json format.

Notifications You must be signed in to change notification settings

di3online/http-sniffer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

http-sniffer

A multi-threading tool to sniff HTTP header records beyond TCP flow statistics.

Features

  • Support both offline PCAP file and live NIC sniffing
  • Perform multi-threading process, whereby the tool gets higher performance in face of big tarffic volume
  • Export statistics of TCP flows
  • Export HTTP request/response pairs if they are present in the TCP flow
  • Support JSON format output

Dependencis

How to Use

  • Run 'scons' to compile the program

      $cd http-sniffer
      $scons
    
  • The excutive files lie in foder bin/.

Output Data Format

Each line represents a TCP flow and its HTTP messages in json format, as is encoded by JSON format which convinient for furture processing.

{ "time_local": "20120423 13:50:09", "saddr": "192.168.1.4", "daddr": "192.168.1.5", "sport": 45753, "dport": 80, "time_syn": 1335160209.417475, "time_first_byte": 1335160209.452336, "time_last_byte": 1335160209.488276, "rtt": 248, "src_packets": 4, "dst_packets": 4, "src_bytes": 521, "dst_bytes": 257, "http_pair_count": 1, "force_closed": 0, "http_pairs": [ { "request": { "time_first_byte": 1335160209.452336, "time_last_byte": 1335160209.452336, "bytes_transfered": 521, "http_version": 1, "method": 1, "host": "s1.bdstatic.com", "uri": "/r/www/img/i-1.0.0.png", "referer": "http://www.baidu.com/", "user_agent": "Mozilla/5.0", "accept": "image/png,image/;q=0.8,/;q=0.5", "accept_encoding": "gzip,deflate", "accept_language": "en-us,en;q=0.5", "accept_charset": "ISO-8859-1,utf-8;q=0.7,;q=0.7"}, "response": { "time_first_byte": 1335160209.488260, "time_last_byte": 1335160209.488260, "bytes_transfered": 257, "http_version": 1, "status": 304, "server": "JSP/1.0.18", "date": "Mon, 23 Apr 2012 06:02:23 GMT", "expires": "Tue, 29 Mar 2022 09:34:06 GMT", "etag": ""25f-4a6ebc21c42c0"", "last_modified": "Thu, 30 Jun 2011 10:56:51 GMT"} } ] }

About Author

Xiaming Chen (chenxm35@gmail.com)

SJTU, Shanghai, China

2012-04-01

About

A multi-threading tool to sniff TCP flow statistics and embedded HTTP headers from PCAP file. Each TCP flow carrying HTTP is exported to text file in json format.

Resources

Stars

Watchers

Forks

Packages

No packages published