Skip to content

Latest commit

 

History

History
50 lines (46 loc) · 1.41 KB

readme.md

File metadata and controls

50 lines (46 loc) · 1.41 KB

Daemon

This is the core service of Haaukins, and handles multi-hosting and tearing down of events. Currently only one client exists for interacting with the daemon, which can be found in client directory.

Configuration

By default the daemon will look for a config.yml-file in the directory it resides, alternatively you can make it look elsewhere by specifying the -config=<path/to/config.yml> flag.

The configuration format uses YAML, and an example of a configuration can be seen below.

host:
  http: ntp-event.dk
  grpc: cli.sec-aau.dk
port:
  insecure: 8080
  secure: 8081
ova-directory: "/scratch/ova"
sign-key: ...
tls:
  enabled: true
  acme:
    email: ...
    api-key: ...
    development: false
docker-repositories:
- username: ...
  password: ...
  serveraddress: <registry URL>

Exercise configuration

The exercise.yml contains the definition of the exercise library (view structure in exercise.go). An example of an exercise definition:

exercises:
  - name: Cross-site Request Forgery
    tags:
    - csrf
    docker:
    - image: <registry host>/aau/csrf
      dns:
      - name: formalbank.com
        type: A
      memoryMB: 80
      flag:
      - tag: csrf-1
        name: Cross-site Request Forgery
        env: APP_FLAG
        points: 12