An open API service indexing awesome lists of open source software.

https://github.com/kickeddroid/kronos

An auto flag submitter for HTB and note helper.
https://github.com/kickeddroid/kronos

Last synced: over 1 year ago
JSON representation

An auto flag submitter for HTB and note helper.

Awesome Lists containing this project

README

          

# Usage

Build
```
bash build.sh
```
---

Usage

```
USAGE:
kronos [OPTIONS] [ARGS]

ARGS:
Output directory[default: ./]
Session name[default: htb]

OPTIONS:
-d, --disable-auto
-h, --help Print help information
-V, --version Print version information
```

Example

Run with defaults.

```
./kronos
```

Specify output path and name of machine.

```
./kronos /path/to/outputdir example
```
Will create a file or open at `/path/to/outputdir/example_kron_history.md`

Point the output dir to your Obsian Vault and disable auto flag submission.

```
export obsidian="path/to/vault"
./kronos $obsidian example --disable-auto
```

With cargo
```
cargo run
```

With auto submission turned off
```
cargo run -- --disable-auto
```

#### config.toml

```
[htb]
api_token = "REPLACE_WITH_YOUR_API_TOKEN"
```