v2.0.4

AIPentest/CyberStrikeAIv2.0.4Jun 20, 2026by lipku

AI Summary

Introduces YAML configuration file support to allow flexible startup settings and CLI overrides.

Key Highlights

  • Added YAML config support (config.yaml.example)
  • Priority system: CLI args > YAML > argparse defaults
  • Support for multiple config files via -c flag

New Features

  • YAML configuration file support

Full Release Notes

Support yaml config  
```shell
#  Usage:
cp config.yaml.example config.yaml   # create your config
python app.py                        # start with config.yaml
python app.py -c config_prod.yaml    # use a different config file
python app.py -c ''                  # skip yaml, CLI only
#  Priority:  CLI args  >  YAML  >  argparse defaults
```