Git Product home page Git Product logo

http_replay's Introduction

HTTP Replay

This project listens on TCP port 5665 for a streamed pcap file containing HTTP requests. It minimally tries to build the packets into a request and then forwards them localhost:8081.

Expect lots of bad HTTP requests because requests that are split over multiple packets will be truncated unless the packets come in-order. This worked well enough for my testing needs.

Dependencies

gopcap

Install libpcap (tcpdump)
go get github.com/akrennmair/gopcap

Capture

on linux as root to capture port 80:
tcpdump -s 0 -w - -ieth0 "dst port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)" | tee live_dump.pcap | nc myhost 5665

The tcpdump filter above discards non-data packets. The tee command writes the pcap data to a file and may be omitted. The nc command forwards the pcap data over the network to the host running httpreplay.

Replay pcap file

nc myhost 5665 < live_dump.pcap

http_replay's People

Watchers

James Cloos avatar  avatar

Forkers

tzuryby

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.