analyzer-d4-pibs/README.md

32 lines
848 B
Markdown
Raw Normal View History

2019-02-01 15:34:33 +01:00
# Passive Identification of BackScatter
Read a pcap file and display potential backscatter traffic on standard output
This is very early stage and subject to change.
# Install dependencies
As there were some changes in libwiretap, at least the version 2.6.3-1 is needed.
``` shell
apt-get install libwiretap-dev
apt-get install libhiredis-dev
2019-02-01 15:40:52 +01:00
apt-get install libwsutil-dev
2019-02-01 15:34:33 +01:00
make
```
# How to use
``` shell
./pibs -r pcapfile.cap -b
2019-02-11 16:38:30 +01:00
./pibs -u e344c4fb-442e-45a6-92b9-d8e30aeef448 -z 127.0.0.1 -p 6379
Consumes the files from the worker queue and write potential backscatter on
standard output. The worker queue should include absolute filenames.
In the example the redis server server is listening on port 6379 on the interface 127.0.0.1.
The string e344c4fb-442e-45a6-92b9-d8e30aeef448 is the uuid that must be inline with the
worker.
2019-02-01 15:34:33 +01:00
```