├── .gitignore ├── LICENSE ├── README.md ├── setup.py ├── tools ├── __init__.py ├── audit_falcon_policy.py ├── example.config └── spluruk.py └── toruk ├── __init__.py ├── sample-toruk-cfg.cfg └── toruk.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokensound77/toruk/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokensound77/toruk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokensound77/toruk/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokensound77/toruk/HEAD/setup.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/audit_falcon_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokensound77/toruk/HEAD/tools/audit_falcon_policy.py -------------------------------------------------------------------------------- /tools/example.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokensound77/toruk/HEAD/tools/example.config -------------------------------------------------------------------------------- /tools/spluruk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokensound77/toruk/HEAD/tools/spluruk.py -------------------------------------------------------------------------------- /toruk/__init__.py: -------------------------------------------------------------------------------- 1 | # MIT License 2 | # br0k3ns0und 3 | 4 | """Toruk module.""" 5 | 6 | __version__ = '0.1.6' 7 | -------------------------------------------------------------------------------- /toruk/sample-toruk-cfg.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokensound77/toruk/HEAD/toruk/sample-toruk-cfg.cfg -------------------------------------------------------------------------------- /toruk/toruk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokensound77/toruk/HEAD/toruk/toruk.py --------------------------------------------------------------------------------