Skip to content

Commit

Permalink
https://github.com/OpenCTI-Platform/splunk-add-on/issues/4
Browse files Browse the repository at this point in the history
  • Loading branch information
romain-filigran committed Dec 23, 2024
1 parent 7715db6 commit 4bf096b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion TA-opencti-add-on/bin/input_module_opencti_indicators.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
from stix2patterns.v21.pattern import Pattern
import six
from ta_opencti_add_on.utils import get_proxy_config
from ta_opencti_add_on.constants import VERIFY_SSL

import sys

'''
Expand Down Expand Up @@ -296,7 +298,7 @@ def collect_events(helper, ew):
"no-dependencies": "true",
"with-inferences": "true",
},
verify=True,
verify=VERIFY_SSL,
proxies=proxies
)

Expand Down
4 changes: 2 additions & 2 deletions TA-opencti-add-on/bin/ta_opencti_add_on/constants.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
CONNECTOR_ID = "a6edc906-2f9f-5fb2-a373-efac406f0ef2" # hard-coded opencti connector Identifier
CONNECTOR_ID = "a6edc906-2f9f-5fb2-a373-efac406f0ef2" # hard-coded opencti connector Identifier
CONNECTOR_NAME = "Splunk App" # hard-coded opencti connector name
VERIFY_SSL = True # SSL verification by default
VERIFY_SSL = True # SSL verification by default

0 comments on commit 4bf096b

Please sign in to comment.