https://github.com/ourway/ripper
Elixir library to handle tcpdump output
https://github.com/ourway/ripper
elixir-lang hex library tcpdump-capture
Last synced: 3 months ago
JSON representation
Elixir library to handle tcpdump output
- Host: GitHub
- URL: https://github.com/ourway/ripper
- Owner: ourway
- License: mit
- Created: 2018-04-13T09:41:26.000Z (about 8 years ago)
- Default Branch: dev
- Last Pushed: 2018-04-14T13:52:08.000Z (about 8 years ago)
- Last Synced: 2025-03-04T16:12:10.824Z (over 1 year ago)
- Topics: elixir-lang, hex, library, tcpdump-capture
- Language: Elixir
- Homepage: https://hex.pm/packages/ripper
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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