├── .github └── workflows │ ├── release-latest.yml │ └── test-build-latest.yml ├── .gitignore ├── LICENSE ├── README.md ├── core ├── Dockerfile └── files │ ├── configure_misp.sh │ ├── entrypoint.sh │ ├── entrypoint_fpm.sh │ ├── entrypoint_nginx.sh │ ├── etc │ ├── misp-docker │ │ ├── critical.defaults.json │ │ ├── critical.envars.json │ │ ├── db_enable.envars.json │ │ ├── gpg.defaults.json │ │ ├── gpg.envars.json │ │ ├── initialisation.defaults.json │ │ ├── initialisation.envars.json │ │ ├── minimum_config.defaults.json │ │ ├── minimum_config.envars.json │ │ ├── optional.defaults.json │ │ ├── optional.envars.json │ │ ├── proxy.envars.json │ │ ├── s3.defaults.json │ │ └── s3.envars.json │ ├── nginx │ │ ├── includes │ │ │ └── misp │ │ └── sites-available │ │ │ ├── misp443 │ │ │ ├── misp80 │ │ │ └── php-fpm-status │ └── supervisor │ │ ├── conf.d │ │ ├── 10-supervisor.conf │ │ ├── 10-supervisor.conf.kubernetes │ │ ├── 50-workers.conf │ │ └── 50-workers.conf.kubernetes │ │ └── supervisord.conf │ ├── kubernetes │ ├── entrypoint_fpm.sh │ └── entrypoint_nginx.sh │ ├── rest_client.sh │ ├── utilities.sh │ └── var │ ├── log │ └── supervisor │ │ └── .keep │ └── www │ └── html │ └── index.php ├── docker-bake.hcl ├── docker-compose.yml ├── docs └── keycloak-integration-guide.md ├── experimental └── podman-systemd │ ├── misp-core.container │ ├── misp-core_certs.volume │ ├── misp-core_conf.volume │ ├── misp-core_files.volume │ ├── misp-core_gpg.volume │ ├── misp-core_logs.volume │ ├── misp-db.container │ ├── misp-db_data.volume │ ├── misp-mail.container │ ├── misp-modules.container │ ├── misp-redis.container │ ├── misp-redis_cache.volume │ └── misp.network ├── guard ├── Dockerfile ├── config.json └── files │ └── entrypoint.sh ├── kubernetes ├── README.md ├── instance-secrets.env ├── kustomization.yaml ├── manifests │ ├── cronjobs │ │ ├── cache-all-feeds.yaml │ │ ├── fetch-all-feeds.yaml │ │ ├── pull-all-servers.yaml │ │ ├── push-all-servers.yaml │ │ ├── update-galaxies.yaml │ │ ├── update-noticelists.yaml │ │ ├── update-taxonomies.yaml │ │ └── update-warninglists.yaml │ ├── deployment-misp.yaml │ ├── deployment-nginx.yaml │ ├── mysql.yaml │ ├── policy-example-cilium.yaml │ ├── redis.yaml │ └── services.yaml └── mysql-credentials.env ├── modules └── Dockerfile └── template.env /.github/workflows/release-latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/.github/workflows/release-latest.yml -------------------------------------------------------------------------------- /.github/workflows/test-build-latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/.github/workflows/test-build-latest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/README.md -------------------------------------------------------------------------------- /core/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/Dockerfile -------------------------------------------------------------------------------- /core/files/configure_misp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/configure_misp.sh -------------------------------------------------------------------------------- /core/files/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/entrypoint.sh -------------------------------------------------------------------------------- /core/files/entrypoint_fpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/entrypoint_fpm.sh -------------------------------------------------------------------------------- /core/files/entrypoint_nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/entrypoint_nginx.sh -------------------------------------------------------------------------------- /core/files/etc/misp-docker/critical.defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/misp-docker/critical.defaults.json -------------------------------------------------------------------------------- /core/files/etc/misp-docker/critical.envars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/misp-docker/critical.envars.json -------------------------------------------------------------------------------- /core/files/etc/misp-docker/db_enable.envars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/misp-docker/db_enable.envars.json -------------------------------------------------------------------------------- /core/files/etc/misp-docker/gpg.defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/misp-docker/gpg.defaults.json -------------------------------------------------------------------------------- /core/files/etc/misp-docker/gpg.envars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/misp-docker/gpg.envars.json -------------------------------------------------------------------------------- /core/files/etc/misp-docker/initialisation.defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/misp-docker/initialisation.defaults.json -------------------------------------------------------------------------------- /core/files/etc/misp-docker/initialisation.envars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/misp-docker/initialisation.envars.json -------------------------------------------------------------------------------- /core/files/etc/misp-docker/minimum_config.defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/misp-docker/minimum_config.defaults.json -------------------------------------------------------------------------------- /core/files/etc/misp-docker/minimum_config.envars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/misp-docker/minimum_config.envars.json -------------------------------------------------------------------------------- /core/files/etc/misp-docker/optional.defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/misp-docker/optional.defaults.json -------------------------------------------------------------------------------- /core/files/etc/misp-docker/optional.envars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/misp-docker/optional.envars.json -------------------------------------------------------------------------------- /core/files/etc/misp-docker/proxy.envars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/misp-docker/proxy.envars.json -------------------------------------------------------------------------------- /core/files/etc/misp-docker/s3.defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/misp-docker/s3.defaults.json -------------------------------------------------------------------------------- /core/files/etc/misp-docker/s3.envars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/misp-docker/s3.envars.json -------------------------------------------------------------------------------- /core/files/etc/nginx/includes/misp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/nginx/includes/misp -------------------------------------------------------------------------------- /core/files/etc/nginx/sites-available/misp443: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/nginx/sites-available/misp443 -------------------------------------------------------------------------------- /core/files/etc/nginx/sites-available/misp80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/nginx/sites-available/misp80 -------------------------------------------------------------------------------- /core/files/etc/nginx/sites-available/php-fpm-status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/nginx/sites-available/php-fpm-status -------------------------------------------------------------------------------- /core/files/etc/supervisor/conf.d/10-supervisor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/supervisor/conf.d/10-supervisor.conf -------------------------------------------------------------------------------- /core/files/etc/supervisor/conf.d/10-supervisor.conf.kubernetes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/supervisor/conf.d/10-supervisor.conf.kubernetes -------------------------------------------------------------------------------- /core/files/etc/supervisor/conf.d/50-workers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/supervisor/conf.d/50-workers.conf -------------------------------------------------------------------------------- /core/files/etc/supervisor/conf.d/50-workers.conf.kubernetes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/supervisor/conf.d/50-workers.conf.kubernetes -------------------------------------------------------------------------------- /core/files/etc/supervisor/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/etc/supervisor/supervisord.conf -------------------------------------------------------------------------------- /core/files/kubernetes/entrypoint_fpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/kubernetes/entrypoint_fpm.sh -------------------------------------------------------------------------------- /core/files/kubernetes/entrypoint_nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/kubernetes/entrypoint_nginx.sh -------------------------------------------------------------------------------- /core/files/rest_client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/rest_client.sh -------------------------------------------------------------------------------- /core/files/utilities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/utilities.sh -------------------------------------------------------------------------------- /core/files/var/log/supervisor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/files/var/www/html/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/core/files/var/www/html/index.php -------------------------------------------------------------------------------- /docker-bake.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/docker-bake.hcl -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/keycloak-integration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/docs/keycloak-integration-guide.md -------------------------------------------------------------------------------- /experimental/podman-systemd/misp-core.container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/experimental/podman-systemd/misp-core.container -------------------------------------------------------------------------------- /experimental/podman-systemd/misp-core_certs.volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/experimental/podman-systemd/misp-core_certs.volume -------------------------------------------------------------------------------- /experimental/podman-systemd/misp-core_conf.volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/experimental/podman-systemd/misp-core_conf.volume -------------------------------------------------------------------------------- /experimental/podman-systemd/misp-core_files.volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/experimental/podman-systemd/misp-core_files.volume -------------------------------------------------------------------------------- /experimental/podman-systemd/misp-core_gpg.volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/experimental/podman-systemd/misp-core_gpg.volume -------------------------------------------------------------------------------- /experimental/podman-systemd/misp-core_logs.volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/experimental/podman-systemd/misp-core_logs.volume -------------------------------------------------------------------------------- /experimental/podman-systemd/misp-db.container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/experimental/podman-systemd/misp-db.container -------------------------------------------------------------------------------- /experimental/podman-systemd/misp-db_data.volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/experimental/podman-systemd/misp-db_data.volume -------------------------------------------------------------------------------- /experimental/podman-systemd/misp-mail.container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/experimental/podman-systemd/misp-mail.container -------------------------------------------------------------------------------- /experimental/podman-systemd/misp-modules.container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/experimental/podman-systemd/misp-modules.container -------------------------------------------------------------------------------- /experimental/podman-systemd/misp-redis.container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/experimental/podman-systemd/misp-redis.container -------------------------------------------------------------------------------- /experimental/podman-systemd/misp-redis_cache.volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/experimental/podman-systemd/misp-redis_cache.volume -------------------------------------------------------------------------------- /experimental/podman-systemd/misp.network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/experimental/podman-systemd/misp.network -------------------------------------------------------------------------------- /guard/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/guard/Dockerfile -------------------------------------------------------------------------------- /guard/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/guard/config.json -------------------------------------------------------------------------------- /guard/files/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/guard/files/entrypoint.sh -------------------------------------------------------------------------------- /kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/kubernetes/README.md -------------------------------------------------------------------------------- /kubernetes/instance-secrets.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/kubernetes/instance-secrets.env -------------------------------------------------------------------------------- /kubernetes/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/kubernetes/kustomization.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/cronjobs/cache-all-feeds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/kubernetes/manifests/cronjobs/cache-all-feeds.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/cronjobs/fetch-all-feeds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/kubernetes/manifests/cronjobs/fetch-all-feeds.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/cronjobs/pull-all-servers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/kubernetes/manifests/cronjobs/pull-all-servers.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/cronjobs/push-all-servers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/kubernetes/manifests/cronjobs/push-all-servers.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/cronjobs/update-galaxies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/kubernetes/manifests/cronjobs/update-galaxies.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/cronjobs/update-noticelists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/kubernetes/manifests/cronjobs/update-noticelists.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/cronjobs/update-taxonomies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/kubernetes/manifests/cronjobs/update-taxonomies.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/cronjobs/update-warninglists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/kubernetes/manifests/cronjobs/update-warninglists.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/deployment-misp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/kubernetes/manifests/deployment-misp.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/deployment-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/kubernetes/manifests/deployment-nginx.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/kubernetes/manifests/mysql.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/policy-example-cilium.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/kubernetes/manifests/policy-example-cilium.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/kubernetes/manifests/redis.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/kubernetes/manifests/services.yaml -------------------------------------------------------------------------------- /kubernetes/mysql-credentials.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/kubernetes/mysql-credentials.env -------------------------------------------------------------------------------- /modules/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/modules/Dockerfile -------------------------------------------------------------------------------- /template.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/misp-docker/HEAD/template.env --------------------------------------------------------------------------------