elkserver/docker/redelk-base/redelkinstalldata/scripts/modules/enrich_domainscategorization/cat_ibmxforce.py [31:43]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def check_domain(self, domain):
        """Check the domain categoriation in IBM X-Force Exchange"""
        result = {
            "domain": domain,
            "categories": [],
            "status": "unknown",
            "response_code": -1,
            "extra_data": {},
        }

        self.logger.debug("Checking domain %s", domain)

        session = requests.session()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



elkserver/docker/redelk-base/redelkinstalldata/scripts/modules/enrich_domainscategorization/cat_mcafee.py [27:39]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def check_domain(self, domain):
        """Check the domain categoriation in MCAfee"""
        result = {
            "domain": domain,
            "categories": [],
            "status": "unknown",
            "response_code": -1,
            "extra_data": {},
        }

        self.logger.debug("Checking domain %s", domain)

        session = requests.session()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



