2021-08-05 11:32:28 +02:00
|
|
|
__version__ = '2.4.148'
|
2017-11-08 03:10:04 +01:00
|
|
|
import logging
|
2021-02-15 16:12:38 +01:00
|
|
|
import sys
|
|
|
|
import warnings
|
2017-12-22 14:49:14 +01:00
|
|
|
|
2018-01-22 16:42:43 +01:00
|
|
|
logger = logging.getLogger(__name__)
|
2015-09-18 12:03:56 +02:00
|
|
|
|
2017-12-22 14:49:14 +01:00
|
|
|
|
2021-02-15 16:12:38 +01:00
|
|
|
def warning_2022():
|
|
|
|
if sys.version_info < (3, 8):
|
|
|
|
warnings.warn("""
|
|
|
|
As our baseline system is the latest Ubuntu LTS, and Ubuntu LTS 20.04 has Python 3.8 available,
|
|
|
|
we will officially deprecate python versions below 3.8 on January 1st 2022.
|
|
|
|
**Please update your codebase.**""", DeprecationWarning, stacklevel=3)
|
|
|
|
|
|
|
|
|
2019-12-18 14:45:14 +01:00
|
|
|
everything_broken = '''Unknown error: the response is not in JSON.
|
|
|
|
Something is broken server-side, please send us everything that follows (careful with the auth key):
|
|
|
|
Request headers:
|
|
|
|
{}
|
|
|
|
Request body:
|
|
|
|
{}
|
|
|
|
Response (if any):
|
|
|
|
{}'''
|
2017-12-22 14:49:14 +01:00
|
|
|
|
|
|
|
|
2017-08-25 16:08:05 +02:00
|
|
|
try:
|
2021-02-15 16:12:38 +01:00
|
|
|
warning_2022()
|
2018-12-18 11:04:36 +01:00
|
|
|
from .exceptions import PyMISPError, NewEventError, NewAttributeError, MissingDependency, NoURL, NoKey, InvalidMISPObject, UnknownMISPObjectTemplate, PyMISPInvalidFormat, MISPServerError, PyMISPNotImplementedYet, PyMISPUnexpectedResponse, PyMISPEmptyResponse # noqa
|
2019-10-09 16:07:40 +02:00
|
|
|
from .abstract import AbstractMISP, MISPEncode, pymisp_json_default, MISPTag, Distribution, ThreatLevel, Analysis # noqa
|
2021-04-22 10:47:51 +02:00
|
|
|
from .mispevent import (MISPEvent, MISPAttribute, MISPObjectReference, MISPObjectAttribute, MISPObject, MISPUser, # noqa
|
|
|
|
MISPOrganisation, MISPSighting, MISPLog, MISPShadowAttribute, MISPWarninglist, MISPTaxonomy,
|
|
|
|
MISPNoticelist, MISPObjectTemplate, MISPSharingGroup, MISPRole, MISPServer, MISPFeed,
|
|
|
|
MISPEventDelegation, MISPUserSetting, MISPInbox, MISPEventBlocklist, MISPOrganisationBlocklist,
|
|
|
|
MISPEventReport, MISPGalaxyCluster, MISPGalaxyClusterElement, MISPGalaxyClusterRelation,
|
|
|
|
MISPCorrelationExclusion)
|
2017-09-12 16:46:06 +02:00
|
|
|
from .tools import AbstractMISPObjectGenerator # noqa
|
2017-08-28 19:01:53 +02:00
|
|
|
from .tools import Neo4j # noqa
|
2021-06-23 12:18:46 +02:00
|
|
|
from .tools import stix # noqa
|
2017-09-20 12:24:51 +02:00
|
|
|
from .tools import openioc # noqa
|
2018-01-26 17:02:47 +01:00
|
|
|
from .tools import ext_lookups # noqa
|
2020-09-10 15:26:34 +02:00
|
|
|
from .tools import update_objects # noqa
|
2019-02-28 06:16:49 +01:00
|
|
|
|
2020-05-07 12:17:31 +02:00
|
|
|
from .api import PyMISP, register_user # noqa
|
2019-12-18 14:45:14 +01:00
|
|
|
from .api import PyMISP as ExpandedPyMISP # noqa
|
|
|
|
from .tools import load_warninglists # noqa
|
|
|
|
# Let's not bother with old python
|
|
|
|
try:
|
|
|
|
from .tools import reportlab_generator # noqa
|
|
|
|
except ImportError:
|
|
|
|
# FIXME: The import should not raise an exception if reportlab isn't installed
|
|
|
|
pass
|
|
|
|
except NameError:
|
|
|
|
# FIXME: The import should not raise an exception if reportlab isn't installed
|
|
|
|
pass
|
2017-11-08 03:10:04 +01:00
|
|
|
logger.debug('pymisp loaded properly')
|
|
|
|
except ImportError as e:
|
|
|
|
logger.warning('Unable to load pymisp properly: {}'.format(e))
|