eric-eclecticiq
eric-eclecticiq
Yes, I can have a look. Could you please add a test for each point ?
Configuration is also taken from env var like `OPENTAXII_`. You should unset `OPENTAXII_USER` and `OPENTAXII_PASS`. Fixed by https://github.com/eclecticiq/OpenTAXII/pull/288 `OPENTAXII_AUTH_SECRET` will be renamed to `DOCKER_OPENTAXII_AUTH_SECRET` to not conflict any more.
> The modified property is only used by STIX Objects that support versioning and represents the time that this particular version of the object was last modified. https://docs.oasis-open.org/cti/stix/v2.1/os/stix-v2.1-os.html#_xzbicbtscatx > Unlike...
The `modified` field is not mandatory for non-versioned objects. What is the reason to force a value, is there anything mentioned in the stix 2.1 specs ?
> If objects are found where this property is not present, the implicit value for all STIX Objects other than SCOs is 2.0. Since SCOs are now top-level objects in...
``` def _objects_query(self, collection_id: str, ordered: bool) -> Query: query = self.db.session.query(taxii2models.STIXObject).filter( taxii2models.STIXObject.collection_id == collection_id, ) if ordered: query = query.order_by( taxii2models.STIXObject.date_added, taxii2models.STIXObject.id ) return query ``` The previous function...
> OperationalError:SSL error: decryption failed or bad record mac It seems legit: https://stackoverflow.com/questions/64995178/decryption-failed-or-bad-record-mac-in-multiprocessing A DB connection is known to not survive fork. It must be disposed before the fork and...
Could you share the gunicorn command you used ?