Mirror of Covert Channel Application on the RWTH Aachen GitLab.

Jonas Pflanzer 5d0860152a ASCII-Art Readme пре 4 година
.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 година
cli 64bf674a00 Set Daemon file path properly for crypto tests пре 4 година
daemon 22fd34e7c6 Link to bcrypt instead of liblibbcrypt.a.a пре 4 година
gui 1fc6794af4 Move binaries in bin folder пре 4 година
libs 22fd34e7c6 Link to bcrypt instead of liblibbcrypt.a.a пре 4 година
.clang-format 9b51e01701 ColumnLimit now at 160 пре 4 година
.gitignore 7a76a90805 update gitignore to ignore build folders пре 4 година
.gitlab-ci.yml f100fe23bc US49: Hashed password on server пре 4 година
CMakeLists.txt 64bf674a00 Set Daemon file path properly for crypto tests пре 4 година
Client-Server Protocol.md a3351c8ca9 US45.2: Extendedlist (CLI) пре 4 година
Dockerfile f100fe23bc US49: Hashed password on server пре 4 година
Dockerfile.testing f100fe23bc US49: Hashed password on server пре 4 година
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 година
LICENSE b2211fe6e3 GPL License пре 4 година
README.md 5d0860152a ASCII-Art Readme пре 4 година
autoformat.sh 99263a8448 Adjust filters for passiveMode again пре 4 година

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
                      ||
               E  ----------
               o  |        |
              /|\ | Client |
               \\ |        |
                  ----------

A views the website of B on Port p and produces traffic between them. E knows that and sets up two servers. The active server is the server E 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 teh target IP on the passive side to the IP of B. The target Port in on both sides set to p. Now E connects to the active server with its client and queues a file for sending over the covert channel. The file transmission will start once A surfs on B's website again.