-
Notifications
You must be signed in to change notification settings - Fork 582
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
22 lines (20 loc) · 977 Bytes
/
docker-compose.yml
File metadata and controls
22 lines (20 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
services:
connector-kaspersky-enrichment:
image: opencti/connector-kaspersky-enrichment:latest
environment:
# Generic parameters (connection with OpenCTI)
- OPENCTI_URL=http://localhost
- OPENCTI_TOKEN=CHANGEME
# Common parameters for connectors of type INTERNAL_ENRICHMENT
- CONNECTOR_ID=CHANGEME
# - CONNECTOR_NAME=Kaspersky Enrichment
# - CONNECTOR_SCOPE=StixFile,IPv4-Addr # Support for additional observable types (domains, and URLs) will be added in future releases.
# - CONNECTOR_LOG_LEVEL=error
# - CONNECTOR_AUTO=true
# Connector's custom execution parameters
# - KASPERSKY_API_BASE_URL=https://tip.kaspersky.com
- KASPERSKY_API_KEY=CHANGEME
# - KASPERSKY_ZONE_OCTI_SCORE_MAPPING=red:100,orange:80,yellow:60,gray:20,green:0
# - KASPERSKY_FILE_SECTIONS=LicenseInfo,Zone,FileGeneralInfo
# - KASPERSKY_IPV4_SECTIONS=LicenseInfo,Zone,IpGeneralInfo
restart: always