ail-framework icon indicating copy to clipboard operation
ail-framework copied to clipboard

MISPExporter doesn't use configs

Open SegUun opened this issue 2 months ago • 1 comments

Configs from the config/keys/ are not used in the MISP exporter. Please uncomment the rows with this functionality)

            # try:
            #     from mispKEYS import misp_url, misp_key, misp_verifycert
            #     self.url = misp_url
            #     self.key = misp_key
            #     self.ssl = misp_verifycert
            #     if self.ssl is False:
            #         urllib3_disable_warnings()
            #     if self.url.endswith('/'):
            #         self.url = self.url[:-1]
            # except Exception:  # ModuleNotFoundError
            #     self.url = None
            #     self.key = None
            #     self.ssl = None

MISPExporter.py

SegUun avatar Oct 17 '25 15:10 SegUun

Hey @SegUun ! This legacy configuration is only used for the automatic tag push to AIL. (This will be moved into the UI at some point.)

Each user can configure multiple MISP API keys to export objects to MISP.
You can add or manage them in: Settings → My Profile
https://localhost:7000/settings/user/profile

Terrtia avatar Oct 20 '25 08:10 Terrtia