Skip to content

Setting up the C2

Installation and Quick Start

To install the Client and Server docker on the same host and set everything up, simply:

wget -O - https://raw.githubusercontent.com/shell-dot/tuoni/main/scripts/setup.sh | bash
cd tuoni

Or if you prefer shorter curl:

curl https://tuoni.sh | bash
cd tuoni


CLI Autocomplete

The setup will also install shell tuoni autocomplete for bash and zsh. You need to source the autocomplete script to enable it in the setup shell:

source ~/.bashrc
or
source ~/.zshrc
depending on the shell you are using.

All the new shell sessions will have the autocomplete enabled.


After running the installation script and sourcing the relevant rc file, just execute:

tuoni start

This will start the client on port 12702 and server on port 8443 by default using snakeoil certificates. You can change the server port and certificates by editing the config/tuoni.yml file.

The client docker uses nginx docker proxy on port 12702 by default using snakeoil certificates. You can change the port and certificates by editing the docker-compose.yml file.


Configuration File Example

The default configuration file is located at config/tuoni.yml after initialization:

server:
  port: 8443 # port to listen on
  ssl:
    enabled: true # enable ssl on the server
    key-alias: selfsigned # alias of the key in the keystore
    key-store: ssl/selfsigned.keystore # path to the keystore
    key-store-type: jks # type of the keystore
    key-store-password: selfsigned # password of the keystore
    key-password: selfsigned # password of the key

tuoni: # tuoni configuration
  data-dir: ./data # directory to store data, will be mapped out from the server container
  custom-agent-template-dir: ./agent-templates # directory to store custom agent templates

  auth: # authentication configuration
    credentials: # Default credentials for the server
      username: _credentials_placeholder_username_ # username
      password: _credentials_placeholder_password_ # password
    jwt: # JWT configuration
      expiry-seconds: 86400 # expiry time of the JWT token in seconds
      private-key: file:./prod-private.pem # path to the private key
      public-key: file:./prod-public.pem # path to the public key

logging: # logging configuration
  file: # file appender configuration
    name: ./logs/tuoni-server.log # path to the log file, will be mapped out from the server container
  threshold: # threshold configuration
    console: INFO # console threshold
    file: DEBUG # file threshold
  level: # log level configuration
    com.shelldot.tuoni: debug # application log level
    root: info # root log level
  logback: # logback configuration
    rollingpolicy: # rolling policy configuration
      clean-history-on-start: true # clean history on start
      max-file-size: 10MB # max file size
      max-history: 30 # max history
      total-size-cap: 1GB # total size cap

Operating System Support

  • Works on Debian-based systems.
  • Tested on Ubuntu 22.04 and Kali 2023.4.

CLI Commands

Tuoni CLI Commands

tuoni

tuoni <start|stop|restart|logs|clean-configuration|update|update-silent|client|server>
  • Start: Starts client and server docker.
    tuoni start
    
  • Stop: Stops client and server dockers.
    tuoni stop
    
  • Restart: Restarts client and server dockers.
    tuoni restart
    
  • Logs: Tails client and server dockers logs.
    tuoni logs
    
  • Clean Configuration: Prompts which configuration files to remove and resets them to default.
    tuoni clean-configuration
    
  • Update: Perform git and docker pull.
    tuoni update
    
  • Update Silent: Perform git and docker pull silently.
    tuoni update-silent
    

Tuoni Server CLI Commands

tuoni server

tuoni server <start|stop|restart|logs>
  • Start: Starts server docker.
    tuoni server start
    
  • Stop: Stops server docker.
    tuoni server stop
    
  • Restart: Restarts server docker.
    tuoni server restart
    
  • Logs: Tails the server docker logs.
    tuoni server logs
    

Tuoni Client CLI Commands

tuoni client

tuoni client <start|stop|restart|logs>
  • Start: Starts client dockers.
    tuoni client start
    
  • Stop: Stops client dockers.
    tuoni client stop
    
  • Restart: Restarts client dockers.
    tuoni client restart
    
  • Logs: Tails the client docker logs.
    tuoni client logs
    

Tuoni Client CLI Commands

tuoni docs

tuoni docs <start|stop|restart|logs>
  • Start: Starts docs dockers.
    tuoni docs start
    
  • Stop: Stops docs dockers.
    tuoni docs stop
    
  • Restart: Restarts docs dockers.
    tuoni docs restart
    
  • Logs: Tails the docs docker logs.
    tuoni docs logs