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

[cape-sandbox] - fix docker-compose.yml template #2356

Merged
merged 2 commits into from
Jul 16, 2024
Merged
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
3 changes: 1 addition & 2 deletions internal-enrichment/cape-sandbox/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ services:
- "CONNECTOR_NAME=CAPEv2 Sandbox"
- CONNECTOR_SCOPE=StixFile,Artifact
- CONNECTOR_AUTO=false # Enable/disable auto-enrichment of observables
- CONNECTOR_CONFIDENCE_LEVEL=50 # From 0 (Unknown) to 100 (Fully trusted)
- CONNECTOR_LOG_LEVEL=error
- CAPE_SANDBOX_API_URL=ChangeMe # https://Base_URL/apiv2
- CAPE_SANDBOX_URL=ChangeMe # https://Base_URL/apiv2
- CAPE_SANDBOX_TOKEN=ChangeMe # Change if using auth
- CAPE_SANDBOX_ROUTE=tor # Network routing, other examples include: none, internet, vpn0
- CAPE_SANDBOX_TIMEOUT=300 # Maximum amount of seconds to run the analysis for
Expand Down
2 changes: 1 addition & 1 deletion internal-enrichment/cape-sandbox/src/cape-sandbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def __init__(self):
"OPENCTI_URL", ["opencti", "url"], config
)
self.cape_api_url = get_config_variable(
"CAPE_SANDBOX_URL", ["cape_sandbox", "api_url"], config
"CAPE_SANDBOX_URL", ["cape_sandbox", "url"], config
)
self.token = get_config_variable(
"CAPE_SANDBOX_TOKEN", ["cape_sandbox", "token"], config
Expand Down
2 changes: 1 addition & 1 deletion internal-enrichment/cape-sandbox/src/config.yml.sample
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ connector:
log_level: 'info'

cape_sandbox:
api_url: 'ChangeMe' # https://Base_URL/apiv2
url: 'ChangeMe' # https://Base_URL/apiv2
token: 'ChangeMe' # Change if using auth
route: 'tor' # Network routing, other examples include: none, internet, vpn0
timeout: 300 # Maximum amount of seconds to run the analysis for
Expand Down