Packages

Ripper is a elixir library to monitor network activity using tcpdump. Ripper needs tcpdump to function. It's not ready to use yet

Current section

Files

Jump to
ripper README.md
Raw

README.md

# Ripper
Elixir library to handle tcpdump output
### What's Ripper?
Ripper is a simple Elixir library to log HTTP packets using tcpdump.
It's useful when you need to log your requests for forensic monitoring.
### Installation
```elixir
defp deps do
[{:ripper, "~> 0.1"}]
end
```
### Usage
```elixir
proc = Ripper.request("80", "my root password")
data = Ripper.read_pcap(proc)
```
### Author
Farsheed Ashouri / rodmena@me.com