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.
- Host: GitHub
- URL: https://github.com/kickeddroid/kronos
- Owner: KickedDroid
- Created: 2024-10-02T18:37:01.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-10-21T18:48:46.000Z (almost 2 years ago)
- Last Synced: 2025-02-08T01:34:49.016Z (over 1 year ago)
- Language: Rust
- Homepage:
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
```