analyzer-d4-pibs/README.md

69 lines
2.1 KiB
Markdown
Raw Permalink Normal View History

2019-05-22 11:33:45 +02:00
# Passive Identification of BackScatter (pibs)
2019-02-01 15:34:33 +01:00
Read a pcap file and display potential backscatter traffic on standard output
This is very early stage and subject to change.
# Install dependencies
2019-05-22 11:33:45 +02:00
As there were some changes in libwiretap, at least the version 2.6.3-1 is required.
2019-02-01 15:34:33 +01:00
``` 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-03-15 15:53:42 +01:00
apt-get install libpcap-dev
apt-get install libglib2.0-dev
2019-02-01 15:34:33 +01:00
make
```
2019-05-22 11:33:45 +02:00
# How to use pibs
2019-02-01 15:34:33 +01:00
2019-05-22 11:33:45 +02:00
`./pibs -r pcapfile.cap -b`
2019-02-11 16:38:30 +01:00
2019-05-22 11:33:45 +02:00
`./pibs -u e344c4fb-442e-45a6-92b9-d8e30aeef448 -z 127.0.0.1 -p 6379 -y 2`
2019-02-11 16:38:30 +01:00
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.
2019-03-19 11:16:38 +01:00
The redis database 2 is used as specified with the -y option.
2019-02-11 16:38:30 +01:00
The string e344c4fb-442e-45a6-92b9-d8e30aeef448 is the uuid that must be inline with the
worker.
2019-03-18 16:04:54 +01:00
2019-05-22 11:33:45 +02:00
`pibs -r source.cap.gz -w backscatter.cap`
2019-03-18 16:04:54 +01:00
Read the file source.cap.gz, identify potential backscatter and store it in the
file backscatter.cap to be further analysed with other tools such as wireshark
2019-02-01 15:34:33 +01:00
2019-05-22 11:33:45 +02:00
`pibs -r pcapfile.cap -s`
2019-02-01 15:34:33 +01:00
Read the file source.cap, identify potential backscatter and display the
usage of the used internal hash table. Feature for debugging purpose.
2019-04-05 21:50:49 +02:00
2019-05-22 11:33:45 +02:00
`pibs -r pcapfile.cap -d`
2019-04-05 21:50:49 +02:00
Dump the internal data structures for debugging purposes from the processing
of the pcapfile.
2019-04-05 22:00:12 +02:00
2019-05-22 11:33:45 +02:00
`pibs -n`
2019-04-05 22:00:12 +02:00
Create fresh internal data structure as shared memory for multi processing
purposes. The segment id is displayed on standard output.
2019-04-05 22:06:31 +02:00
2019-05-22 11:33:45 +02:00
`pibs -n -i myinstance.shm`
2019-04-05 22:06:31 +02:00
Create a shared memory and store the segment identifier in the file
myinstance.shm
2019-05-22 11:33:45 +02:00
`pibs -r pcapfile.cap.gz -a -i instance.shm`
Read pcapfile.cap.gz identify potential backscatter and store it in the
shared memory segment with the identifier stored in the file instance.shm.
The previous states are taken into account.
2019-05-22 11:33:45 +02:00
`pibs -i instance.shm -a -s`
Display the usage of the internal hash table from the shared memory segment
specified in the file instance.shm. This command can be executed in parallel
while another pibs instance is filling it.