Jonas Pflanzer 08aca1da2c Adding a covert channel mode 4 years ago
..
include 51fb1553ce Fix filters and minor Covert Channel bugs 4 years ago
src 51fb1553ce Fix filters and minor Covert Channel bugs 4 years ago
test 66e57a9575 Delete file on passive side if reset is invoked 4 years ago
Adding-a-Covert-Channel-Mode.md 08aca1da2c Adding a covert channel mode 4 years ago
CMakeLists.txt d8b4ccc395 Remove pkg-config from CMakeLists 4 years ago
CovertProtocol.md 788a5e0293 Protocol README 4 years ago
Daemon-Config-Reference.md 51fb1553ce Fix filters and minor Covert Channel bugs 4 years ago
README.md e057cd4b1a Maintain READMEs 4 years ago
ccats.service 356b02fb13 created deamon 4 years ago
createsslfiles.sh e2ab8c089f implement very basic ssl, todo allow server to run without ssl and get ssl fully running (broken right now, complains about no shared cipher) 4 years ago

README.md

Daemon

Build

mkdir build
cd build
cmake ..
make

Tests

To build tests just set the ENABLE_TESTS variable to true and rebuild the program.

cmake .. -DENABLE_TESTS=true
make

Run

Currently the first argument is the network interface for the sniffer.

bin/ccats lo

Tests

make test

Installation

After building the program copy executable:

sudo cp bin/ccats /usr/bin

Copy service file:

sudo cp ccats.service /etc/systemd/system/

Enable and start service with:

sudo systemctl enable ccats.service

and start it

sudo systemctl start ccats.service