Skip to main content
Version: 🚧 Unstable 🚧

Configuration

Usage: kunai config [OPTIONS]

Options:
--dump Dump a default configuration on the terminal
--list-actions List the available remediation actions supported
--list-events List available events
-h, --help Print help

By default kunai does not log all events it can monitor, so if you want to unlock the full potential of the tool, you need to configure it through a configuration file.

In order to generate a default configuration file for kunai use the following command line.

./kunai config --dump
Default configuration

Using config --dump option gives you a view on the default configuration of the tool when ran without setting -c --config option

Configuration File

# UUID identifying the host. This is auto-generated and should
# not be changed.
host_uuid: c030b40d-0eab-417b-b33a-22d952357984

# where the events should be written
output: /dev/stdout

# Optional
# specify advanced parameters regarding output
# output_setting: null

# this is the maximum number of events that can be stored in the
# buffer used by the eBPF probes. This limit might need to be increased
# if events get lost (very likely due to a high throughput).
# NB: increasing this limit also increase the memory used by kunai
max_buffered_events: 1024

# Optional
# By default kunai is single-threaded if multi-threading
# is desired specify the number of worker threads to use.
# Set to 0 to use the maximum number of CPUs
# workers: null

# Optional
# Specify the minimum length of data to trigger a send_data
# event.
# send_data_min_len: null

# Put here the path to files or directories containing
# kunai detection/filtering rules to load in the engine.
# Supported file extensions: kun, kunai, gen, gene
rules: []

# Path to files or directories containing IoCs to be loaded
# Supported file extensions: ioc
iocs: []

# Path to files or directories containing Yara rules
# Supported file extensions: yar, yara
yara: []

# file_scan event behaves exactly as any other kunai event
# meaning that to be display it may need to be filter in
# by a filtering rule. This setting makes sure every positive
# Yara file scan will be displayed.
always_show_positive_scans: true

# Whether to run kunai in hardened mode
# This mode protects kunai process from being tampered with
# This setting requires bpf to be in the list of lsm kernel
# boot parameter. Verify it by checking /sys/kernel/security/lsm
harden: false

# Events to enable / disable
events:
execve:
enable: true
execve_script:
enable: true
exit:
enable: true
exit_group:
enable: true
clone:
enable: true
prctl:
enable: true
kill:
enable: true
init_module:
enable: true
bpf_prog_load:
enable: true
bpf_socket_filter:
enable: true
mprotect_exec:
enable: true
mmap_exec:
enable: true
connect:
enable: true
dns_query:
enable: true
send_data:
enable: true
read:
enable: false
read_config:
enable: true
write:
enable: false
write_config:
enable: true
file_rename:
enable: true
file_unlink:
enable: true
write_close:
enable: false
file_scan:
enable: true
info

Enabling/disabling logs will impact the amount of logs generated and the performance of Kunai. Disabling events will decrease CPU and RAM consumed while enabling will increase those.

If you are looking for advanced log filtering please look at log filtering documentation.

Log Rotation

Log rotation is possible using the output_settings parameter in the configuration file.

host_uuid: d59a13ed-30c8-5ff6-a93f-509de2b09ae7
output: /var/log/kunai/events.log
output_settings:
# we rotate when the current log file reaches 10MB
rotate_size: 10MB
# when the total size of logs reaches 1GB we start to
# delete old files
max_size: 1GB
# other config parameters ...
danger

Log rotation will work if and only if output parameter is a file.

Advanced CLI Usage

Some of the configuration options can be set directly from CLI.

Usage: kunai [OPTIONS] [COMMAND]

Commands:
install Install Kunai on the system
run Run kunai with custom options
replay Replay logs into detection / filtering engine (useful to test rules and IoC based detection)
config Dump a default configuration
logs Easy way to show Kunai logs. This will work only with a configuration file and with an output file being configured
help Print this message or the help of the given subcommand(s)

Options:
-d, --debug Enable debugging
-s, --silent Silents out debug, info, error logging
-v, --verbose... Set verbosity level, repeat option for more verbosity
-h, --help Print help
-V, --version Print version
tips

CLI options always override configuration file options

Testing Rules / IoC Configuration

When to use replay command:

Usage: kunai replay [OPTIONS] [LOG_FILES]...

Arguments:
[LOG_FILES]...

Options:
-c, --config <FILE> Specify a configuration file to use. Command line options supersede the ones specified in the configuration file
-r, --rule-file <FILE> Detection/filtering rule file. Supersedes configuration file
-i, --ioc-file <FILE> File containing IoCs (json line)
-h, --help Print help

A typical usage of the replay command would be: ./kunai replay -i iocs.json -r rules.ioc /path/to/kunai/logs.jsonl