OpenCTI-Platform / client-python

OpenCTI Python Client
https://www.opencti.io
Apache License 2.0
115 stars 129 forks source link

The OpenCTI client generates a urlllib3 warning for each request to OpenCTI made over HTTPS #742

Open seanthegeek opened 1 month ago

seanthegeek commented 1 month ago

Description

The OpenCTIApiClient is configured to ignore certificate verification to requests made to OpenCTI over HTTPS, which generates this warning for each request.

warnings.warn( /usr/local/lib/python3.11/site-packages/urllib3/connectionpool.py:1099: InsecureRequestWarning: Unverified HTTPS request is being made to host 'opencti.example.com'. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#tls-warnings

This causes the large Docker container logs for each connector.

To prevent this, consider using urllib3.disable_warnings()

Archidoit commented 1 week ago

Where did you set the config ssl_verify to false? For which connectors?

Archidoit commented 1 week ago

The warning logs are normal, they just warn you that you're not using any certificate.