Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include Scanner Type Configs in Build #183

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ __pycache__/

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
Expand Down
14 changes: 14 additions & 0 deletions build/configs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
This configs folder contains configs which are built into images. The contents may appear similar to `strelka/configs`
but that folder is left as is to cleanly receive/make updates from/to the upstream. These configs use a slightly
different structure than the upstream in order to disconnect rules/scan configurations from runtime configurations
(those will still be injected by the runner).

Some of this content also appears similar to content in `strelka/misc/kubernets` -- that folder is example K8S manifests
and includes inlined configuration (which currently differs slightly from other example configurations).

To use these:
* Change scanners in the main backend config to `scanners: '/strelka/config/scanners.yaml'` (instead of a list of objs)
* Any scanner which supports the passwords file:
* `password_file: '/strelka/config/passwords.dat' `
* Change `tasting` in main backend config to `yara_rules: '/etc/strelka/taste/'`

Loading