Mirror of Covert Channel Application on the RWTH Aachen GitLab.

Jonas Pflanzer 39bf03b8ed Encryption README 4 vuotta sitten
.cmake_modules 5e1a4565bd rework CMakeLists into one per directory with one top-level file to build all. get boilerplate for cmdman_test up, also test for version command. 4 vuotta sitten
cli 64bf674a00 Set Daemon file path properly for crypto tests 4 vuotta sitten
daemon 22fd34e7c6 Link to bcrypt instead of liblibbcrypt.a.a 4 vuotta sitten
gui 1fc6794af4 Move binaries in bin folder 4 vuotta sitten
libs 22fd34e7c6 Link to bcrypt instead of liblibbcrypt.a.a 4 vuotta sitten
.clang-format 9b51e01701 ColumnLimit now at 160 4 vuotta sitten
.gitignore 7a76a90805 update gitignore to ignore build folders 4 vuotta sitten
.gitlab-ci.yml f100fe23bc US49: Hashed password on server 4 vuotta sitten
CMakeLists.txt 64bf674a00 Set Daemon file path properly for crypto tests 4 vuotta sitten
Client-Server Protocol.md a3351c8ca9 US45.2: Extendedlist (CLI) 4 vuotta sitten
Dockerfile f100fe23bc US49: Hashed password on server 4 vuotta sitten
Dockerfile.testing f100fe23bc US49: Hashed password on server 4 vuotta sitten
GUI-CLI Protocol.md 56ebe6309f Fix isDecryptable crashing on empty data argument, add unknown as result for bad signature or filesize, minor formatting fixes for extendedlist output in user and batchmodes 4 vuotta sitten
LICENSE b2211fe6e3 GPL License 4 vuotta sitten
README.md 39bf03b8ed Encryption README 4 vuotta sitten
autoformat.sh 99263a8448 Adjust filters for passiveMode again 4 vuotta sitten

README.md

CCats - Covert Channels are Tricky Stuff

CCats is a covert channel tool which works as man in the middle. Our motivation is to create a tool which allows you to send files over a covert channel between two controlled servers.

This repository consists of three programs: a server (daemon), a CLI-client and a GUI-client.

The server manages the uploaded files and transmits the files over the covert channel. The clients let you connect and login to the server and upload files and start file transmission over the covert channel.

The basic setup

   A           -----------------                        ------------------           B
   o  traffic  |               |                        |                |  traffic  o
  /|\ ---------| active Server | <== covert channel ==> | passive Server |--------- /|\
   \\          |               |                        |                |          //
               -----------------                        ------------------
                      ||                                       ||
               client connection                        client connection
                      ||                                       ||
               E  ----------                               ----------  F
               o  |        |                               |        |  o
              /|\ | Client |                               | Client | /|\
               \\ |        |                               |        | //
                  ----------                               ----------

E wants to send a file to F. A and E live together and B and F live together. E and F know that A will surf on B's website a lot so they decided to setup a covert channel which utilises the traffic of A and B as man in the middle. A surfs on the website of B on Port p and produces traffic between them. E and F set up the two servers. The active server is the server which will be used to send a file to the passive server. E sets the target IP on the active server side to the IP of A and F the target IP on the passive side to the IP of B. The target Port on both sides is set to p. Now the servers are forwarding A's and B's traffic and can add secret data to the traffic. E connects to the active server with his/her client and queues a file for sending over the covert channel. The file transmission will start once A surfs on B's website again. Now E and F have to wait until A produced enough traffic to transmit the file completely. After the file transmission finished F can downlod the file with his/her client.

Encryption

E and F can decide to use a common key for symmetrical encryption. Files will be encrypted on the client side so the servers cannot read the files as plain data. The covert channel does not add another encryption-layer so it's encouraged to use this feature.