├── .editorconfig ├── .eslintrc.json ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── compatibility_request.md │ ├── feature_request.md │ ├── new_release.md │ ├── objective_delivery.md │ ├── regression_testing.md │ └── revision-manual_test.md ├── actions │ └── comment-test-coverage │ │ ├── README.md │ │ ├── action.yml │ │ ├── dist │ │ └── index.js │ │ ├── index.js │ │ ├── index.js.FOR-COMMITS │ │ ├── package-lock.json │ │ ├── package.json │ │ └── test │ │ └── _stubs │ │ └── coverage-summary-100-pct.json ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── 4_builderpackage_plugins.yml │ ├── 4_builderprecompiled_base-dev-environment.yml │ ├── 4_bumper_repository.yml │ ├── 4_codelinter_prettier.yml │ ├── 4_testunit_dev_sh.yml │ ├── 4_testunit_jest.yml │ ├── 5_builderpackage_plugins.yml │ ├── 5_builderprecompiled_base-dev-environment.yml │ ├── 5_bumper_repository.yml │ ├── 5_codelinter_prettier.yml │ ├── 5_testunit_dev_sh.yml │ ├── 5_testunit_jest.yml │ ├── 6_builderpackage_plugins.yml │ ├── 6_builderprecompiled_base-dev-environment.yml │ ├── 6_builderprecompiled_playground.yml │ ├── 6_bumper_repository.yml │ ├── 6_documentation_deploy-to-gh-pages.yml │ ├── 6_testunit_jest.yml │ ├── backport.yml │ ├── build.yml │ ├── codeql.yml │ ├── cypress-basic.yml │ ├── cypress-odfe.yml │ ├── cypress-wzd.yml │ ├── cypress-xpack.yml │ ├── dependency-review.yml │ ├── deploy-docs.yml │ ├── dev-environment.yml │ ├── eslint.yml │ ├── manual-build.yml │ ├── playground.yml │ └── wazuh-build-push-docker-action.yml ├── .gitignore ├── .nvmrc ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── .yarnignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── RELEASING.md ├── SECURITY.md ├── STYLEGUIDE.md ├── VERSION.json ├── docker ├── .gitignore ├── README.md ├── cache │ └── docker-compose.yml ├── images │ ├── cpp-gcc-9.4.Dockerfile │ ├── kbn-7.10.2-dev.Dockerfile │ ├── kbn-7.16.0-dev.Dockerfile │ ├── kbn-7.16.1-dev.Dockerfile │ ├── kbn-7.16.2-dev.Dockerfile │ ├── kbn-7.16.3-dev.Dockerfile │ ├── kbn-7.17.0-dev.Dockerfile │ ├── kbn-7.17.1-dev.Dockerfile │ ├── kbn-7.17.11-dev.Dockerfile │ ├── kbn-7.17.12-dev.Dockerfile │ ├── kbn-7.17.13-dev.Dockerfile │ ├── kbn-7.17.2-dev.Dockerfile │ ├── kbn-7.17.3-dev.Dockerfile │ ├── kbn-7.17.4-dev.Dockerfile │ ├── kbn-7.17.5-dev.Dockerfile │ ├── kbn-7.17.6-dev.Dockerfile │ ├── kbn-7.17.7-dev.Dockerfile │ ├── kbn-8.0.0-dev.Dockerfile │ ├── kbn-8.0.1-dev.Dockerfile │ ├── kbn-8.1.0-dev.Dockerfile │ ├── kbn-8.1.1-dev.Dockerfile │ ├── kbn-8.1.2-dev.Dockerfile │ ├── kbn-8.1.3-dev.Dockerfile │ ├── kbn-8.2-dev.Dockerfile │ ├── kbn-8.2.0-dev.Dockerfile │ ├── kbn-8.2.1-dev.Dockerfile │ ├── kbn-8.2.3-dev.Dockerfile │ ├── kbn-8.3.0-dev.Dockerfile │ ├── kbn-8.3.1-dev.Dockerfile │ ├── kbn-8.3.3-dev.Dockerfile │ ├── kbn-8.4.2-dev.Dockerfile │ ├── kbn-8.4.3-dev.Dockerfile │ ├── kbn-8.5.0-dev.Dockerfile │ ├── kbn-dev.Dockerfile │ ├── osd-2.4.0-dev.Dockerfile │ ├── osd-2.4.1-dev.Dockerfile │ ├── osd-dev.Dockerfile │ └── wzd-dev.Dockerfile ├── imposter │ ├── agents │ │ ├── agent │ │ │ ├── agent-active-groups.json │ │ │ ├── agent-disconnected.json │ │ │ ├── agent-macos.json │ │ │ ├── agent-manager.json │ │ │ ├── agent-never-connected.json │ │ │ ├── agent-pending.json │ │ │ ├── agent-windows.json │ │ │ ├── agent.json │ │ │ └── agents.json │ │ ├── agent_distinct.js │ │ ├── agents-configuration.js │ │ ├── agents.js │ │ ├── configuration.js │ │ ├── configuration │ │ │ ├── agent-buffer.json │ │ │ ├── agent-client.json │ │ │ ├── agent-labels.json │ │ │ ├── agent_labels.json │ │ │ ├── auth-auth.json │ │ │ ├── com-active-response.json │ │ │ ├── default.json │ │ │ ├── logcollector-localfile.json │ │ │ ├── logcollector-socket.json │ │ │ ├── request-remote.json │ │ │ ├── syscheck-rootcheck.json │ │ │ ├── syscheck-syscheck.json │ │ │ └── wmodules-wmodules.json │ │ ├── group.json │ │ ├── group_files.js │ │ ├── group_files_default.json │ │ ├── group_files_raw.xml │ │ └── summary_status.json │ ├── api-info │ │ └── api_info.json │ ├── cluster │ │ ├── cluster-logs.js │ │ ├── cluster-node-info.js │ │ ├── cluster_logs.json │ │ ├── cluster_no_logs.json │ │ ├── cluster_node_info_no_restart.json │ │ ├── cluster_restart.js │ │ ├── cluster_restart.json │ │ ├── cluster_status.json │ │ ├── cluster_sync.js │ │ ├── cluster_sync.json │ │ ├── cluster_sync_no_sync.json │ │ ├── component_configuration.js │ │ ├── configuration │ │ │ ├── agent_labels.json │ │ │ ├── analysis_active_response.json │ │ │ ├── analysis_alerts.json │ │ │ ├── analysis_command.json │ │ │ ├── analysis_global.json │ │ │ ├── analysis_labels.json │ │ │ ├── auth_auth.json │ │ │ ├── com_cluster.json │ │ │ ├── com_logging.json │ │ │ ├── logcollector_localfile.json │ │ │ ├── logcollector_socket.json │ │ │ ├── request_remote.json │ │ │ ├── syscheck_rootcheck.json │ │ │ ├── syscheck_syscheck.json │ │ │ └── wmodules_wmodules.json │ │ ├── configuration_node.txt │ │ ├── error.json │ │ └── node │ │ │ ├── response-with-everything.json │ │ │ └── select-name.json │ ├── decoders │ │ └── get_decoders_raw.txt │ ├── errors │ │ └── internal_server_error.json │ ├── initial_data.json │ ├── lists │ │ └── get_list_raw.txt │ ├── manager │ │ ├── configuration.js │ │ ├── configuration │ │ │ ├── agent_labels.json │ │ │ ├── default.json │ │ │ └── wmodules_wmodules.json │ │ └── info.json │ ├── overview │ │ └── agents.json │ ├── rules │ │ ├── get_rule_raw.txt │ │ ├── get_rules.json │ │ ├── rules.js │ │ └── rules.json │ ├── sca │ │ ├── policy-checks.js │ │ ├── policy_checks.json │ │ ├── policy_checks_failed.json │ │ ├── policy_checks_not_applicable.json │ │ └── policy_checks_passed.json │ ├── security │ │ ├── login.js │ │ ├── policies │ │ │ ├── delete-policies.js │ │ │ ├── get-policies-after-delete.json │ │ │ ├── get-policies.js │ │ │ └── get-policies.json │ │ ├── roles-mapping │ │ │ ├── delete-rules.js │ │ │ ├── get-rules-after-delete.json │ │ │ ├── get-rules.js │ │ │ └── get-rules.json │ │ ├── roles │ │ │ ├── delete-roles.js │ │ │ ├── get-roles-after-delete.json │ │ │ ├── get-roles.js │ │ │ └── get-roles.json │ │ ├── security-actions.json │ │ ├── security-me-policies.js │ │ ├── security-policies.json │ │ ├── security-roles.json │ │ ├── security-rules.json │ │ ├── users.json │ │ └── users │ │ │ ├── delete-user.js │ │ │ ├── get-users-after-delete.json │ │ │ ├── get-users.js │ │ │ └── get-users.json │ ├── syscheck │ │ └── get-agent.js │ ├── syscollector │ │ ├── netaddr.js │ │ ├── ports.js │ │ └── ports │ │ │ └── ports.json │ ├── tasks │ │ ├── empty.json │ │ ├── status.js │ │ ├── status_done.json │ │ ├── status_failed.json │ │ ├── status_in_progress_1.json │ │ └── status_in_progress_2.json │ ├── vulnerability │ │ ├── default_last_scan.json │ │ ├── last_scan.json │ │ ├── vulnerabilities.json │ │ ├── vulnerabilities_summary.js │ │ ├── vulnerabilities_summary_cve.json │ │ ├── vulnerabilities_summary_cvss2_score.json │ │ ├── vulnerabilities_summary_cvss3_score.json │ │ ├── vulnerabilities_summary_name.json │ │ ├── vulnerabilities_summary_severity.json │ │ └── vulnerabilities_summary_version.json │ └── wazuh-config.yml ├── kbn-dev │ ├── README.md │ ├── config │ │ ├── filebeat │ │ │ └── filebeat.yml │ │ ├── kibana │ │ │ ├── kibana.yml │ │ │ └── wazuh.yml │ │ └── setup_permissions.sh │ ├── dev.sh │ └── dev.yml ├── mon │ ├── config │ │ ├── grafana │ │ │ └── provisioning │ │ │ │ ├── dashboards │ │ │ │ ├── dashboard.yml │ │ │ │ ├── docker-cadvisor_rev5.json │ │ │ │ ├── elasticsearch_exporter_rev1.json │ │ │ │ └── imposter_rev1.json │ │ │ │ └── datasources │ │ │ │ └── automatic.yml │ │ ├── loki │ │ │ ├── loki-config.yaml │ │ │ └── promtail-config.yaml │ │ └── prometheus │ │ │ ├── prometheus.yml │ │ │ └── targets │ │ │ ├── elastic-targets.yml │ │ │ └── imposter-targets.yml │ └── docker-compose.yml ├── osd-dev │ ├── .gitignore │ ├── README.md │ ├── agents │ │ └── .gitkeep │ ├── config │ │ ├── 1.x │ │ │ ├── certs │ │ │ │ ├── ca.json │ │ │ │ ├── cfssl.json │ │ │ │ └── host.json │ │ │ ├── filebeat │ │ │ │ └── filebeat.yml │ │ │ ├── os │ │ │ │ ├── config-saml.yml │ │ │ │ ├── config.yml │ │ │ │ ├── internal_users.yml │ │ │ │ ├── opensearch.yml │ │ │ │ ├── roles.yml │ │ │ │ └── roles_mapping.yml │ │ │ ├── osd │ │ │ │ ├── opensearch_dashboards.yml │ │ │ │ ├── opensearch_dashboards_saml.yml │ │ │ │ └── wazuh.yml │ │ │ └── wm │ │ │ │ └── wazuh_manager.conf │ │ ├── 2.x │ │ │ ├── certs │ │ │ │ ├── ca.json │ │ │ │ ├── cfssl.json │ │ │ │ └── host.json │ │ │ ├── filebeat │ │ │ │ └── filebeat.yml │ │ │ ├── os │ │ │ │ ├── config-saml.yml │ │ │ │ ├── config.yml │ │ │ │ ├── internal_users.yml │ │ │ │ ├── opensearch.yml │ │ │ │ ├── roles.yml │ │ │ │ └── roles_mapping.yml │ │ │ ├── osd │ │ │ │ ├── opensearch_dashboards.yml │ │ │ │ ├── opensearch_dashboards_saml.yml │ │ │ │ └── wazuh.yml │ │ │ └── wm │ │ │ │ └── wazuh_manager.conf │ │ └── enable_saml.sh │ ├── dashboard-src │ │ └── entrypoint.sh │ ├── dev.sh │ ├── dev.yml │ ├── indexer │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── entrypoint.sh │ │ └── installer.sh │ ├── manager │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── entrypoint.sh │ │ └── installer.sh │ └── scripts │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── __mocks__ │ │ └── mockLogger.ts │ │ ├── __tests__ │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── container-entrypoint.sh │ │ ├── dev.autodetect.test.ts │ │ ├── dev.base.autodiscovery.fail.test.ts │ │ ├── dev.base.external.test.ts │ │ ├── dev.base.security.invalidSubfolder.test.ts │ │ ├── dev.base.security.override.test.ts │ │ ├── dev.base.test.ts │ │ ├── dev.external.multiple.test.ts │ │ ├── dev.external.shorthand.test.ts │ │ ├── dev.external.test.ts │ │ ├── dev.external.trailing-slash.test.ts │ │ ├── dev.sh-compat.test.ts │ │ ├── dev.validation.test.ts │ │ ├── fixtures │ │ │ ├── override_base.yml │ │ │ ├── override_base_external.yml │ │ │ ├── override_external_multiple.yml │ │ │ ├── override_external_shorthand.yml │ │ │ ├── override_external_single.yml │ │ │ └── override_external_trailing_slash.yml │ │ ├── helpers │ │ │ ├── README.md │ │ │ ├── setupTests.ts │ │ │ └── stubRunner.ts │ │ ├── jest.config.js │ │ ├── run-tests.sh │ │ ├── test.yml │ │ └── tsconfig.json │ │ ├── dev-ts.yml │ │ ├── dev.ts │ │ ├── package.json │ │ ├── src │ │ ├── app │ │ │ ├── main.int.test.ts │ │ │ └── main.ts │ │ ├── constants │ │ │ ├── app.ts │ │ │ ├── messages.ts │ │ │ └── paths.ts │ │ ├── errors │ │ │ └── index.ts │ │ ├── services │ │ │ ├── argumentParser.combinatorial.test.ts │ │ │ ├── argumentParser.test.ts │ │ │ ├── argumentParser.ts │ │ │ ├── composeOverrideGenerator.ts │ │ │ ├── dockerComposeRunner.ts │ │ │ ├── environmentConfigurator.test.ts │ │ │ ├── environmentConfigurator.ts │ │ │ ├── repoResolver.test.ts │ │ │ ├── repoResolver.ts │ │ │ ├── versionService.test.ts │ │ │ └── versionService.ts │ │ ├── types │ │ │ ├── config.ts │ │ │ └── deps.ts │ │ └── utils │ │ │ ├── __mocks__ │ │ │ └── io.ts │ │ │ ├── envUtils.test.ts │ │ │ ├── envUtils.ts │ │ │ ├── io.test.ts │ │ │ ├── io.ts │ │ │ ├── logger.ts │ │ │ ├── pathUtils.test.ts │ │ │ └── pathUtils.ts │ │ └── tsconfig.json ├── runner │ └── docker-compose.yml ├── scripts │ └── create_docker_networks.sh ├── wazuh-4.2-es │ ├── README.md │ ├── config │ │ ├── certs.yml │ │ ├── filebeat │ │ │ └── filebeat.yml │ │ ├── imposter │ │ │ ├── api_info.json │ │ │ ├── login.js │ │ │ └── wazuh-config.yml │ │ ├── kibana │ │ │ └── wazuh.yml │ │ ├── setup_permissions.sh │ │ └── wazuh_cluster │ │ │ └── wazuh_manager.conf │ ├── pre.sh │ ├── pre.yml │ ├── rel.sh │ └── rel.yml ├── wazuh-4.3-odfe │ ├── README.md │ ├── config │ │ ├── certs │ │ │ ├── ca.json │ │ │ ├── cfssl.json │ │ │ └── host.json │ │ ├── elasticsearch │ │ │ ├── config.yml │ │ │ ├── elasticsearch.yml │ │ │ ├── internal_users.yml │ │ │ ├── roles.yml │ │ │ └── roles_mapping.yml │ │ └── kibana │ │ │ ├── kibana.yml │ │ │ ├── kibana_saml.yml │ │ │ └── wazuh.yml │ ├── enable_saml.sh │ ├── rel.sh │ └── rel.yml ├── wazuh-4.3-wz │ ├── README.md │ ├── config │ │ ├── certs │ │ │ ├── ca.json │ │ │ ├── cfssl.json │ │ │ └── host.json │ │ ├── filebeat │ │ │ └── filebeat.yml │ │ ├── imposter │ │ │ ├── api_info.json │ │ │ ├── login.js │ │ │ └── wazuh-config.yml │ │ ├── wazuh_cluster │ │ │ └── wazuh_manager.conf │ │ ├── wazuh_dashboard │ │ │ ├── wazuh.yml │ │ │ ├── wazuh_dashboard.yml │ │ │ └── wazuh_dashboard_saml.yml │ │ └── wazuh_indexer │ │ │ ├── config-saml.yml │ │ │ ├── config.yml │ │ │ ├── internal_users.yml │ │ │ ├── roles.yml │ │ │ ├── roles_mapping.yml │ │ │ └── wazuh.indexer.yml │ ├── enable_saml.sh │ ├── pre.sh │ ├── pre.yml │ ├── rel.sh │ └── rel.yml ├── wazuh-4.4-wz │ ├── README.md │ ├── config │ │ ├── certs │ │ │ ├── ca.json │ │ │ ├── cfssl.json │ │ │ └── host.json │ │ ├── filebeat │ │ │ └── filebeat.yml │ │ ├── imposter │ │ │ ├── api_info.json │ │ │ ├── login.js │ │ │ └── wazuh-config.yml │ │ ├── wazuh_cluster │ │ │ └── wazuh_manager.conf │ │ ├── wazuh_dashboard │ │ │ ├── wazuh.yml │ │ │ ├── wazuh_dashboard.yml │ │ │ └── wazuh_dashboard_saml.yml │ │ └── wazuh_indexer │ │ │ ├── config-saml.yml │ │ │ ├── config.yml │ │ │ ├── internal_users.yml │ │ │ ├── opensearch.yml │ │ │ ├── roles.yml │ │ │ ├── roles_mapping.yml │ │ │ └── wazuh.indexer.yml │ ├── enable_saml.sh │ ├── pre.sh │ ├── pre.yml │ ├── rel.sh │ └── rel.yml ├── wazuh-4.5-wz │ ├── README.md │ ├── config │ │ ├── certs │ │ │ ├── ca.json │ │ │ ├── cfssl.json │ │ │ └── host.json │ │ ├── filebeat │ │ │ └── filebeat.yml │ │ ├── imposter │ │ │ ├── api_info.json │ │ │ ├── login.js │ │ │ └── wazuh-config.yml │ │ ├── wazuh_cluster │ │ │ └── wazuh_manager.conf │ │ ├── wazuh_dashboard │ │ │ ├── wazuh.yml │ │ │ ├── wazuh_dashboard.yml │ │ │ └── wazuh_dashboard_saml.yml │ │ └── wazuh_indexer │ │ │ ├── config-saml.yml │ │ │ ├── config.yml │ │ │ ├── internal_users.yml │ │ │ ├── opensearch.yml │ │ │ ├── roles.yml │ │ │ ├── roles_mapping.yml │ │ │ └── wazuh.indexer.yml │ ├── enable_saml.sh │ ├── pre.sh │ ├── pre.yml │ ├── rel.sh │ └── rel.yml ├── wazuh-4.6 │ ├── README.md │ ├── config │ │ ├── certs │ │ │ ├── ca.json │ │ │ ├── cfssl.json │ │ │ └── host.json │ │ ├── filebeat │ │ │ └── filebeat.yml │ │ ├── imposter │ │ │ ├── api_info.json │ │ │ ├── login.js │ │ │ └── wazuh-config.yml │ │ ├── wazuh_cluster │ │ │ └── wazuh_manager.conf │ │ ├── wazuh_dashboard │ │ │ ├── wazuh.yml │ │ │ ├── wazuh_dashboard.yml │ │ │ └── wazuh_dashboard_saml.yml │ │ └── wazuh_indexer │ │ │ ├── config-saml.yml │ │ │ ├── config.yml │ │ │ ├── internal_users.yml │ │ │ ├── opensearch.yml │ │ │ ├── roles.yml │ │ │ ├── roles_mapping.yml │ │ │ └── wazuh.indexer.yml │ ├── enable_saml.sh │ ├── pre.sh │ ├── pre.yml │ ├── rel.sh │ └── rel.yml ├── wazuh-4.7 │ ├── README.md │ ├── config │ │ ├── certs │ │ │ ├── ca.json │ │ │ ├── cfssl.json │ │ │ └── host.json │ │ ├── filebeat │ │ │ └── filebeat.yml │ │ ├── imposter │ │ │ ├── api_info.json │ │ │ ├── login.js │ │ │ └── wazuh-config.yml │ │ ├── wazuh_cluster │ │ │ └── wazuh_manager.conf │ │ ├── wazuh_dashboard │ │ │ ├── wazuh.yml │ │ │ ├── wazuh_dashboard.yml │ │ │ └── wazuh_dashboard_saml.yml │ │ └── wazuh_indexer │ │ │ ├── config-saml.yml │ │ │ ├── config.yml │ │ │ ├── internal_users.yml │ │ │ ├── opensearch.yml │ │ │ ├── roles.yml │ │ │ ├── roles_mapping.yml │ │ │ └── wazuh.indexer.yml │ ├── enable_saml.sh │ ├── pre.sh │ ├── pre.yml │ ├── rel.sh │ └── rel.yml └── wazuh-4.x-es │ ├── README.md │ ├── config │ ├── certs.yml │ ├── filebeat │ │ └── filebeat.yml │ ├── imposter │ │ ├── api_info.json │ │ ├── login.js │ │ └── wazuh-config.yml │ ├── kibana │ │ └── wazuh.yml │ ├── setup_permissions.sh │ └── wazuh_cluster │ │ └── wazuh_manager.conf │ ├── pre.sh │ ├── pre.yml │ ├── rel.sh │ └── rel.yml ├── docs ├── .gitignore ├── AGENTS.md ├── README.md ├── SUMMARY.md ├── book.toml ├── build.sh ├── dev │ ├── README.md │ ├── build-image.md │ ├── build-packages.md │ ├── build-sources.md │ ├── run-sources.md │ ├── run-tests.md │ └── setup.md ├── diag │ └── diagnostic.md ├── ref │ ├── README.md │ ├── architecture.md │ ├── backup-restore.md │ ├── compatibility.md │ ├── configuration.md │ ├── description.md │ ├── getting-started │ │ ├── README.md │ │ ├── installation.md │ │ ├── packages.md │ │ └── requirements.md │ ├── glossary.md │ ├── modules │ │ ├── README.md │ │ ├── healthcheck.md │ │ ├── normalization.md │ │ ├── notifications-alerting.md │ │ └── saved-objects-dashboards.md │ ├── performance.md │ ├── security.md │ ├── uninstall.md │ └── upgrade.md └── server.sh ├── plugins ├── main │ ├── .eslintrc.json │ ├── .i18nrc.json │ ├── .opensearch_dashboards-plugin-helpers.json │ ├── README.md │ ├── common │ │ ├── api-info │ │ │ ├── endpoints.json │ │ │ └── security-actions.json │ │ ├── compliance-requirements │ │ │ ├── gdpr-requirements.ts │ │ │ ├── hipaa-requirements.ts │ │ │ ├── nist-requirements.ts │ │ │ ├── pci-requirements.ts │ │ │ └── tsc-requirements.ts │ │ ├── constants.ts │ │ ├── csv-key-equivalence.ts │ │ ├── dashboards │ │ │ ├── dashboard-definitions │ │ │ │ ├── management │ │ │ │ │ ├── agent │ │ │ │ │ │ └── overview │ │ │ │ │ │ │ ├── agent-events-count-evolution.ndjson │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ │ └── monitoring │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ └── server │ │ │ │ │ │ └── statistics │ │ │ │ │ │ ├── listener-engine │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ │ └── overview │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ └── vis-states.ts │ │ │ │ ├── overview │ │ │ │ │ ├── aws │ │ │ │ │ │ ├── overview │ │ │ │ │ │ │ ├── aws-overview-dashboard-tab.ndjson │ │ │ │ │ │ │ └── dashboard.ts │ │ │ │ │ │ ├── pinned-agent │ │ │ │ │ │ │ ├── aws-pinned-agent-dashboard-tab.ndjson │ │ │ │ │ │ │ └── dashboard.ts │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ ├── azure │ │ │ │ │ │ ├── overview │ │ │ │ │ │ │ ├── azure-overview-dashboard-tab.ndjson │ │ │ │ │ │ │ └── dashboard.ts │ │ │ │ │ │ ├── pinned-agent │ │ │ │ │ │ │ ├── azure-pinned-agent-dashboard-tab.ndjson │ │ │ │ │ │ │ └── dashboard.ts │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ ├── docker │ │ │ │ │ │ ├── overview │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── docker-overview-dashboard-tab.ndjson │ │ │ │ │ │ ├── pinned-agent │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── docker-pinned-agent-dashboard-tab.ndjson │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ ├── fim │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── fim-files-dashboard.ndjson │ │ │ │ │ │ ├── overview │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── fim-overview-dashboard.ndjson │ │ │ │ │ │ ├── pinned-agent │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── fim-pinned-agent-dashboard.ndjson │ │ │ │ │ │ ├── registry-keys │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── fim-registry-keys-dashboard.ndjson │ │ │ │ │ │ ├── registry-values │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── fim-registry-values-dashboard.ndjson │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ ├── gdpr │ │ │ │ │ │ ├── overview │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── gdpr-overview-dashboard.ndjson │ │ │ │ │ │ ├── pinned-agent │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── gdpr-pinned-agent-dashboard.ndjson │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ ├── github │ │ │ │ │ │ ├── drilldowns │ │ │ │ │ │ │ ├── action │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ └── github-drilldown-action-dashboard-tab.ndjson │ │ │ │ │ │ │ ├── actor │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ └── github-drilldown-actor-dashboard-tab.ndjson │ │ │ │ │ │ │ ├── organization │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ └── github-drilldown-organization-dashboard-tab.ndjson │ │ │ │ │ │ │ ├── repository │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ └── github-drilldown-repository-dashboard.ndjson │ │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ │ ├── overview │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── github-overview-dashboard-tab.ndjson │ │ │ │ │ │ ├── pinned-agent │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── github-pinned-agent-dashboard-tab.ndjson │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ ├── google-cloud │ │ │ │ │ │ ├── overview │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── google-cloud-detector-dashboard-tab.ndjson │ │ │ │ │ │ ├── pinned-agent │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── google-cloud-pinned-agent-dashboard.ndjson │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ ├── hipaa │ │ │ │ │ │ ├── overview │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── hipaa-overview-dashboard-tab.ndjson │ │ │ │ │ │ ├── pinned-agent │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── hipaa-pinned-agent-dashboard-tab.ndjson │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ ├── it-hygiene │ │ │ │ │ │ ├── dashboards │ │ │ │ │ │ │ ├── dashboard-panels-service.ts │ │ │ │ │ │ │ └── overview │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ └── it-hygiene-overview-dashboard-tab.ndjson │ │ │ │ │ │ ├── networks │ │ │ │ │ │ │ └── inventories │ │ │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ ├── it-hygiene-networks-inventories-interfaces-dashboard-tab.ndjson │ │ │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ │ │ │ ├── networks │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ ├── it-hygiene-networks-inventories-networks-dashboard-tab.ndjson │ │ │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ │ │ │ ├── protocols │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ ├── it-hygiene-networks-inventories-protocols-dashboard-tab.ndjson │ │ │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ └── it-hygiene-networks-inventories-services-dashboard-tab.ndjson │ │ │ │ │ │ │ │ └── traffic │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ └── it-hygiene-networks-inventories-traffic-dashboard-tab.ndjson │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ └── inventories │ │ │ │ │ │ │ │ ├── browser-extensions │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ └── it-hygiene-packages-inventories-browser-extensions-dashboard-tab.ndjson │ │ │ │ │ │ │ │ ├── hotfixes │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ └── it-hygiene-packages-inventories-hotfixes-dashboard-tab.ndjson │ │ │ │ │ │ │ │ └── packages │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ ├── it-hygiene-packages-inventories-packages-dashboard-tab.ndjson │ │ │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ │ ├── processes │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── it-hygiene-processes-dashboard-tab.ndjson │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── it-hygiene-services-dashboard-tab.ndjson │ │ │ │ │ │ ├── system │ │ │ │ │ │ │ └── inventories │ │ │ │ │ │ │ │ ├── hardware │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ └── it-hygiene-system-inventories-hardware-dashboard-tab.ndjson │ │ │ │ │ │ │ │ └── system │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ └── it-hygiene-system-inventories-system-dashboard-tab.ndjson │ │ │ │ │ │ ├── users │ │ │ │ │ │ │ └── inventories │ │ │ │ │ │ │ │ ├── groups │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ └── it-hygiene-user-inventories-groups-dashboard-tab.ndjson │ │ │ │ │ │ │ │ └── users │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ └── it-hygiene-user-inventories-users-dashboard-tab.ndjson │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ ├── malware-detection │ │ │ │ │ │ ├── overview │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── malware-detection-overview-dashboard-tab.ndjson │ │ │ │ │ │ ├── pinned-agent │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── malware-detection-pinned-agent-dashboard-tab.ndjson │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ ├── mitre │ │ │ │ │ │ ├── overview │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── mitre-overview-dashboard-tab.ndjson │ │ │ │ │ │ ├── pinned-agent │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── mitre-pinned-agent-dashboard-tab.ndjson │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ ├── nist │ │ │ │ │ │ ├── overview │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── nist-overview-dashboard-tab.ndjson │ │ │ │ │ │ ├── pinned-agent │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── nist-pinned-agent-dashboard-tab.ndjson │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ ├── office │ │ │ │ │ │ ├── drilldowns │ │ │ │ │ │ │ ├── ip-config │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ └── office-drilldown-ip-config-panel-tab.ndjson │ │ │ │ │ │ │ ├── operations-config │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ └── office-drilldown-operations-config-panel-tab.ndjson │ │ │ │ │ │ │ ├── rules-config │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ └── office-drilldown-rules-config-panel-tab.ndjson │ │ │ │ │ │ │ ├── user-config │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ └── office-drilldown-user-config-panel-tab.ndjson │ │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ │ ├── overview │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── office-overview-dashboard-tab.ndjson │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ ├── pci │ │ │ │ │ │ ├── overview │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── pci-overview-dashboard-tab.ndjson │ │ │ │ │ │ ├── pinned-agent │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── pci-pinned-agent-dashboard-tab.ndjson │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ ├── sca │ │ │ │ │ │ ├── inventory │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── sca-inventory-dashboard.ndjson │ │ │ │ │ │ └── overview │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ ├── sca-overview-dashboard.ndjson │ │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ ├── threat-hunting │ │ │ │ │ │ ├── overview │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── threat-hunting-overview-dashboard.ndjson │ │ │ │ │ │ ├── pinned-agent │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── threat-hunting-pinned-agent-dashboard.ndjson │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ ├── tsc │ │ │ │ │ │ ├── overview │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── tsc-overview-dashboard-tab.ndjson │ │ │ │ │ │ ├── pinned-agent │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ └── tsc-pinned-agent-dashboard-tab.ndjson │ │ │ │ │ │ └── vis-states.ts │ │ │ │ │ └── vulnerabilities │ │ │ │ │ │ ├── overview │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ └── vulnerabilities-overview-dashboard-tab.ndjson │ │ │ │ │ │ └── vis-states.ts │ │ │ │ └── wazuh-discover │ │ │ │ │ └── events │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ ├── vis-states.ts │ │ │ │ │ └── wz-discover-events-dashboard.ndjson │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── builders.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── dashboard-config-service.ts │ │ │ │ ├── data-source │ │ │ │ │ └── pattern │ │ │ │ │ │ └── compact-data-source-filter-manager.ts │ │ │ │ ├── helpers.ts │ │ │ │ ├── index.ts │ │ │ │ └── vis-generators.ts │ │ │ └── types.ts │ │ ├── known-fields │ │ │ └── .gitignore │ │ ├── services │ │ │ ├── file-extension.test.ts │ │ │ ├── file-extension.ts │ │ │ ├── file-size.test.ts │ │ │ ├── file-size.ts │ │ │ ├── index-patterns.ts │ │ │ ├── web_documentation.test.ts │ │ │ ├── web_documentation.ts │ │ │ └── wz_agent_status.ts │ │ ├── utils.ts │ │ └── wazuh-modules.ts │ ├── docs │ │ ├── mount-application.md │ │ ├── routing.md │ │ └── wz-link.md │ ├── knip.json │ ├── opensearch_dashboards.json │ ├── package.json │ ├── public │ │ ├── app-router.tsx │ │ ├── app.js │ │ ├── application.tsx │ │ ├── assets │ │ │ ├── fonts │ │ │ │ └── opensans │ │ │ │ │ ├── Montserrat-Light.ttf │ │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ │ ├── OpenSans-BoldItalic.ttf │ │ │ │ │ ├── OpenSans-Italic.ttf │ │ │ │ │ └── OpenSans-Light.ttf │ │ │ └── images │ │ │ │ ├── icons │ │ │ │ ├── google_groups.svg │ │ │ │ ├── linux-icon.svg │ │ │ │ ├── mac-icon.svg │ │ │ │ ├── office365.svg │ │ │ │ └── windows-icon.svg │ │ │ │ └── themes │ │ │ │ ├── dark │ │ │ │ ├── icon.svg │ │ │ │ ├── linux-icon.svg │ │ │ │ ├── logo.svg │ │ │ │ ├── mac-icon.svg │ │ │ │ └── windows-icon.svg │ │ │ │ └── light │ │ │ │ ├── icon.svg │ │ │ │ ├── linux-icon.svg │ │ │ │ ├── logo.svg │ │ │ │ ├── mac-icon.svg │ │ │ │ └── windows-icon.svg │ │ ├── components │ │ │ ├── add-modules-data │ │ │ │ ├── WzSampleDataWrapper.js │ │ │ │ ├── helper.ts │ │ │ │ └── sample-data.tsx │ │ │ ├── agents │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── agent-status.test.tsx.snap │ │ │ │ │ ├── agent-synced.test.tsx.snap │ │ │ │ │ └── column-with-status-icon.test.tsx.snap │ │ │ │ ├── agent-status.scss │ │ │ │ ├── agent-status.test.tsx │ │ │ │ ├── agent-status.tsx │ │ │ │ ├── agent-synced.test.tsx │ │ │ │ ├── agent-synced.tsx │ │ │ │ ├── column-with-status-icon.test.tsx │ │ │ │ ├── column-with-status-icon.tsx │ │ │ │ ├── prompts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── prompt-agent-feature-version.tsx │ │ │ │ │ ├── prompt-agent-never-connected.tsx │ │ │ │ │ ├── prompt-agent-no-support-module.tsx │ │ │ │ │ ├── prompt-no-active-agent.tsx │ │ │ │ │ ├── prompt-no-selected-agent.tsx │ │ │ │ │ ├── prompt-select-agent.tsx │ │ │ │ │ └── prompt_module_not_for_agent.tsx │ │ │ │ ├── stats │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── table.test.tsx.snap │ │ │ │ │ ├── agent-stats.test.tsx │ │ │ │ │ ├── agent-stats.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── table.test.tsx │ │ │ │ │ └── table.tsx │ │ │ │ └── syscollector │ │ │ │ │ └── components │ │ │ │ │ ├── index.ts │ │ │ │ │ └── syscollector-metrics.tsx │ │ │ ├── common │ │ │ │ ├── buttons │ │ │ │ │ ├── button.tsx │ │ │ │ │ ├── flyout.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── modal-confirm.tsx │ │ │ │ ├── charts │ │ │ │ │ ├── charts │ │ │ │ │ │ └── donut.tsx │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── use_chart_dimensions.ts │ │ │ │ │ └── visualizations │ │ │ │ │ │ ├── basic.tsx │ │ │ │ │ │ ├── legend.scss │ │ │ │ │ │ ├── legend.tsx │ │ │ │ │ │ └── visualizations.scss │ │ │ │ ├── custom-search-bar │ │ │ │ │ ├── components │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── multi-select-input.tsx │ │ │ │ │ │ └── multi-select.tsx │ │ │ │ │ ├── custom-search-bar.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── dashboards │ │ │ │ │ ├── dashboard-renderer │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── dashboard-renderer-error-prompt.tsx │ │ │ │ │ │ ├── dashboard-renderer-service.test.ts │ │ │ │ │ │ ├── dashboard-renderer-service.ts │ │ │ │ │ │ ├── dashboard-renderer.tsx │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── dashboard.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── inventory.tsx │ │ │ │ │ └── panel.tsx │ │ │ │ ├── data-grid │ │ │ │ │ ├── cell-filter-actions.test.tsx │ │ │ │ │ ├── cell-filter-actions.tsx │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── data-grid-service.test.ts │ │ │ │ │ ├── data-grid-service.ts │ │ │ │ │ ├── data-grid-state-persistence-manager │ │ │ │ │ │ ├── build-key.ts │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ ├── local-storage-state-persistence-manager.test.ts │ │ │ │ │ │ ├── local-storage-state-persistence-manager.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ ├── use-data-grid-state-persistence-manager.test.ts │ │ │ │ │ │ └── use-data-grid-state-persistence-manager.ts │ │ │ │ │ ├── filter-cell-actions.test.ts │ │ │ │ │ ├── filter-cell-actions.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ ├── use-data-grid-columns.test.ts │ │ │ │ │ ├── use-data-grid-columns.ts │ │ │ │ │ ├── use-data-grid.test.tsx │ │ │ │ │ └── use-data-grid.tsx │ │ │ │ ├── data-source │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── use-data-source.test.ts │ │ │ │ │ │ └── use-data-source.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── pattern │ │ │ │ │ │ ├── events │ │ │ │ │ │ │ ├── aws │ │ │ │ │ │ │ │ ├── aws-data-source.ts │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── azure │ │ │ │ │ │ │ │ ├── azure-data-source.ts │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── cluster │ │ │ │ │ │ │ │ ├── cluster-data-source.ts │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── configuration-assessment │ │ │ │ │ │ │ │ ├── configuration-assessment-data-source.ts │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── docker │ │ │ │ │ │ │ │ ├── docker-data-source.ts │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── events-count │ │ │ │ │ │ │ │ ├── events-count-data-source.ts │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── events-data-source-repository.test.ts │ │ │ │ │ │ │ ├── events-data-source-repository.ts │ │ │ │ │ │ │ ├── events-data-source.ts │ │ │ │ │ │ │ ├── fim │ │ │ │ │ │ │ │ ├── fim-data-source.ts │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── gdpr │ │ │ │ │ │ │ │ ├── gdpr-data-source.ts │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── github │ │ │ │ │ │ │ │ ├── github-data-source.ts │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── google-cloud │ │ │ │ │ │ │ │ ├── google-cloud-data-source.ts │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── hipaa │ │ │ │ │ │ │ │ ├── hipaa-data-source.ts │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── malware-detection │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── malware-detection-data-source.ts │ │ │ │ │ │ │ ├── mitre-attack │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── mitre-attack-data-source.ts │ │ │ │ │ │ │ ├── nist-800-53 │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── nist-800-53-data-source.ts │ │ │ │ │ │ │ ├── office-365 │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── office-365-data-source.ts │ │ │ │ │ │ │ ├── pci-dss │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── pci-dss-data-source.ts │ │ │ │ │ │ │ ├── threat-hunting │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── threat-hunting-data-source.ts │ │ │ │ │ │ │ ├── tsc │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── tsc-data-souce.ts │ │ │ │ │ │ │ └── vulnerabilities │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── vulnerabilities-data-source.ts │ │ │ │ │ │ ├── fim │ │ │ │ │ │ │ ├── data-source-repository.ts │ │ │ │ │ │ │ ├── data-source.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── pattern-data-source-factory.test.ts │ │ │ │ │ │ ├── pattern-data-source-factory.ts │ │ │ │ │ │ ├── pattern-data-source-filter-manager.test.ts │ │ │ │ │ │ ├── pattern-data-source-filter-manager.ts │ │ │ │ │ │ ├── pattern-data-source-repository-use-setting-value.ts │ │ │ │ │ │ ├── pattern-data-source-repository.test.ts │ │ │ │ │ │ ├── pattern-data-source-repository.ts │ │ │ │ │ │ ├── pattern-data-source-selector.test.ts │ │ │ │ │ │ ├── pattern-data-source-selector.ts │ │ │ │ │ │ ├── pattern-data-source.test.ts │ │ │ │ │ │ ├── pattern-data-source.ts │ │ │ │ │ │ ├── sca │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sca-data-source-repository.ts │ │ │ │ │ │ │ └── sca-data-source.ts │ │ │ │ │ │ ├── statistics │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── statistics-data-source-repository.ts │ │ │ │ │ │ │ └── statistics-data-source.ts │ │ │ │ │ │ ├── system-inventory │ │ │ │ │ │ │ ├── data-source-repository.ts │ │ │ │ │ │ │ ├── data-source.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── vulnerabilities │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── vulnerabilities-data-source-repository.ts │ │ │ │ │ │ │ └── vulnerabilities-data-source.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── doc-viewer │ │ │ │ │ ├── doc-viewer.scss │ │ │ │ │ ├── doc-viewer.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── table-row-btn-filter-add.tsx │ │ │ │ │ ├── table-row-btn-filter-exists.tsx │ │ │ │ │ ├── table-row-btn-filter-remove.tsx │ │ │ │ │ └── use-doc-viewer.ts │ │ │ │ ├── error-boundary-prompt │ │ │ │ │ ├── error-boundary-prompt.scss │ │ │ │ │ └── error-boundary-prompt.tsx │ │ │ │ ├── error-boundary │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── error-boundary.test.tsx.snap │ │ │ │ │ ├── error-boundary.test.tsx │ │ │ │ │ └── error-boundary.tsx │ │ │ │ ├── flyouts │ │ │ │ │ ├── close-flyout-security.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── wz-flyout.tsx │ │ │ │ ├── form │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ │ ├── hooks.test.tsx │ │ │ │ │ ├── hooks.tsx │ │ │ │ │ ├── index.test.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── input-password.tsx │ │ │ │ │ ├── input_editor.tsx │ │ │ │ │ ├── input_filepicker.tsx │ │ │ │ │ ├── input_number.tsx │ │ │ │ │ ├── input_select.tsx │ │ │ │ │ ├── input_switch.tsx │ │ │ │ │ ├── input_text.tsx │ │ │ │ │ ├── input_text_area.tsx │ │ │ │ │ └── types.ts │ │ │ │ ├── globalBreadcrumb │ │ │ │ │ └── platformBreadcrumb.tsx │ │ │ │ ├── hocs │ │ │ │ │ ├── error-boundary │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── with-error-boundary.test.tsx.snap │ │ │ │ │ │ ├── with-error-boundary.test.tsx │ │ │ │ │ │ └── with-error-boundary.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── route-resolver.tsx │ │ │ │ │ ├── utils │ │ │ │ │ │ └── utils.tsx │ │ │ │ │ ├── with-agent.tsx │ │ │ │ │ ├── with-data-source.tsx │ │ │ │ │ ├── with-health-check.tsx │ │ │ │ │ ├── with-inject-props.tsx │ │ │ │ │ ├── with-router-search.tsx │ │ │ │ │ ├── with-server-api-available.tsx │ │ │ │ │ ├── with-wrap-component.tsx │ │ │ │ │ ├── withAgentSupportModule.tsx │ │ │ │ │ ├── withAgentSync.tsx │ │ │ │ │ ├── withButtonOpenOnClick.tsx │ │ │ │ │ ├── withGlobalBreadcrumb.tsx │ │ │ │ │ ├── withGuard.tsx │ │ │ │ │ ├── withUserAuthorization.tsx │ │ │ │ │ ├── withUserLogged.tsx │ │ │ │ │ ├── withUserPermissions.tsx │ │ │ │ │ ├── withWindowSize.tsx │ │ │ │ │ └── with_module_not_for_agent.tsx │ │ │ │ ├── hooks │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── saved_query │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ └── use_saved_query.ts │ │ │ │ │ ├── use-app-config.ts │ │ │ │ │ ├── use-data-source-search-context.ts │ │ │ │ │ ├── use-effect-ensure-mounted.ts │ │ │ │ │ ├── use-filter-manager.ts │ │ │ │ │ ├── use-is-mounted.test.tsx │ │ │ │ │ ├── use-is-mounted.ts │ │ │ │ │ ├── use-kbn-loading-indicator.ts │ │ │ │ │ ├── use-query.ts │ │ │ │ │ ├── use-reporting-communicate-search-context.ts │ │ │ │ │ ├── use-router-search.ts │ │ │ │ │ ├── use-selected-server-api.ts │ │ │ │ │ ├── use-server-api-available.ts │ │ │ │ │ ├── use-service.test.tsx │ │ │ │ │ ├── use-service.ts │ │ │ │ │ ├── use-state-storage.ts │ │ │ │ │ ├── use-time-filter.ts │ │ │ │ │ ├── use-user-is-admin.ts │ │ │ │ │ ├── use-value-suggestion.ts │ │ │ │ │ ├── useApiRequest.ts │ │ │ │ │ ├── useApiService.ts │ │ │ │ │ ├── useDebouncedEffect.ts │ │ │ │ │ ├── useGenericRequest.ts │ │ │ │ │ ├── useGlobalBreadcrumb.ts │ │ │ │ │ ├── useUserPermissions.ts │ │ │ │ │ ├── useWindowSize.ts │ │ │ │ │ ├── use_async_action.test.tsx │ │ │ │ │ ├── use_async_action.ts │ │ │ │ │ └── use_async_action_run_on_start.ts │ │ │ │ ├── icons │ │ │ │ │ └── wz-icon-svg.tsx │ │ │ │ ├── index-pattern │ │ │ │ │ ├── index.ts │ │ │ │ │ └── render-field.tsx │ │ │ │ ├── loading-searchbar-progress │ │ │ │ │ └── loading-searchbar-progress.tsx │ │ │ │ ├── loading-spinner │ │ │ │ │ ├── loading-spinner.scss │ │ │ │ │ └── loading-spinner.tsx │ │ │ │ ├── loading │ │ │ │ │ └── loading-spinner-data-source.tsx │ │ │ │ ├── logos │ │ │ │ │ ├── docker.tsx │ │ │ │ │ ├── github.tsx │ │ │ │ │ ├── google_cloud.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── microsoft_graph_api.tsx │ │ │ │ │ └── office_365.tsx │ │ │ │ ├── modules │ │ │ │ │ ├── buttons │ │ │ │ │ │ ├── generate_report.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── main-agent.test.tsx │ │ │ │ │ ├── main-agent.tsx │ │ │ │ │ ├── main-mitre.tsx │ │ │ │ │ ├── main-overview.tsx │ │ │ │ │ ├── main.tsx │ │ │ │ │ ├── module.scss │ │ │ │ │ ├── modules-defaults.tsx │ │ │ │ │ ├── overview-current-section-wrapper.tsx │ │ │ │ │ ├── overview-current-section.tsx │ │ │ │ │ └── panel │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── agg-table.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── module-side-panel.scss │ │ │ │ │ │ ├── module-side-panel.tsx │ │ │ │ │ │ ├── module_configuration.scss │ │ │ │ │ │ ├── module_configuration.tsx │ │ │ │ │ │ └── vis-config-layout.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── main-panel.tsx │ │ │ │ ├── no-results │ │ │ │ │ └── no-results.tsx │ │ │ │ ├── panels │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── panel_split.test.tsx.snap │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── panel_split.test.tsx │ │ │ │ │ └── panel_split.tsx │ │ │ │ ├── permissions │ │ │ │ │ ├── button.tsx │ │ │ │ │ ├── element.tsx │ │ │ │ │ ├── format.tsx │ │ │ │ │ └── prompt.tsx │ │ │ │ ├── platform │ │ │ │ │ └── index.tsx │ │ │ │ ├── ribbon │ │ │ │ │ ├── ribbon-item.scss │ │ │ │ │ ├── ribbon-item.tsx │ │ │ │ │ ├── ribbon.scss │ │ │ │ │ └── ribbon.tsx │ │ │ │ ├── search-bar │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── managed-filters │ │ │ │ │ │ ├── combo-box.tsx │ │ │ │ │ │ └── wrap-filter.tsx │ │ │ │ │ ├── search-bar-service.ts │ │ │ │ │ ├── search-bar.scss │ │ │ │ │ ├── search-bar.tsx │ │ │ │ │ ├── set-filters.ts │ │ │ │ │ ├── use-custom-search-bar-filters.tsx │ │ │ │ │ ├── use-search-bar.test.ts │ │ │ │ │ └── use-search-bar.ts │ │ │ │ ├── search │ │ │ │ │ ├── fieldsearch-delay.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── tables │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── table-default.test.tsx.snap │ │ │ │ │ │ ├── table-with-search-bar.test.tsx.snap │ │ │ │ │ │ └── table-wz-api.test.tsx.snap │ │ │ │ │ ├── components │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── export-table-csv.test.tsx.snap │ │ │ │ │ │ ├── export-table-csv.test.tsx │ │ │ │ │ │ └── export-table-csv.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── table-default.test.tsx │ │ │ │ │ ├── table-default.tsx │ │ │ │ │ ├── table-with-search-bar.test.tsx │ │ │ │ │ ├── table-with-search-bar.tsx │ │ │ │ │ ├── table-wz-api.test.tsx │ │ │ │ │ ├── table-wz-api.tsx │ │ │ │ │ └── table.tsx │ │ │ │ ├── tabs │ │ │ │ │ ├── index.ts │ │ │ │ │ └── module-sub-tabs.tsx │ │ │ │ ├── typography │ │ │ │ │ └── typography.tsx │ │ │ │ ├── util │ │ │ │ │ ├── agent-group-truncate │ │ │ │ │ │ ├── group-truncate.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── change-case.ts │ │ │ │ │ ├── grouping-components │ │ │ │ │ │ ├── grouping-components.scss │ │ │ │ │ │ ├── grouping-components.tsx │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── use-parent-width.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── divide-children.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── is-nullish.ts │ │ │ │ │ ├── markdown │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── markdown.test.tsx.snap │ │ │ │ │ │ ├── markdown.test.tsx │ │ │ │ │ │ └── markdown.tsx │ │ │ │ │ ├── truncate-horizontal-components │ │ │ │ │ │ └── truncate-horizontal-components.tsx │ │ │ │ │ └── wz-overlay-mask-interface.tsx │ │ │ │ ├── wazuh-data-grid │ │ │ │ │ ├── recent-events │ │ │ │ │ │ └── recent-events.tsx │ │ │ │ │ ├── wazuh-data-grid.scss │ │ │ │ │ └── wz-data-grid.tsx │ │ │ │ ├── wazuh-discover │ │ │ │ │ ├── components │ │ │ │ │ │ ├── data-grid-additional-controls.tsx │ │ │ │ │ │ ├── doc-details-header.tsx │ │ │ │ │ │ ├── doc-details.tsx │ │ │ │ │ │ ├── document-view-table-and-json.tsx │ │ │ │ │ │ ├── restore-state-columns.tsx │ │ │ │ │ │ └── visible-columns-selector.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── data-grid-columns.tsx │ │ │ │ │ │ └── histogram-chart.ts │ │ │ │ │ ├── discover.scss │ │ │ │ │ ├── flex-layout.scss │ │ │ │ │ ├── flex-layout.tsx │ │ │ │ │ ├── render-columns.tsx │ │ │ │ │ ├── table.scss │ │ │ │ │ ├── table.tsx │ │ │ │ │ ├── wz-discover.tsx │ │ │ │ │ └── wz-flyout-discover.tsx │ │ │ │ ├── welcome │ │ │ │ │ ├── agent-info │ │ │ │ │ │ └── agent-info.tsx │ │ │ │ │ ├── agents-welcome.js │ │ │ │ │ ├── components │ │ │ │ │ │ ├── fim_events_table │ │ │ │ │ │ │ ├── fim_events_table.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── menu-agent.js │ │ │ │ │ │ ├── mitre_top │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── mitre-top.tsx │ │ │ │ │ │ ├── requirement_vis │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── requirement_vis.tsx │ │ │ │ │ │ ├── sca_scan │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── sca_scan.tsx │ │ │ │ │ │ ├── top_packages_table │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── top_packages_table.tsx │ │ │ │ │ │ ├── vuls_panel │ │ │ │ │ │ │ └── vuls_welcome_panel.tsx │ │ │ │ │ │ └── vuls_severity_stat │ │ │ │ │ │ │ └── vuls_severity_stat.tsx │ │ │ │ │ ├── dashboard │ │ │ │ │ │ ├── dashboard_panels.ts │ │ │ │ │ │ └── events-count.tsx │ │ │ │ │ ├── overview-welcome.js │ │ │ │ │ └── welcome.scss │ │ │ │ ├── wz-text-with-tooltip-if-truncated.scss │ │ │ │ └── wz-text-with-tooltip-if-truncated.tsx │ │ │ ├── endpoints-summary │ │ │ │ ├── agent │ │ │ │ │ ├── agent-tabs.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── dashboard │ │ │ │ │ ├── components │ │ │ │ │ │ ├── donut-card.test.tsx │ │ │ │ │ │ └── donut-card.tsx │ │ │ │ │ └── endpoints-summary-dashboard.tsx │ │ │ │ ├── endpoints-summary.scss │ │ │ │ ├── endpoints-summary.tsx │ │ │ │ ├── hooks │ │ │ │ │ ├── groups.test.ts │ │ │ │ │ ├── groups.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── upgrade-tasks.test.ts │ │ │ │ │ └── upgrade-tasks.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── register-agent │ │ │ │ │ ├── components │ │ │ │ │ │ ├── command-output │ │ │ │ │ │ │ ├── command-output.tsx │ │ │ │ │ │ │ └── os-warning.tsx │ │ │ │ │ │ ├── group-input │ │ │ │ │ │ │ ├── group-input.scss │ │ │ │ │ │ │ └── group-input.tsx │ │ │ │ │ │ ├── optionals-inputs │ │ │ │ │ │ │ └── optionals-inputs.tsx │ │ │ │ │ │ ├── os-selector │ │ │ │ │ │ │ ├── checkbox-group │ │ │ │ │ │ │ │ ├── checkbox-group.scss │ │ │ │ │ │ │ │ ├── checkbox-group.test.tsx │ │ │ │ │ │ │ │ └── checkbox-group.tsx │ │ │ │ │ │ │ └── os-card │ │ │ │ │ │ │ │ ├── os-card.scss │ │ │ │ │ │ │ │ ├── os-card.test.tsx │ │ │ │ │ │ │ │ └── os-card.tsx │ │ │ │ │ │ └── server-address │ │ │ │ │ │ │ └── server-address.tsx │ │ │ │ │ ├── containers │ │ │ │ │ │ ├── register-agent │ │ │ │ │ │ │ ├── register-agent.scss │ │ │ │ │ │ │ └── register-agent.tsx │ │ │ │ │ │ └── steps │ │ │ │ │ │ │ ├── steps.scss │ │ │ │ │ │ │ └── steps.tsx │ │ │ │ │ ├── core │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── os-commands-definitions.ts │ │ │ │ │ │ └── register-commands │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── command-generator │ │ │ │ │ │ │ ├── command-generator.test.ts │ │ │ │ │ │ │ └── command-generator.ts │ │ │ │ │ │ │ ├── exceptions │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── optional-parameters-manager │ │ │ │ │ │ │ ├── optional-parameters-manager.test.ts │ │ │ │ │ │ │ └── optional-parameters-manager.ts │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ ├── get-install-command.service.test.ts │ │ │ │ │ │ │ ├── get-install-command.service.ts │ │ │ │ │ │ │ ├── search-os-definitions.service.test.ts │ │ │ │ │ │ │ └── search-os-definitions.service.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── use-register-agent-commands.test.ts │ │ │ │ │ │ └── use-register-agent-commands.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── interfaces │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── services │ │ │ │ │ │ ├── form-status-manager.test.tsx │ │ │ │ │ │ ├── form-status-manager.tsx │ │ │ │ │ │ ├── register-agent-os-commands-services.test.ts │ │ │ │ │ │ ├── register-agent-os-commands-services.tsx │ │ │ │ │ │ ├── register-agent-services.test.ts │ │ │ │ │ │ ├── register-agent-services.tsx │ │ │ │ │ │ ├── register-agent-steps-status-services.tsx │ │ │ │ │ │ ├── wazuh-password-service.test.ts │ │ │ │ │ │ └── wazuh-password-service.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── register-agent-data.tsx │ │ │ │ │ │ ├── validations.test.tsx │ │ │ │ │ │ └── validations.tsx │ │ │ │ ├── services │ │ │ │ │ ├── add-agent-to-group.ts │ │ │ │ │ ├── add-agents-to-group.ts │ │ │ │ │ ├── get-agents-info.test.ts │ │ │ │ │ ├── get-agents-info.ts │ │ │ │ │ ├── get-agents.test.ts │ │ │ │ │ ├── get-agents.tsx │ │ │ │ │ ├── get-api-version.ts │ │ │ │ │ ├── get-color-palette-by-index.ts │ │ │ │ │ ├── get-groups.test.ts │ │ │ │ │ ├── get-groups.tsx │ │ │ │ │ ├── get-tasks.test.ts │ │ │ │ │ ├── get-tasks.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── paginated-agents-request.test.tsx │ │ │ │ │ ├── paginated-agents-request.tsx │ │ │ │ │ ├── remove-agent-from-groups.tsx │ │ │ │ │ ├── remove-agents-from-group.tsx │ │ │ │ │ ├── upgrade-agent.tsx │ │ │ │ │ └── upgrade-agents.tsx │ │ │ │ ├── table │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── agents-table.test.tsx.snap │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ ├── edit-groups-modal.test.tsx.snap │ │ │ │ │ │ │ └── upgrade-agent-modal.test.tsx.snap │ │ │ │ │ │ ├── actions.tsx │ │ │ │ │ │ ├── edit-groups-modal.test.tsx │ │ │ │ │ │ ├── edit-groups-modal.tsx │ │ │ │ │ │ ├── upgrade-agent-modal.test.tsx │ │ │ │ │ │ └── upgrade-agent-modal.tsx │ │ │ │ │ ├── agents-table.test.tsx │ │ │ │ │ ├── agents-table.tsx │ │ │ │ │ ├── columns.tsx │ │ │ │ │ ├── global-actions │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── global-actions.test.tsx.snap │ │ │ │ │ │ ├── edit-groups │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── edit-groups-modal.test.tsx.snap │ │ │ │ │ │ │ ├── edit-groups-modal.test.tsx │ │ │ │ │ │ │ ├── edit-groups-modal.tsx │ │ │ │ │ │ │ └── result.tsx │ │ │ │ │ │ ├── global-actions.test.tsx │ │ │ │ │ │ ├── global-actions.tsx │ │ │ │ │ │ └── upgrade │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── upgrade-modal.test.tsx.snap │ │ │ │ │ │ │ ├── result.tsx │ │ │ │ │ │ │ ├── upgrade-modal.test.tsx │ │ │ │ │ │ │ └── upgrade-modal.tsx │ │ │ │ │ ├── upgrade-task-details-modal.tsx │ │ │ │ │ ├── upgrades-in-progress │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── upgrades-in-progress.test.tsx.snap │ │ │ │ │ │ ├── upgrades-in-progress.test.tsx │ │ │ │ │ │ └── upgrades-in-progress.tsx │ │ │ │ │ └── utils │ │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── eui-suggest │ │ │ │ ├── index.js │ │ │ │ ├── suggest.js │ │ │ │ └── suggest_input.js │ │ │ ├── management │ │ │ │ ├── cluster │ │ │ │ │ ├── components │ │ │ │ │ │ ├── configuration_cards.tsx │ │ │ │ │ │ └── overview_cards.tsx │ │ │ │ │ ├── dashboard │ │ │ │ │ │ ├── cluster_dashboard.scss │ │ │ │ │ │ ├── dashboard.tsx │ │ │ │ │ │ ├── dashboard_configuration_panels.ts │ │ │ │ │ │ └── dashboard_panels.ts │ │ │ │ │ └── node-list.tsx │ │ │ │ └── groups │ │ │ │ │ ├── multiple-agent-selector.scss │ │ │ │ │ └── multiple-agent-selector.tsx │ │ │ ├── navigation │ │ │ │ └── tabs-managed-by-search-params.tsx │ │ │ ├── normalization │ │ │ │ ├── components │ │ │ │ │ ├── metadata │ │ │ │ │ │ └── metadata.tsx │ │ │ │ │ ├── search-bar │ │ │ │ │ │ └── search-bar.tsx │ │ │ │ │ └── table-data │ │ │ │ │ │ └── table-fetch.tsx │ │ │ │ ├── normalization.tsx │ │ │ │ ├── services │ │ │ │ │ └── http.ts │ │ │ │ └── views │ │ │ │ │ ├── decoders │ │ │ │ │ ├── asset-viewer.tsx │ │ │ │ │ ├── decoders.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── info.ts │ │ │ │ │ ├── kvdbs │ │ │ │ │ ├── asset-viewer.test.tsx │ │ │ │ │ ├── asset-viewer.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── info.ts │ │ │ │ │ └── kvdbs.tsx │ │ │ │ │ └── overview │ │ │ │ │ ├── details.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── info.ts │ │ │ │ │ └── overview.tsx │ │ │ ├── notifications │ │ │ │ └── modal.tsx │ │ │ ├── overview │ │ │ │ ├── amazon-web-services │ │ │ │ │ ├── dashboards │ │ │ │ │ │ ├── dashboard.tsx │ │ │ │ │ │ ├── dashboard_panels.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.scss │ │ │ │ │ └── events │ │ │ │ │ │ └── amazon-web-services-columns.tsx │ │ │ │ ├── azure │ │ │ │ │ ├── dashboards │ │ │ │ │ │ ├── dashboard.tsx │ │ │ │ │ │ ├── dashboard_panels.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── events │ │ │ │ │ │ └── azure-columns.tsx │ │ │ │ ├── common │ │ │ │ │ ├── data-grid-columns.ts │ │ │ │ │ └── initial-width.ts │ │ │ │ ├── compliance-table │ │ │ │ │ ├── compliance-table.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── requirement-flyout │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── requirement-flyout.tsx │ │ │ │ │ │ ├── requirements │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── requirements.tsx │ │ │ │ │ │ └── subrequirements │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── subrequirements.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── requirement-goal.js │ │ │ │ │ └── requirement-name.js │ │ │ │ ├── docker │ │ │ │ │ ├── dashboards │ │ │ │ │ │ ├── dashboard-panels.ts │ │ │ │ │ │ ├── dashboard.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── events │ │ │ │ │ │ └── docker-columns.tsx │ │ │ │ ├── fim │ │ │ │ │ ├── common │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ └── no_results.tsx │ │ │ │ │ │ └── hocs │ │ │ │ │ │ │ └── validate-fim-states-index-pattern.tsx │ │ │ │ │ ├── dashboard │ │ │ │ │ │ ├── dashboard-panels.ts │ │ │ │ │ │ ├── dashboard.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── events │ │ │ │ │ │ └── file-integrity-monitoring-columns.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── inventory │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── inventories │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ ├── inventory.tsx │ │ │ │ │ │ │ ├── managed-filters.ts │ │ │ │ │ │ │ └── table-columns.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── registry-keys │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ ├── inventory.tsx │ │ │ │ │ │ │ ├── managed-filters.ts │ │ │ │ │ │ │ └── table-columns.ts │ │ │ │ │ │ └── registry-values │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ ├── inventory.tsx │ │ │ │ │ │ │ ├── managed-filters.ts │ │ │ │ │ │ │ └── table-columns.ts │ │ │ │ │ │ └── inventory.tsx │ │ │ │ ├── gdpr │ │ │ │ │ ├── dashboards │ │ │ │ │ │ ├── dashboard-panels.ts │ │ │ │ │ │ ├── dashboard.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── events │ │ │ │ │ │ └── gdpr-columns.tsx │ │ │ │ ├── github │ │ │ │ │ ├── dashboards │ │ │ │ │ │ ├── dashboard-panels.ts │ │ │ │ │ │ ├── dashboard.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── events │ │ │ │ │ │ └── github-columns.tsx │ │ │ │ │ └── panel │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── drilldown-action.tsx │ │ │ │ │ │ ├── drilldown-actor.tsx │ │ │ │ │ │ ├── drilldown-organization.tsx │ │ │ │ │ │ ├── drilldown-repository.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── main.tsx │ │ │ │ │ │ ├── module-config.tsx │ │ │ │ │ │ ├── search-bar-config.ts │ │ │ │ │ │ └── visualizations.tsx │ │ │ │ │ │ ├── github-panel.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── views │ │ │ │ │ │ ├── drilldown.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── main.tsx │ │ │ │ │ │ └── stats.tsx │ │ │ │ ├── google-cloud │ │ │ │ │ ├── dashboards │ │ │ │ │ │ ├── dashboard.tsx │ │ │ │ │ │ ├── dashboard_panels.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── events │ │ │ │ │ │ └── google-cloud-columns.tsx │ │ │ │ ├── hipaa │ │ │ │ │ ├── dashboards │ │ │ │ │ │ ├── dashboard-panels.ts │ │ │ │ │ │ ├── dashboard.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── events │ │ │ │ │ │ └── hipaa-columns.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── it-hygiene │ │ │ │ │ ├── common │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ ├── create-dashboard-panels-kpis.ts │ │ │ │ │ │ ├── create-new-visualization.ts │ │ │ │ │ │ ├── hocs │ │ │ │ │ │ │ └── validate-system-inventory-index-pattern.tsx │ │ │ │ │ │ ├── saved-vis │ │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ │ ├── create-saved-vis-data.ts │ │ │ │ │ │ │ └── generators.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── dashboards │ │ │ │ │ │ ├── dashboard-kpi.ts │ │ │ │ │ │ ├── dashboard-panels.ts │ │ │ │ │ │ ├── dashboard-tables.ts │ │ │ │ │ │ ├── dashboard.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── networks │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── inventories │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ └── dashboard.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ ├── inventory.tsx │ │ │ │ │ │ │ │ ├── managed-filters.ts │ │ │ │ │ │ │ │ └── table-columns.ts │ │ │ │ │ │ │ ├── networks │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ ├── inventory.tsx │ │ │ │ │ │ │ │ ├── managed-filters.ts │ │ │ │ │ │ │ │ └── table-columns.ts │ │ │ │ │ │ │ ├── protocols │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ ├── inventory.tsx │ │ │ │ │ │ │ │ ├── managed-filters.ts │ │ │ │ │ │ │ │ └── table-columns.ts │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ ├── inventory.tsx │ │ │ │ │ │ │ │ ├── managed-filters.ts │ │ │ │ │ │ │ │ └── table-columns.ts │ │ │ │ │ │ │ └── traffic │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ ├── inventory.tsx │ │ │ │ │ │ │ │ ├── managed-filters.ts │ │ │ │ │ │ │ │ └── table-columns.ts │ │ │ │ │ │ └── inventory.tsx │ │ │ │ │ ├── packages │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── inventories │ │ │ │ │ │ │ ├── hotfixes │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ ├── inventory.tsx │ │ │ │ │ │ │ │ ├── managed-filters.ts │ │ │ │ │ │ │ │ └── table-columns.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ ├── inventory.tsx │ │ │ │ │ │ │ │ ├── managed-filters.ts │ │ │ │ │ │ │ │ └── table-columns.ts │ │ │ │ │ │ │ └── web-browsers │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ ├── inventory.tsx │ │ │ │ │ │ │ │ ├── managed-filters.ts │ │ │ │ │ │ │ │ └── table-columns.ts │ │ │ │ │ │ └── inventory.tsx │ │ │ │ │ ├── processes │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── inventory.tsx │ │ │ │ │ │ ├── managed-filters.ts │ │ │ │ │ │ └── table-columns.ts │ │ │ │ │ ├── services │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── inventory.tsx │ │ │ │ │ │ ├── managed-filters.ts │ │ │ │ │ │ └── table-columns.ts │ │ │ │ │ ├── system │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── inventories │ │ │ │ │ │ │ ├── hardware │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ ├── inventory.tsx │ │ │ │ │ │ │ │ ├── managed-filters.ts │ │ │ │ │ │ │ │ └── table-columns.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── system │ │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ │ ├── inventory.tsx │ │ │ │ │ │ │ │ ├── managed-filters.ts │ │ │ │ │ │ │ │ └── table-columns.ts │ │ │ │ │ │ └── inventory.tsx │ │ │ │ │ └── users │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── inventories │ │ │ │ │ │ ├── groups │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ ├── inventory.tsx │ │ │ │ │ │ │ ├── managed-filters.ts │ │ │ │ │ │ │ └── table-columns.ts │ │ │ │ │ │ ├── hocs.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── users │ │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ │ ├── inventory.tsx │ │ │ │ │ │ │ ├── managed-filters.ts │ │ │ │ │ │ │ └── table-columns.ts │ │ │ │ │ │ └── inventory.tsx │ │ │ │ ├── malware-detection │ │ │ │ │ ├── dashboard │ │ │ │ │ │ ├── dashboard-panels.ts │ │ │ │ │ │ ├── dashboard.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── events │ │ │ │ │ │ └── malware-detection-columns.tsx │ │ │ │ ├── mitre │ │ │ │ │ ├── dashboard │ │ │ │ │ │ ├── dashboard-panels.ts │ │ │ │ │ │ ├── dashboard.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── events │ │ │ │ │ │ └── mitre-attack-columns.tsx │ │ │ │ │ ├── framework │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── tactics │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── tactics.tsx │ │ │ │ │ │ │ └── techniques │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── flyout-technique │ │ │ │ │ │ │ │ │ ├── flyout-technique-columns.tsx │ │ │ │ │ │ │ │ │ ├── flyout-technique.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── technique-row-details.tsx │ │ │ │ │ │ │ │ └── rule-details.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── techniques.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── mitre.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── intelligence │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── intelligence.test.tsx.snap │ │ │ │ │ │ ├── all_resources.tsx │ │ │ │ │ │ ├── all_resources_search_results.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── intelligence.test.tsx │ │ │ │ │ │ ├── intelligence.tsx │ │ │ │ │ │ ├── intelligence_left_panel.tsx │ │ │ │ │ │ ├── intelligence_right_panel.tsx │ │ │ │ │ │ ├── resource.tsx │ │ │ │ │ │ ├── resource_button.scss │ │ │ │ │ │ ├── resource_button.tsx │ │ │ │ │ │ ├── resource_detail_flyout.tsx │ │ │ │ │ │ ├── resource_detail_references_table.tsx │ │ │ │ │ │ └── resources.tsx │ │ │ │ ├── nist │ │ │ │ │ ├── dashboards │ │ │ │ │ │ ├── dashboard-panels.ts │ │ │ │ │ │ ├── dashboard.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── events │ │ │ │ │ │ └── nist-columns.tsx │ │ │ │ ├── office │ │ │ │ │ ├── dashboard │ │ │ │ │ │ ├── dashboard.tsx │ │ │ │ │ │ ├── dashboard_panels.ts │ │ │ │ │ │ ├── dashboard_panels_kpis.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── events │ │ │ │ │ │ └── office-365-columns.tsx │ │ │ │ │ └── panel │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── drilldown-ip-config.tsx │ │ │ │ │ │ ├── drilldown-operations-config.tsx │ │ │ │ │ │ ├── drilldown-rules-config.tsx │ │ │ │ │ │ ├── drilldown-user-config.tsx │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ │ └── helper-value-suggestion.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── main-view-config.tsx │ │ │ │ │ │ ├── module-config.tsx │ │ │ │ │ │ ├── search-bar-config.ts │ │ │ │ │ │ └── visualizations.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── office-panel.tsx │ │ │ │ │ │ └── views │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── office-body.tsx │ │ │ │ │ │ ├── office-drilldown.tsx │ │ │ │ │ │ └── office-stats.tsx │ │ │ │ ├── overview.tsx │ │ │ │ ├── pci │ │ │ │ │ ├── dashboards │ │ │ │ │ │ ├── dashboard-panels.ts │ │ │ │ │ │ ├── dashboard.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── events │ │ │ │ │ │ └── pci-columns.tsx │ │ │ │ ├── sca │ │ │ │ │ ├── components │ │ │ │ │ │ ├── dashboard │ │ │ │ │ │ │ ├── sca-dashboard.tsx │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ ├── dashboard-kpis.ts │ │ │ │ │ │ │ │ ├── dashboard-panels.ts │ │ │ │ │ │ │ │ ├── dashboard-tables.ts │ │ │ │ │ │ │ │ └── visualization-helpers.ts │ │ │ │ │ │ ├── inventory │ │ │ │ │ │ │ ├── sca-inventory.tsx │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ ├── get-vis-sca-inventory.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── sca-check-details.tsx │ │ │ │ │ ├── docs │ │ │ │ │ │ └── sca-readme.md │ │ │ │ │ ├── events │ │ │ │ │ │ └── configuration-assessment-columns.tsx │ │ │ │ │ ├── hocs │ │ │ │ │ │ └── validate-sca-states-index-pattern.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── utils │ │ │ │ │ │ └── constants.ts │ │ │ │ ├── server-management-statistics │ │ │ │ │ └── dashboards │ │ │ │ │ │ ├── dashboardTabsPanels.tsx │ │ │ │ │ │ ├── dashboard_analysis_engine.tsx │ │ │ │ │ │ ├── dashboard_listener_engine.tsx │ │ │ │ │ │ ├── dashboard_panels_analysis_engine.ts │ │ │ │ │ │ ├── dashboard_panels_listener_engine.ts │ │ │ │ │ │ └── statistics_dashboard.scss │ │ │ │ ├── threat-hunting │ │ │ │ │ ├── dashboard │ │ │ │ │ │ ├── dashboard.tsx │ │ │ │ │ │ ├── dashboard_panels.ts │ │ │ │ │ │ ├── dashboard_panels_kpis.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── events │ │ │ │ │ │ └── threat-hunting-columns.tsx │ │ │ │ ├── tsc │ │ │ │ │ ├── dashboards │ │ │ │ │ │ ├── dashboard-panels.ts │ │ │ │ │ │ ├── dashboard.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── events │ │ │ │ │ │ └── tsc-columns.tsx │ │ │ │ └── vulnerabilities │ │ │ │ │ ├── common │ │ │ │ │ ├── components │ │ │ │ │ │ ├── check-module-enabled.tsx │ │ │ │ │ │ ├── no_results.tsx │ │ │ │ │ │ └── vuls-evaluation-filter.tsx │ │ │ │ │ └── hocs │ │ │ │ │ │ └── validate-vulnerabilities-states-index-pattern.tsx │ │ │ │ │ ├── dashboards │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── inventory │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── inventory.scss │ │ │ │ │ │ └── inventory.tsx │ │ │ │ │ └── overview │ │ │ │ │ │ ├── dashboard.tsx │ │ │ │ │ │ ├── dashboard_panels.ts │ │ │ │ │ │ ├── dashboard_panels_filters.ts │ │ │ │ │ │ ├── dashboard_panels_kpis.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── vulnerability_detector_filters.scss │ │ │ │ │ ├── events │ │ │ │ │ └── vulnerabilities-columns.tsx │ │ │ │ │ └── index.tsx │ │ │ ├── router-search │ │ │ │ └── index.ts │ │ │ ├── search-bar │ │ │ │ ├── README.md │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── index.test.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── query-language │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── aql.test.tsx.snap │ │ │ │ │ └── wql.test.tsx.snap │ │ │ │ │ ├── aql.md │ │ │ │ │ ├── aql.test.tsx │ │ │ │ │ ├── aql.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── wql.md │ │ │ │ │ ├── wql.test.tsx │ │ │ │ │ └── wql.tsx │ │ │ ├── security │ │ │ │ ├── index.ts │ │ │ │ ├── main.tsx │ │ │ │ ├── policies │ │ │ │ │ ├── create-policy.tsx │ │ │ │ │ ├── edit-policy.tsx │ │ │ │ │ ├── policies-table.tsx │ │ │ │ │ └── policies.tsx │ │ │ │ ├── roles-mapping │ │ │ │ │ ├── components │ │ │ │ │ │ ├── roles-mapping-create.tsx │ │ │ │ │ │ ├── roles-mapping-edit.tsx │ │ │ │ │ │ ├── roles-mapping-table.tsx │ │ │ │ │ │ └── rule-editor.tsx │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── rule-editor.helper.test.ts │ │ │ │ │ │ └── rule-editor.helper.ts │ │ │ │ │ └── roles-mapping.tsx │ │ │ │ ├── roles │ │ │ │ │ ├── create-role.tsx │ │ │ │ │ ├── edit-role-table.tsx │ │ │ │ │ ├── edit-role.tsx │ │ │ │ │ ├── roles-table.tsx │ │ │ │ │ ├── roles.tsx │ │ │ │ │ ├── services │ │ │ │ │ │ ├── add-role-rules.service.ts │ │ │ │ │ │ ├── get-roles.service.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── remove-role-rules.service.ts │ │ │ │ │ └── types │ │ │ │ │ │ └── role.type.ts │ │ │ │ ├── rules │ │ │ │ │ ├── services │ │ │ │ │ │ ├── create-rule.service.ts │ │ │ │ │ │ ├── delete-rules.service.ts │ │ │ │ │ │ ├── get-rules.service.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── update-rule.service.ts │ │ │ │ │ └── types │ │ │ │ │ │ └── rule.type.ts │ │ │ │ └── users │ │ │ │ │ ├── components │ │ │ │ │ ├── create-user.tsx │ │ │ │ │ ├── edit-user.tsx │ │ │ │ │ └── users-table.tsx │ │ │ │ │ ├── services │ │ │ │ │ ├── add-user-roles.service.ts │ │ │ │ │ ├── create-user.service.ts │ │ │ │ │ ├── delete-users.service.ts │ │ │ │ │ ├── get-users.service.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── remove-user-roles.service.ts │ │ │ │ │ ├── update-allow-run-as.service.ts │ │ │ │ │ └── update-user.service.ts │ │ │ │ │ ├── types │ │ │ │ │ └── user.type.ts │ │ │ │ │ └── users.tsx │ │ │ ├── settings │ │ │ │ ├── about │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── appInfo.test.tsx.snap │ │ │ │ │ │ └── generalInfo.test.tsx.snap │ │ │ │ │ ├── appInfo.test.tsx │ │ │ │ │ ├── appInfo.tsx │ │ │ │ │ ├── generalInfo.test.tsx │ │ │ │ │ ├── generalInfo.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── api │ │ │ │ │ ├── add-api.tsx │ │ │ │ │ ├── api-table.js │ │ │ │ │ └── available-updates-flyout │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── index.test.tsx.snap │ │ │ │ │ │ └── update-detail.test.tsx.snap │ │ │ │ │ │ ├── index.test.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── update-detail.test.tsx │ │ │ │ │ │ └── update-detail.tsx │ │ │ │ ├── index.ts │ │ │ │ └── settings.tsx │ │ │ ├── tools │ │ │ │ ├── devtools │ │ │ │ │ ├── README.md │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── initial-buffer.test.ts.snap │ │ │ │ │ ├── application │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── dev-tools-action-buttons.tsx │ │ │ │ │ │ │ ├── dev-tools-header.tsx │ │ │ │ │ │ │ ├── dev-tools-mirrors.test.tsx │ │ │ │ │ │ │ ├── dev-tools-mirrors.tsx │ │ │ │ │ │ │ ├── dev-tools-request-status-indicator.test.tsx │ │ │ │ │ │ │ ├── dev-tools-request-status-indicator.tsx │ │ │ │ │ │ │ ├── dev-tools-tabs.tsx │ │ │ │ │ │ │ ├── separator │ │ │ │ │ │ │ │ └── dev-tools-column-separator.tsx │ │ │ │ │ │ │ └── top-nav │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── top-nav-menu.test.tsx.snap │ │ │ │ │ │ │ │ ├── get-top-nav.tsx │ │ │ │ │ │ │ │ ├── top-nav-items.test.tsx │ │ │ │ │ │ │ │ ├── top-nav-items.tsx │ │ │ │ │ │ │ │ ├── top-nav-menu.test.tsx │ │ │ │ │ │ │ │ └── top-nav-menu.tsx │ │ │ │ │ │ └── hooks │ │ │ │ │ │ │ ├── use-hotkey-for-dev-tools.test.ts │ │ │ │ │ │ │ ├── use-hotkey-for-dev-tools.ts │ │ │ │ │ │ │ └── use-setup.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── devtools-old.test.tsx │ │ │ │ │ ├── devtools-old.tsx │ │ │ │ │ ├── excluded-devtools-autocomplete-keys.ts │ │ │ │ │ ├── initial-buffer.test.ts │ │ │ │ │ ├── initial-buffer.ts │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── dev-tools-actions.test.ts.snap │ │ │ │ │ │ │ ├── dev-tools-actions.test.ts │ │ │ │ │ │ │ └── dev-tools-actions.ts │ │ │ │ │ │ ├── adapters │ │ │ │ │ │ │ ├── error-adapter.integration.test.ts │ │ │ │ │ │ │ ├── error-adapter.test.ts │ │ │ │ │ │ │ └── error-adapter.ts │ │ │ │ │ │ ├── api.ts │ │ │ │ │ │ ├── constants │ │ │ │ │ │ │ ├── common.ts │ │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ │ ├── http.ts │ │ │ │ │ │ │ ├── messages.ts │ │ │ │ │ │ │ ├── regex.ts │ │ │ │ │ │ │ └── ui.ts │ │ │ │ │ │ ├── grouping │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── grouping-service.test.ts.snap │ │ │ │ │ │ │ ├── grouping-service.test.ts │ │ │ │ │ │ │ ├── grouping-service.ts │ │ │ │ │ │ │ ├── index.test.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ │ ├── docs-link-resolver.test.ts │ │ │ │ │ │ │ │ ├── docs-link-resolver.ts │ │ │ │ │ │ │ │ ├── json-linter.test.ts │ │ │ │ │ │ │ │ ├── json-linter.ts │ │ │ │ │ │ │ │ ├── state-adapter.test.ts │ │ │ │ │ │ │ │ ├── state-adapter.ts │ │ │ │ │ │ │ │ ├── ui-controller.test.ts │ │ │ │ │ │ │ │ └── ui-controller.ts │ │ │ │ │ │ ├── hints │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── autocomplete.test.ts │ │ │ │ │ │ │ ├── autocomplete.ts │ │ │ │ │ │ │ ├── dictionary-hint.test.ts │ │ │ │ │ │ │ ├── dictionary-hint.ts │ │ │ │ │ │ │ └── dictionary │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ │ │ ├── context.ts │ │ │ │ │ │ │ │ ├── factory.ts │ │ │ │ │ │ │ │ ├── hint-provider.test.ts │ │ │ │ │ │ │ │ ├── hint-provider.ts │ │ │ │ │ │ │ │ ├── strategies │ │ │ │ │ │ │ │ ├── body-strategy.test.ts │ │ │ │ │ │ │ │ ├── body-strategy.ts │ │ │ │ │ │ │ │ ├── fallback-strategy.test.ts │ │ │ │ │ │ │ │ ├── fallback-strategy.ts │ │ │ │ │ │ │ │ ├── hint-strategy.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── request-line-strategy.test.ts │ │ │ │ │ │ │ │ └── request-line-strategy.ts │ │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── hint-builders.test.ts.snap │ │ │ │ │ │ │ │ ├── body-utils.test.ts │ │ │ │ │ │ │ │ ├── body-utils.ts │ │ │ │ │ │ │ │ ├── endpoint-utils.test.ts │ │ │ │ │ │ │ │ ├── endpoint-utils.ts │ │ │ │ │ │ │ │ ├── hint-builders.test.ts │ │ │ │ │ │ │ │ ├── hint-builders.ts │ │ │ │ │ │ │ │ ├── hint-renderer.ts │ │ │ │ │ │ │ │ ├── hint-utils.test.ts │ │ │ │ │ │ │ │ ├── hint-utils.ts │ │ │ │ │ │ │ │ ├── logging-adapter.ts │ │ │ │ │ │ │ │ ├── query-utils.test.ts │ │ │ │ │ │ │ │ └── query-utils.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── init.ts │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── dynamic-height.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── resizable-columns.ts │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── request-builder.test.ts.snap │ │ │ │ │ │ │ ├── api-routes.types.ts │ │ │ │ │ │ │ ├── error-service.test.ts │ │ │ │ │ │ │ ├── error-service.ts │ │ │ │ │ │ │ ├── file-service.test.ts │ │ │ │ │ │ │ ├── file-service.ts │ │ │ │ │ │ │ ├── request-builder.test.ts │ │ │ │ │ │ │ ├── request-builder.ts │ │ │ │ │ │ │ ├── response-handler.test.ts │ │ │ │ │ │ │ ├── response-handler.ts │ │ │ │ │ │ │ ├── routes-service.test.ts │ │ │ │ │ │ │ ├── routes-service.ts │ │ │ │ │ │ │ ├── services.integration.test.ts │ │ │ │ │ │ │ ├── wz-http-client.test.ts │ │ │ │ │ │ │ └── wz-http-client.ts │ │ │ │ │ │ ├── types │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── editor.ts │ │ │ │ │ │ │ └── http.ts │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── json.test.ts.snap │ │ │ │ │ │ │ ├── json.test.ts │ │ │ │ │ │ │ └── json.ts │ │ │ │ │ └── types │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── keys.ts │ │ │ │ └── tools-router.tsx │ │ │ ├── visualize │ │ │ │ └── components │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── sample-data-warning.test.js │ │ │ │ │ └── sample-data-warning.tsx │ │ │ ├── wz-agent-selector │ │ │ │ ├── button-explore-agent.scss │ │ │ │ ├── button-explore-agent.tsx │ │ │ │ ├── wz-agent-selector-service.ts │ │ │ │ ├── wz-agent-selector-wrapper.js │ │ │ │ └── wz-agent-selector.js │ │ │ ├── wz-date-picker │ │ │ │ ├── components │ │ │ │ │ ├── condensed.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── wz-date-picker.tsx │ │ │ ├── wz-link │ │ │ │ └── wz-link.tsx │ │ │ ├── wz-menu │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── wz-menu.test.tsx.snap │ │ │ │ ├── selectors.tsx │ │ │ │ ├── wz-menu-wrapper.js │ │ │ │ ├── wz-menu.js │ │ │ │ ├── wz-menu.scss │ │ │ │ └── wz-menu.test.tsx │ │ │ ├── wz-search-bar │ │ │ │ ├── components │ │ │ │ │ ├── custom-badge │ │ │ │ │ │ ├── custom-badge.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── wz-search-badges │ │ │ │ │ │ ├── context-menu.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── wz-search-badges.scss │ │ │ │ │ │ └── wz-search-badges.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── api-handler.ts │ │ │ │ │ ├── base-handler.ts │ │ │ │ │ ├── filters-to-object.test.ts │ │ │ │ │ ├── filters-to-object.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── q-handler.ts │ │ │ │ │ ├── q-interpreter.test-cases.ts │ │ │ │ │ ├── q-interpreter.test.ts │ │ │ │ │ ├── q-interpreter.ts │ │ │ │ │ └── suggest-handler.ts │ │ │ │ ├── src │ │ │ │ │ └── style │ │ │ │ │ │ ├── wz-date-picker.scss │ │ │ │ │ │ └── wz-search-badges.scss │ │ │ │ ├── wz-search-bar.test-cases.ts │ │ │ │ ├── wz-search-bar.test.tsx │ │ │ │ ├── wz-search-bar.tsx │ │ │ │ └── wz-search-buttons.tsx │ │ │ ├── wz-stat │ │ │ │ ├── _stat.scss │ │ │ │ ├── common.ts │ │ │ │ ├── index.ts │ │ │ │ └── wzStat.tsx │ │ │ └── wz-updates-notification │ │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── index.test.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── wz-updates-notification.tsx │ │ ├── controllers │ │ │ ├── management │ │ │ │ └── components │ │ │ │ │ └── management │ │ │ │ │ ├── cluster │ │ │ │ │ └── cluster-overview.tsx │ │ │ │ │ ├── common │ │ │ │ │ ├── colors.ts │ │ │ │ │ └── error-helper.ts │ │ │ │ │ ├── configuration │ │ │ │ │ ├── active-response │ │ │ │ │ │ └── active-response-agent.js │ │ │ │ │ ├── alerts │ │ │ │ │ │ └── alerts-labels.js │ │ │ │ │ ├── client-buffer │ │ │ │ │ │ └── client-buffer.js │ │ │ │ │ ├── client │ │ │ │ │ │ └── client.js │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── cluster.test.js.snap │ │ │ │ │ │ ├── cluster.js │ │ │ │ │ │ └── cluster.test.js │ │ │ │ │ ├── commands │ │ │ │ │ │ └── commands.js │ │ │ │ │ ├── configuration-main.js │ │ │ │ │ ├── configuration-overview.js │ │ │ │ │ ├── configuration-settings.js │ │ │ │ │ ├── configuration-switch.js │ │ │ │ │ ├── configuration-switch.test.tsx │ │ │ │ │ ├── edit-configuration │ │ │ │ │ │ └── edit-configuration.js │ │ │ │ │ ├── global-configuration │ │ │ │ │ │ ├── global-configuration-global.js │ │ │ │ │ │ ├── global-configuration-remote.js │ │ │ │ │ │ └── global-configuration.js │ │ │ │ │ ├── integrity-monitoring │ │ │ │ │ │ ├── help-links.js │ │ │ │ │ │ ├── integrity-monitoring-file-limit.js │ │ │ │ │ │ ├── integrity-monitoring-general.js │ │ │ │ │ │ ├── integrity-monitoring-ignored.js │ │ │ │ │ │ ├── integrity-monitoring-monitored.js │ │ │ │ │ │ ├── integrity-monitoring-no-diff.js │ │ │ │ │ │ ├── integrity-monitoring-registry-limit.js │ │ │ │ │ │ ├── integrity-monitoring-synchronization.js │ │ │ │ │ │ ├── integrity-monitoring-who-data.js │ │ │ │ │ │ └── integrity-monitoring.js │ │ │ │ │ ├── inventory │ │ │ │ │ │ └── inventory.js │ │ │ │ │ ├── log-collection │ │ │ │ │ │ ├── help-links.js │ │ │ │ │ │ ├── log-collection-commands.js │ │ │ │ │ │ ├── log-collection-journald.js │ │ │ │ │ │ ├── log-collection-logs.js │ │ │ │ │ │ ├── log-collection-macosevents.js │ │ │ │ │ │ ├── log-collection-sockets.js │ │ │ │ │ │ ├── log-collection-windowsevents.js │ │ │ │ │ │ ├── log-collection.js │ │ │ │ │ │ ├── log-collection.test.tsx │ │ │ │ │ │ └── types.js │ │ │ │ │ ├── log-settings │ │ │ │ │ │ ├── help-links.js │ │ │ │ │ │ ├── log-settings-alerts.js │ │ │ │ │ │ ├── log-settings-archives.js │ │ │ │ │ │ ├── log-settings-internal.js │ │ │ │ │ │ └── log-settings.js │ │ │ │ │ ├── policy-monitoring │ │ │ │ │ │ ├── help-links.js │ │ │ │ │ │ ├── policy-monitoring-general.js │ │ │ │ │ │ ├── policy-monitoring-ignored.js │ │ │ │ │ │ ├── policy-monitoring-sca.js │ │ │ │ │ │ ├── policy-monitoring-system-audit.js │ │ │ │ │ │ └── policy-monitoring.js │ │ │ │ │ ├── registration-service │ │ │ │ │ │ └── registration-service.js │ │ │ │ │ ├── util-components │ │ │ │ │ │ ├── badge.js │ │ │ │ │ │ ├── code-editor.js │ │ │ │ │ │ ├── configuration-cluster-selector.js │ │ │ │ │ │ ├── configuration-overview-table.js │ │ │ │ │ │ ├── configuration-path.js │ │ │ │ │ │ ├── configuration-setting.js │ │ │ │ │ │ ├── configuration-settings-group.js │ │ │ │ │ │ ├── configuration-settings-header.js │ │ │ │ │ │ ├── configuration-settings-list-selector.js │ │ │ │ │ │ ├── help-button-popover.js │ │ │ │ │ │ ├── loading.js │ │ │ │ │ │ ├── no-config.js │ │ │ │ │ │ ├── refresh-cluster-info-button.js │ │ │ │ │ │ ├── tab-selector.js │ │ │ │ │ │ ├── view-selector.js │ │ │ │ │ │ └── wz-api-not-reachable.js │ │ │ │ │ ├── util-hocs │ │ │ │ │ │ ├── loading.js │ │ │ │ │ │ ├── render-if.js │ │ │ │ │ │ └── wz-config.js │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── builders.js │ │ │ │ │ │ ├── utils.js │ │ │ │ │ │ ├── wz-fetch.js │ │ │ │ │ │ ├── xml-beautifier.js │ │ │ │ │ │ ├── xml.js │ │ │ │ │ │ └── xml.test.ts │ │ │ │ │ └── vulnerabilities │ │ │ │ │ │ ├── help-links.js │ │ │ │ │ │ └── vulnerabilities.js │ │ │ │ │ ├── groups │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── groups-main.test.tsx.snap │ │ │ │ │ ├── actions-buttons-agents.js │ │ │ │ │ ├── actions-buttons-files.js │ │ │ │ │ ├── actions-buttons-main.js │ │ │ │ │ ├── group-agents-table.js │ │ │ │ │ ├── group-detail.js │ │ │ │ │ ├── group-files-table.js │ │ │ │ │ ├── groups-editor.js │ │ │ │ │ ├── groups-main.js │ │ │ │ │ ├── groups-main.test.tsx │ │ │ │ │ ├── groups-overview.js │ │ │ │ │ └── utils │ │ │ │ │ │ ├── columns-files.js │ │ │ │ │ │ ├── groups-handler.js │ │ │ │ │ │ └── valid-configuration.js │ │ │ │ │ ├── management-main.js │ │ │ │ │ ├── management-provider.js │ │ │ │ │ ├── mg-logs │ │ │ │ │ └── logs.js │ │ │ │ │ ├── statistics │ │ │ │ │ ├── prompt-statistics-no-indices.tsx │ │ │ │ │ ├── statistics-main.tsx │ │ │ │ │ └── statistics-overview.js │ │ │ │ │ └── status │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── status-main.test.tsx.snap │ │ │ │ │ ├── actions-buttons-main.js │ │ │ │ │ ├── status-agent-info.js │ │ │ │ │ ├── status-daemons.js │ │ │ │ │ ├── status-main.js │ │ │ │ │ ├── status-main.test.tsx │ │ │ │ │ ├── status-node-info.js │ │ │ │ │ ├── status-overview.js │ │ │ │ │ ├── status-stats.js │ │ │ │ │ └── utils │ │ │ │ │ └── status-handler.js │ │ │ └── overview │ │ │ │ └── components │ │ │ │ ├── __snapshots__ │ │ │ │ └── stats.test.tsx.snap │ │ │ │ ├── last-alerts-stat │ │ │ │ ├── index.ts │ │ │ │ ├── last-alerts-query.ts │ │ │ │ ├── last-alerts-service.ts │ │ │ │ └── last-alerts-stat.tsx │ │ │ │ ├── overview-actions │ │ │ │ ├── agents-selection-table.js │ │ │ │ └── agents-selector.scss │ │ │ │ ├── stats.js │ │ │ │ ├── stats.scss │ │ │ │ └── stats.test.tsx │ │ ├── factories │ │ │ ├── misc.js │ │ │ ├── tab-visualizations.js │ │ │ └── wazuh-security.js │ │ ├── index.ts │ │ ├── kibana-integrations │ │ │ ├── discover │ │ │ │ ├── application │ │ │ │ │ ├── _discover.scss │ │ │ │ │ ├── angular │ │ │ │ │ │ ├── _index.scss │ │ │ │ │ │ ├── discover_legacy.html │ │ │ │ │ │ └── doc_table │ │ │ │ │ │ │ ├── _doc_table.scss │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── _index.scss │ │ │ │ │ │ │ ├── _table_header.scss │ │ │ │ │ │ │ └── table_row │ │ │ │ │ │ │ │ ├── _cell.scss │ │ │ │ │ │ │ │ ├── _details.scss │ │ │ │ │ │ │ │ ├── _index.scss │ │ │ │ │ │ │ │ ├── _open.scss │ │ │ │ │ │ │ │ ├── cell.html │ │ │ │ │ │ │ │ ├── details.html │ │ │ │ │ │ │ │ ├── open.html │ │ │ │ │ │ │ │ └── truncate_by_height.html │ │ │ │ │ │ │ ├── doc_table.html │ │ │ │ │ │ │ └── index.scss │ │ │ │ │ ├── components │ │ │ │ │ │ └── hits_counter │ │ │ │ │ │ │ ├── hits_counter.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── format_number_with_commas.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── shorten_dotted_string.ts │ │ │ │ │ └── index.scss │ │ │ │ └── saved_searches │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ └── plugins │ │ │ │ └── opensearch_dashboards_legacy │ │ │ │ └── public │ │ │ │ ├── angular │ │ │ │ ├── subscribe_with_scope.test.ts │ │ │ │ └── subscribe_with_scope.ts │ │ │ │ └── notify │ │ │ │ └── lib │ │ │ │ ├── add_fatal_error.ts │ │ │ │ ├── format_angular_http_error.ts │ │ │ │ ├── format_msg.test.js │ │ │ │ ├── format_msg.ts │ │ │ │ ├── format_opensearch_msg.test.js │ │ │ │ ├── format_opensearch_msg.ts │ │ │ │ ├── format_stack.ts │ │ │ │ └── index.ts │ │ ├── kibana-services.ts │ │ ├── package.test.ts │ │ ├── plugin.ts │ │ ├── react-services │ │ │ ├── action-agents.js │ │ │ ├── app-state.js │ │ │ ├── check-daemons-status.js │ │ │ ├── check-index.ts │ │ │ ├── common-services.ts │ │ │ ├── error-handler.ts │ │ │ ├── error-management │ │ │ │ ├── docs │ │ │ │ │ ├── README.md │ │ │ │ │ └── examples │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── error-handler-class-example.test.tsx │ │ │ │ │ │ └── images │ │ │ │ │ │ ├── error-handler-examples-unit-tests.jpg │ │ │ │ │ │ ├── log-error.png │ │ │ │ │ │ ├── toast-error-details.png │ │ │ │ │ │ └── toast-error.png │ │ │ │ ├── error-factory │ │ │ │ │ ├── error-factory.test.ts │ │ │ │ │ ├── error-factory.ts │ │ │ │ │ ├── errors │ │ │ │ │ │ ├── HttpError.ts │ │ │ │ │ │ ├── IndexerApiError.ts │ │ │ │ │ │ ├── WarningError.ts │ │ │ │ │ │ ├── WazuhApiError.ts │ │ │ │ │ │ ├── WazuhError.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── error-handler │ │ │ │ │ ├── decorator │ │ │ │ │ │ ├── error-handler-decorator.test.tsx │ │ │ │ │ │ └── error-handler-decorator.ts │ │ │ │ │ ├── error-handler.test.ts │ │ │ │ │ ├── error-handler.ts │ │ │ │ │ ├── hoc │ │ │ │ │ │ ├── withErrorHandler.test.tsx │ │ │ │ │ │ └── withErrorHandler.tsx │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── useErrorHandler.test.tsx │ │ │ │ │ │ └── useErrorHandler.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── error-orchestrator │ │ │ │ ├── README.md │ │ │ │ ├── error-orchestrator-base.test.ts │ │ │ │ ├── error-orchestrator-base.ts │ │ │ │ ├── error-orchestrator-business.test.ts │ │ │ │ ├── error-orchestrator-business.ts │ │ │ │ ├── error-orchestrator-critical.test.ts │ │ │ │ ├── error-orchestrator-critical.ts │ │ │ │ ├── error-orchestrator-ui.test.ts │ │ │ │ ├── error-orchestrator-ui.ts │ │ │ │ ├── error-orchestrator.factory.ts │ │ │ │ ├── error-orchestrator.service.ts │ │ │ │ └── types.ts │ │ │ ├── format-number.ts │ │ │ ├── generic-request.js │ │ │ ├── generic-request.test.ts │ │ │ ├── group-handler.js │ │ │ ├── index.ts │ │ │ ├── interfaces │ │ │ │ └── api-response.interface.ts │ │ │ ├── load-app-config.service.ts │ │ │ ├── navigation-service.md │ │ │ ├── navigation-service.test.ts │ │ │ ├── navigation-service.tsx │ │ │ ├── query-config.js │ │ │ ├── reporting.js │ │ │ ├── saved-objects.js │ │ │ ├── saved-objects.test.ts │ │ │ ├── state-storage.ts │ │ │ ├── time-service.js │ │ │ ├── toast-notifications.tsx │ │ │ ├── wazuh-config.js │ │ │ ├── wz-agents.ts │ │ │ ├── wz-api-check.js │ │ │ ├── wz-api-check.test.ts │ │ │ ├── wz-api-utils.ts │ │ │ ├── wz-authentication.test.ts │ │ │ ├── wz-authentication.ts │ │ │ ├── wz-csv.js │ │ │ ├── wz-request.ts │ │ │ ├── wz-security-opensearch-dashboards-security.js │ │ │ ├── wz-security-opensearch-dashboards-security.test.js │ │ │ ├── wz-user-permissions.test.ts │ │ │ └── wz-user-permissions.ts │ │ ├── redux │ │ │ ├── actions │ │ │ │ ├── appConfigActions.ts │ │ │ │ ├── appStateActions.js │ │ │ │ ├── configurationActions.js │ │ │ │ ├── globalBreadcrumbActions.js │ │ │ │ ├── groupsActions.js │ │ │ │ ├── reportingActions.js │ │ │ │ └── statusActions.js │ │ │ ├── reducers │ │ │ │ ├── appConfigReducers.ts │ │ │ │ ├── appStateReducers.js │ │ │ │ ├── configurationReducers.js │ │ │ │ ├── globalBreadcrumbReducers.js │ │ │ │ ├── groupsReducers.js │ │ │ │ ├── reportingReducers.js │ │ │ │ ├── rootReducers.js │ │ │ │ └── statusReducers.js │ │ │ ├── render-with-redux-provider.tsx │ │ │ ├── selectors │ │ │ │ └── appStateSelectors.ts │ │ │ ├── store.js │ │ │ └── types.ts │ │ ├── sections.ts │ │ ├── services │ │ │ ├── csv-request.js │ │ │ ├── file-saver.js │ │ │ ├── request-handler.js │ │ │ ├── resolves │ │ │ │ ├── get-config.js │ │ │ │ ├── index.js │ │ │ │ └── nested-resolve.ts │ │ │ └── visualizations │ │ │ │ ├── generators │ │ │ │ ├── by-field.ts │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ ├── constants.ts │ │ │ │ └── create-saved-vis-data.ts │ │ ├── styles │ │ │ ├── common.scss │ │ │ ├── component.scss │ │ │ ├── dashboard.scss │ │ │ ├── height.scss │ │ │ ├── index.ts │ │ │ ├── inventory.scss │ │ │ ├── layout.scss │ │ │ ├── media-queries.scss │ │ │ ├── theme │ │ │ │ └── dark │ │ │ │ │ └── index.dark.scss │ │ │ └── typography.scss │ │ ├── types.ts │ │ └── utils │ │ │ ├── applications.ts │ │ │ ├── assets.ts │ │ │ ├── check-plugin-version.tsx │ │ │ ├── codemirror │ │ │ ├── brace-fold.js │ │ │ ├── codemirror.scss │ │ │ ├── foldcode.js │ │ │ ├── foldgutter.js │ │ │ ├── foldgutter.scss │ │ │ ├── formatting.js │ │ │ ├── http-request-syntax-rules.md │ │ │ ├── http-request.js │ │ │ ├── http-request.scss │ │ │ ├── index.js │ │ │ ├── javascript.js │ │ │ ├── json-lint.js │ │ │ ├── lesser-dark.scss │ │ │ ├── lib │ │ │ │ ├── codemirror.d.ts │ │ │ │ └── codemirror.js │ │ │ ├── mark-selection.js │ │ │ ├── search-cursor.js │ │ │ ├── show-hint.js │ │ │ ├── show-hint.scss │ │ │ ├── ttcn.scss │ │ │ └── xml.js │ │ │ ├── components-os-support.js │ │ │ ├── create-getter-setter.ts │ │ │ ├── dashboards-fields.test.tsx │ │ │ ├── dynamic-height.js │ │ │ ├── errors.ts │ │ │ ├── filter-handler.js │ │ │ ├── fontawesome │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── less │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── screen-reader.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ │ ├── functions-to-test.ts │ │ │ ├── index.ts │ │ │ ├── json-beautifier.js │ │ │ ├── known-fields-loader.js │ │ │ ├── known-fields-loader.test.tsx │ │ │ ├── known-fields.test.tsx │ │ │ ├── migrate_legacy_query.ts │ │ │ └── strings-tools.js │ ├── scripts │ │ ├── build-tools │ │ │ ├── run │ │ │ └── update-indexer-resources │ │ ├── generate-api-data.js │ │ ├── generate-build-version.js │ │ ├── generate-known-fields │ │ │ ├── README.md │ │ │ └── generate-known-fields.js │ │ ├── jest.js │ │ ├── manifest.js │ │ ├── release │ │ │ └── bump.js │ │ ├── runner.js │ │ └── sample-data-templates │ │ │ ├── README.md │ │ │ └── update-templates-sample-data.js │ ├── server │ │ ├── controllers │ │ │ ├── decorators.test.ts │ │ │ ├── decorators.ts │ │ │ ├── index.ts │ │ │ ├── wazuh-api.ts │ │ │ ├── wazuh-elastic.ts │ │ │ ├── wazuh-hosts.ts │ │ │ └── wazuh-utils │ │ │ │ ├── index.ts │ │ │ │ ├── ui-logs.controller.test.ts │ │ │ │ └── ui-logs.controller.ts │ │ ├── health-check │ │ │ ├── alerting-monitors.test.ts │ │ │ ├── alerting-monitors.ts │ │ │ ├── index-patterns.test.ts │ │ │ ├── index-patterns.ts │ │ │ ├── index.ts │ │ │ ├── notification-default-channels │ │ │ │ ├── common │ │ │ │ │ └── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── plugin │ │ │ │ │ ├── notification-plugin.test.ts │ │ │ │ │ └── notification-plugin.ts │ │ │ │ └── tasks │ │ │ │ │ ├── index.test.ts │ │ │ │ │ └── index.ts │ │ │ ├── saved-objects │ │ │ │ ├── constants.ts │ │ │ │ ├── dashboard-definition-reader.test.ts │ │ │ │ ├── dashboard-definition-reader.ts │ │ │ │ ├── index.ts │ │ │ │ ├── saved-object.types.ts │ │ │ │ ├── task-creator-saved-objects-for-dashboards-and-visualizations.test.ts │ │ │ │ └── task-creator-saved-objects-for-dashboards-and-visualizations.ts │ │ │ ├── server-api.test.ts │ │ │ ├── server-api.ts │ │ │ ├── templates.test.ts │ │ │ ├── templates.ts │ │ │ └── types.ts │ │ ├── index.ts │ │ ├── integration-files │ │ │ └── kibana-template.ts │ │ ├── lib │ │ │ ├── api-errors-equivalence.ts │ │ │ ├── cookie.ts │ │ │ ├── error-response.ts │ │ │ ├── extract-error-message.ts │ │ │ ├── filesystem.ts │ │ │ ├── generate-alerts │ │ │ │ ├── __tests__ │ │ │ │ │ └── generate-alerts.test.js │ │ │ │ ├── constants.js │ │ │ │ ├── generate-alerts-script.js │ │ │ │ ├── helpers │ │ │ │ │ ├── date-formatter.js │ │ │ │ │ ├── date-formatter.test.js │ │ │ │ │ ├── ecs-generator.js │ │ │ │ │ ├── interpolate-alert-props.js │ │ │ │ │ ├── number-formatter.js │ │ │ │ │ ├── number-formatter.test.js │ │ │ │ │ ├── random.js │ │ │ │ │ ├── random.test.js │ │ │ │ │ ├── rule-generator.js │ │ │ │ │ ├── rule-generator.test.js │ │ │ │ │ └── wazuh-generator.js │ │ │ │ ├── sample-data │ │ │ │ │ ├── apache.js │ │ │ │ │ ├── audit.js │ │ │ │ │ ├── authentication.js │ │ │ │ │ ├── aws.js │ │ │ │ │ ├── azure.js │ │ │ │ │ ├── common.js │ │ │ │ │ ├── docker.js │ │ │ │ │ ├── gcp.js │ │ │ │ │ ├── github.js │ │ │ │ │ ├── integrity-monitoring.js │ │ │ │ │ ├── mitre.js │ │ │ │ │ ├── office.js │ │ │ │ │ ├── policy-monitoring.js │ │ │ │ │ ├── regulatory-compliance.js │ │ │ │ │ ├── regulatory-compliance.test.js │ │ │ │ │ ├── ssh.js │ │ │ │ │ ├── virustotal.js │ │ │ │ │ ├── vulnerabilities.js │ │ │ │ │ ├── web.js │ │ │ │ │ └── yara.js │ │ │ │ └── types.d.ts │ │ │ ├── generate-sample-data.ts │ │ │ ├── sample-data │ │ │ │ ├── dataset │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── agents-monitoring │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── server-statistics │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── states-fim-files │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── states-fim-registry-keys │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── states-fim-registry-values │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── states-inventory-browser-extensions │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── states-inventory-groups │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── states-inventory-hardware │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── states-inventory-hotfixes │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── states-inventory-interfaces │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── states-inventory-networks │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── states-inventory-packages │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── states-inventory-ports │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── states-inventory-processes │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── states-inventory-protocols │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── states-inventory-services │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── states-inventory-system │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── states-inventory-users │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── states-sca │ │ │ │ │ │ └── main.js │ │ │ │ │ ├── states-vulnerabilities │ │ │ │ │ │ └── main.js │ │ │ │ │ └── wazuh-events │ │ │ │ │ │ └── main.js │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── random.js │ │ │ │ └── shared-utils.js │ │ │ └── sanitizer │ │ │ │ ├── index.ts │ │ │ │ ├── sanitizer.test.ts │ │ │ │ └── sanitizer.ts │ │ ├── mocks │ │ │ └── platform-server.mock.ts │ │ ├── plugin.ts │ │ ├── routes │ │ │ ├── index.ts │ │ │ ├── wazuh-api-http-status.test.ts │ │ │ ├── wazuh-api.test.ts │ │ │ ├── wazuh-api.ts │ │ │ ├── wazuh-elastic.test.ts │ │ │ ├── wazuh-elastic.ts │ │ │ ├── wazuh-hosts.test.ts │ │ │ ├── wazuh-hosts.ts │ │ │ └── wazuh-utils │ │ │ │ ├── fixtures │ │ │ │ ├── fixture_file.txt │ │ │ │ ├── fixture_image_big.png │ │ │ │ ├── fixture_image_small.jpg │ │ │ │ ├── fixture_image_small.png │ │ │ │ └── fixture_image_small.svg │ │ │ │ ├── index.ts │ │ │ │ ├── ui-logs.test.ts │ │ │ │ └── ui-logs.ts │ │ ├── start │ │ │ ├── index.ts │ │ │ ├── initialize │ │ │ │ └── index.ts │ │ │ └── queue │ │ │ │ ├── index.ts │ │ │ │ └── queue.test.ts │ │ └── types.ts │ ├── test │ │ ├── __mocks__ │ │ │ ├── agent.ts │ │ │ └── localStorage.setup.ts │ │ ├── cypress │ │ │ ├── .eslintignore │ │ │ ├── .eslintrc.json │ │ │ ├── .nvmrc │ │ │ ├── .prettierrc │ │ │ ├── CODEOWNERS │ │ │ ├── README.md │ │ │ ├── STYLEGUIDE.md │ │ │ ├── cookies.json │ │ │ ├── cypress.json │ │ │ ├── cypress │ │ │ │ ├── fixtures │ │ │ │ │ ├── configuration.panel.text.json │ │ │ │ │ └── example.json │ │ │ │ ├── integration │ │ │ │ │ ├── features │ │ │ │ │ │ ├── agents │ │ │ │ │ │ │ └── add-agent-from-deploy-new-agent.feature │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ ├── Search-by-parameters.feature │ │ │ │ │ │ │ ├── add-filter-from-agent-events.feature │ │ │ │ │ │ │ ├── add-filter-from-agent.feature │ │ │ │ │ │ │ ├── add-new-filter-from-events.feature │ │ │ │ │ │ │ ├── add-new-filter.feature │ │ │ │ │ │ │ ├── pin-filter-from-dashboard-to-events.feature │ │ │ │ │ │ │ ├── pin-filter-from-events-to-events.feature │ │ │ │ │ │ │ ├── pin-filter.feature │ │ │ │ │ │ │ ├── remove-filter-from-agent-module-dashboard.feature │ │ │ │ │ │ │ ├── remove-filter-from-agent-module-events.feature │ │ │ │ │ │ │ ├── remove-filter-from-module-dashboard.feature │ │ │ │ │ │ │ ├── remove-filter-from-module-events.feature │ │ │ │ │ │ │ └── unpinned-filter-from-agent-dashboard.feature │ │ │ │ │ │ └── management │ │ │ │ │ │ │ ├── decoders │ │ │ │ │ │ │ ├── create-new-decoder.feature │ │ │ │ │ │ │ ├── edit-decoders-without-saving.feature │ │ │ │ │ │ │ └── should-list-decoders-and-show-the-pager.feature │ │ │ │ │ │ │ ├── groups │ │ │ │ │ │ │ └── edit-groups-without-saving.feature │ │ │ │ │ │ │ ├── reporting │ │ │ │ │ │ │ ├── add-report-from-modules-agent.feature │ │ │ │ │ │ │ └── add-report-from-modules.feature │ │ │ │ │ │ │ ├── rules │ │ │ │ │ │ │ ├── create-a-new-rule.feature │ │ │ │ │ │ │ ├── edit-rules-without-saving.feature │ │ │ │ │ │ │ ├── filter-rules-is-displayed-after-refresh.feature │ │ │ │ │ │ │ ├── refresh-rules-page.feature │ │ │ │ │ │ │ ├── should-list-rules-and-show-the-pager.feature │ │ │ │ │ │ │ ├── should-list-rules-by-level.feature │ │ │ │ │ │ │ ├── validate-paginator.feature │ │ │ │ │ │ │ └── validator-rows-dropdow.feature │ │ │ │ │ │ │ └── settings │ │ │ │ │ │ │ ├── about.feature │ │ │ │ │ │ │ ├── api-configurations.feature │ │ │ │ │ │ │ ├── configuration.feature │ │ │ │ │ │ │ ├── logs.feature │ │ │ │ │ │ │ ├── miscellaneous.feature │ │ │ │ │ │ │ └── sample-data.feature │ │ │ │ │ ├── pageobjects │ │ │ │ │ │ ├── basic │ │ │ │ │ │ │ ├── agents │ │ │ │ │ │ │ │ ├── agents.page.js │ │ │ │ │ │ │ │ └── deploy-new-agent.page.js │ │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ │ └── filters.page.js │ │ │ │ │ │ │ ├── modules-directory.page.js │ │ │ │ │ │ │ ├── overview │ │ │ │ │ │ │ │ └── overview.page.js │ │ │ │ │ │ │ ├── reporting │ │ │ │ │ │ │ │ └── report.page.js │ │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ │ ├── about.page.js │ │ │ │ │ │ │ │ ├── api-configuration.page.js │ │ │ │ │ │ │ │ ├── configuration.page.js │ │ │ │ │ │ │ │ ├── logs.page.js │ │ │ │ │ │ │ │ ├── miscellaneous.page.js │ │ │ │ │ │ │ │ ├── modules.page.js │ │ │ │ │ │ │ │ └── sample-data.page.js │ │ │ │ │ │ │ └── wazuh-menu │ │ │ │ │ │ │ │ ├── decoders.page.js │ │ │ │ │ │ │ │ ├── groups-page.js │ │ │ │ │ │ │ │ ├── rules.page.js │ │ │ │ │ │ │ │ └── wazuh-menu.page.js │ │ │ │ │ │ ├── login │ │ │ │ │ │ │ ├── odef-login.page.js │ │ │ │ │ │ │ ├── wzd-login.page.js │ │ │ │ │ │ │ └── xpack-login.page.js │ │ │ │ │ │ ├── odfe │ │ │ │ │ │ │ ├── agents │ │ │ │ │ │ │ │ ├── agents.page.js │ │ │ │ │ │ │ │ └── deploy-new-agent.page.js │ │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ │ └── filters.page.js │ │ │ │ │ │ │ ├── modules-directory.page.js │ │ │ │ │ │ │ ├── overview │ │ │ │ │ │ │ │ └── overview.page.js │ │ │ │ │ │ │ ├── reporting │ │ │ │ │ │ │ │ └── report.page.js │ │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ │ ├── about.page.js │ │ │ │ │ │ │ │ ├── api-configuration.page.js │ │ │ │ │ │ │ │ ├── configuration.page.js │ │ │ │ │ │ │ │ ├── logs.page.js │ │ │ │ │ │ │ │ ├── miscellaneous.page.js │ │ │ │ │ │ │ │ ├── modules.page.js │ │ │ │ │ │ │ │ └── sample-data.page.js │ │ │ │ │ │ │ └── wazuh-menu │ │ │ │ │ │ │ │ ├── decoders.page.js │ │ │ │ │ │ │ │ ├── groups-page.js │ │ │ │ │ │ │ │ ├── rules.page.js │ │ │ │ │ │ │ │ └── wazuh-menu.page.js │ │ │ │ │ │ ├── wzd │ │ │ │ │ │ │ ├── agents │ │ │ │ │ │ │ │ ├── agents.page.js │ │ │ │ │ │ │ │ └── deploy-new-agent.page.js │ │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ │ └── filters.page.js │ │ │ │ │ │ │ ├── modules-directory.page.js │ │ │ │ │ │ │ ├── overview │ │ │ │ │ │ │ │ └── overview.page.js │ │ │ │ │ │ │ ├── reporting │ │ │ │ │ │ │ │ └── report.page.js │ │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ │ ├── about.page.js │ │ │ │ │ │ │ │ ├── api-configuration.page.js │ │ │ │ │ │ │ │ ├── configuration.page.js │ │ │ │ │ │ │ │ ├── logs.page.js │ │ │ │ │ │ │ │ ├── miscellaneous.page.js │ │ │ │ │ │ │ │ ├── modules.page.js │ │ │ │ │ │ │ │ └── sample-data.page.js │ │ │ │ │ │ │ └── wazuh-menu │ │ │ │ │ │ │ │ ├── decoders.page.js │ │ │ │ │ │ │ │ ├── groups-page.js │ │ │ │ │ │ │ │ ├── rules.page.js │ │ │ │ │ │ │ │ └── wazuh-menu.page.js │ │ │ │ │ │ └── xpack │ │ │ │ │ │ │ ├── agents │ │ │ │ │ │ │ ├── agents.page.js │ │ │ │ │ │ │ └── deploy-new-agent.page.js │ │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ └── filters.page.js │ │ │ │ │ │ │ ├── modules-directory.page.js │ │ │ │ │ │ │ ├── overview │ │ │ │ │ │ │ └── overview.page.js │ │ │ │ │ │ │ ├── reporting │ │ │ │ │ │ │ └── report.page.js │ │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ ├── about.page.js │ │ │ │ │ │ │ ├── api-configuration.page.js │ │ │ │ │ │ │ ├── configuration.page.js │ │ │ │ │ │ │ ├── logs.page.js │ │ │ │ │ │ │ ├── miscellaneous.page.js │ │ │ │ │ │ │ ├── modules.page.js │ │ │ │ │ │ │ └── sample-data.page.js │ │ │ │ │ │ │ └── wazuh-menu │ │ │ │ │ │ │ ├── decoders.page.js │ │ │ │ │ │ │ ├── groups.page.js │ │ │ │ │ │ │ ├── rules.page.js │ │ │ │ │ │ │ └── wazuh-menu.page.js │ │ │ │ │ ├── step-definitions │ │ │ │ │ │ ├── agents │ │ │ │ │ │ │ ├── The-user-selects-a-deploy-new-agent.and.js │ │ │ │ │ │ │ ├── first-step.then.js │ │ │ │ │ │ │ ├── fourth-step.then.js │ │ │ │ │ │ │ ├── second-step.then.js │ │ │ │ │ │ │ ├── steps-config-agent-page.and.js │ │ │ │ │ │ │ ├── the-browser-is-on-the-new-deploy-agent-page.then.js │ │ │ │ │ │ │ └── third-step.then.js │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ ├── The-user-types-particular-search.when.js │ │ │ │ │ │ │ ├── filters-are-displayed-in-agents-modules.and.js │ │ │ │ │ │ │ ├── nav-to-the-agent-page.when.js │ │ │ │ │ │ │ ├── navigate-agent-dashboard.when.js │ │ │ │ │ │ │ ├── navigate-to-agent-module.when.js │ │ │ │ │ │ │ ├── navigate-to-modules.when.js │ │ │ │ │ │ │ ├── the-query-is-accepted.then.js │ │ │ │ │ │ │ ├── the-user-adds-a-new-filter.when.js │ │ │ │ │ │ │ ├── the-user-checks-filter-apply-all-modules.then.js │ │ │ │ │ │ │ ├── the-user-checks-filter-is-not-displayed.then.js │ │ │ │ │ │ │ ├── the-user-checks-filter-label-is-added.then.js │ │ │ │ │ │ │ ├── the-user-go-to-the-events-page.when.js │ │ │ │ │ │ │ ├── the-user-navigates-to-the-overview-page.when.js │ │ │ │ │ │ │ ├── the-user-pins-a-filter.when.js │ │ │ │ │ │ │ ├── the-user-removes-applied-filter-on-agent.when.js │ │ │ │ │ │ │ ├── the-user-removes-the-applied-filter.when.js │ │ │ │ │ │ │ └── the-user-unppined-the-selected-filter-when.js │ │ │ │ │ │ ├── login │ │ │ │ │ │ │ ├── login-basic.js │ │ │ │ │ │ │ ├── login-odfe.js │ │ │ │ │ │ │ ├── login-wzd.js │ │ │ │ │ │ │ └── login-xpack.js │ │ │ │ │ │ ├── management │ │ │ │ │ │ │ ├── decoders │ │ │ │ │ │ │ │ ├── navigate-to-decoders.when.js │ │ │ │ │ │ │ │ ├── the-confirm-modal-is-displayed-then.js │ │ │ │ │ │ │ │ ├── the-saved-message-its-displayed-then.js │ │ │ │ │ │ │ │ ├── the-user-clicks-decoders-save-button-when.js │ │ │ │ │ │ │ │ ├── the-user-clicks-the-new-decoder-option-when.js │ │ │ │ │ │ │ │ ├── the-user-creates-a-new-decoder-when.js │ │ │ │ │ │ │ │ ├── the-user-edit-the-selected-decoder-when.js │ │ │ │ │ │ │ │ ├── the-user-exit-without-saving-decoder-when.js │ │ │ │ │ │ │ │ ├── the-user-press-button-custom-decoders.when.js │ │ │ │ │ │ │ │ ├── the-user-presses-the-edit-decoder-button-and-edits-it.when.js │ │ │ │ │ │ │ │ ├── the-user-selects-a-custom-decoder-when.js │ │ │ │ │ │ │ │ ├── the-user-should-see-the-decoders.then.js │ │ │ │ │ │ │ │ └── the-user-should-see-the-message.then.js │ │ │ │ │ │ │ ├── groups │ │ │ │ │ │ │ │ ├── the-confirm-modal-is-displayed-then.js │ │ │ │ │ │ │ │ ├── the-user-click-edit-groups-option-when.js │ │ │ │ │ │ │ │ ├── the-user-edits-the-selected-group-configuration-when.js │ │ │ │ │ │ │ │ ├── the-user-exit-edit-page-without-saving-changes-when.js │ │ │ │ │ │ │ │ └── the-user-navigates-to-groups-when.js │ │ │ │ │ │ │ └── rules │ │ │ │ │ │ │ │ ├── The-user-clicks-on-the-page-when.js │ │ │ │ │ │ │ │ ├── a-maximum-rules-are-displayed-then.js │ │ │ │ │ │ │ │ ├── a-new-set-of-rules-displayed.when.js │ │ │ │ │ │ │ │ ├── navigate-to-rules.when.js │ │ │ │ │ │ │ │ ├── the-confirm-modal-is-displayed-then.js │ │ │ │ │ │ │ │ ├── the-filter-label-is-displayed.then.js │ │ │ │ │ │ │ │ ├── the-filtered-label-is-still-visible-then.js │ │ │ │ │ │ │ │ ├── the-first-page-is-displayed-then.js │ │ │ │ │ │ │ │ ├── the-page-button-disable.then.js │ │ │ │ │ │ │ │ ├── the-rule-page-is-available.then.js │ │ │ │ │ │ │ │ ├── the-rule-page-is-not-available.when.js │ │ │ │ │ │ │ │ ├── the-save-message-its-displayed-then.js │ │ │ │ │ │ │ │ ├── the-user-can-see-the-rule-then.js │ │ │ │ │ │ │ │ ├── the-user-click-limit-row-when.js │ │ │ │ │ │ │ │ ├── the-user-clicks-the-refresh-button-when.js │ │ │ │ │ │ │ │ ├── the-user-clicks-the-search-bar-when.js │ │ │ │ │ │ │ │ ├── the-user-creates-a-new-rule-when.js │ │ │ │ │ │ │ │ ├── the-user-edit-the-selected-rule-when.js │ │ │ │ │ │ │ │ ├── the-user-exit-without-saving-rule-when.js │ │ │ │ │ │ │ │ ├── the-user-navigates-to-custom-rules-when.js │ │ │ │ │ │ │ │ ├── the-user-redirected-next-rule-page-then.js │ │ │ │ │ │ │ │ ├── the-user-saves-a-new-rule-when.js │ │ │ │ │ │ │ │ ├── the-user-see-rule-list-per-row-when.js │ │ │ │ │ │ │ │ ├── the-user-see-that-the-rule-list-is-paginated.then.js │ │ │ │ │ │ │ │ ├── the-user-selects-a-custom-rule-when.js │ │ │ │ │ │ │ │ ├── the-user-should-see-the-rule-page.then.js │ │ │ │ │ │ │ │ ├── the-user-should-see-the-rules.then.js │ │ │ │ │ │ │ │ └── the-user-writes-a-new-rule-when.js │ │ │ │ │ │ ├── reporting │ │ │ │ │ │ │ ├── generate-module-report-when.js │ │ │ │ │ │ │ ├── the-user-agent-report-is-displayed-in-the-table-then.js │ │ │ │ │ │ │ ├── the-user-choose-an-agent-to-apply-filter-when.js │ │ │ │ │ │ │ ├── the-user-navigates-to-management-reporting-when.js │ │ │ │ │ │ │ └── the-user-report-is-dispalyed-in-the-table-then.js │ │ │ │ │ │ └── settings │ │ │ │ │ │ │ ├── The-wazuh-admin-user-is-logged.given.js │ │ │ │ │ │ │ ├── about │ │ │ │ │ │ │ └── validate-information-displayed.then.js │ │ │ │ │ │ │ ├── api-configuration │ │ │ │ │ │ │ ├── add-new-api-configuration.when.js │ │ │ │ │ │ │ ├── check-api-configuration-connection.when.js │ │ │ │ │ │ │ ├── check-api-connection-from-instructions-modal.when.js │ │ │ │ │ │ │ ├── instruction-modal-connection-success.then.js │ │ │ │ │ │ │ ├── instructions-modals-displayed.then.js │ │ │ │ │ │ │ └── validate-connection-success.then.js │ │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ │ └── valida-configuration.when.js │ │ │ │ │ │ │ ├── miscellaneous │ │ │ │ │ │ │ ├── run-health-check.when.js │ │ │ │ │ │ │ └── validate-health-check-navigation.then.js │ │ │ │ │ │ │ ├── modules │ │ │ │ │ │ │ ├── activate-the-modules.when.js │ │ │ │ │ │ │ ├── clean-the-modules.when.js │ │ │ │ │ │ │ ├── validate-active-modules.then.js │ │ │ │ │ │ │ └── validate-deactivated-modules.then.js │ │ │ │ │ │ │ ├── navigate-to-settings.when.js │ │ │ │ │ │ │ ├── sample-data │ │ │ │ │ │ │ ├── add-remove-sample-data.when.js │ │ │ │ │ │ │ ├── validate-sample-data-added.then.js │ │ │ │ │ │ │ └── validate-sample-data-removed.then.js │ │ │ │ │ │ │ └── wazuh-logs │ │ │ │ │ │ │ ├── backend-reload-logs.then.js │ │ │ │ │ │ │ └── validate-logs-displayed.then.js │ │ │ │ │ └── utils │ │ │ │ │ │ ├── driver.js │ │ │ │ │ │ ├── health-check-constants.js │ │ │ │ │ │ ├── login-constants.js │ │ │ │ │ │ ├── logs-constants.js │ │ │ │ │ │ ├── mappers │ │ │ │ │ │ ├── basic-pages-mapper.js │ │ │ │ │ │ ├── basic │ │ │ │ │ │ │ ├── agent-modules-mapper.js │ │ │ │ │ │ │ ├── basic-modules-mapper.js │ │ │ │ │ │ │ ├── modules-mapper.js │ │ │ │ │ │ │ ├── sample-data-mapper.js │ │ │ │ │ │ │ └── settings-mapper.js │ │ │ │ │ │ ├── modules-mapper-report-data.js │ │ │ │ │ │ ├── odfe-pages-mapper.js │ │ │ │ │ │ ├── odfe │ │ │ │ │ │ │ ├── agent-modules-mapper.js │ │ │ │ │ │ │ ├── basic-modules-mapper.js │ │ │ │ │ │ │ ├── modules-mapper.js │ │ │ │ │ │ │ ├── sample-data-mapper.js │ │ │ │ │ │ │ └── settings-mapper.js │ │ │ │ │ │ ├── wzd-pages-mapper.js │ │ │ │ │ │ ├── wzd │ │ │ │ │ │ │ ├── agent-modules-mapper.js │ │ │ │ │ │ │ ├── basic-modules-mapper.js │ │ │ │ │ │ │ ├── modules-mapper.js │ │ │ │ │ │ │ ├── reporting-modules-mapper.js │ │ │ │ │ │ │ ├── sample-data-mapper.js │ │ │ │ │ │ │ └── settings-mapper.js │ │ │ │ │ │ ├── xpack-pages-mapper.js │ │ │ │ │ │ └── xpack │ │ │ │ │ │ │ ├── agent-modules-mapper.js │ │ │ │ │ │ │ ├── basic-modules-mapper.js │ │ │ │ │ │ │ ├── modules-mapper.js │ │ │ │ │ │ │ ├── sample-data-mapper.js │ │ │ │ │ │ │ └── settings-mapper.js │ │ │ │ │ │ └── pages-constants.js │ │ │ │ ├── plugins │ │ │ │ │ └── index.js │ │ │ │ └── support │ │ │ │ │ ├── commands.js │ │ │ │ │ └── index.js │ │ │ ├── images │ │ │ │ ├── ubuntu-cypress │ │ │ │ │ └── Dockerfile │ │ │ │ ├── wazuh_agent_ubuntu_sources_cmake │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── entrypoint.sh │ │ │ │ │ └── preloaded-vars.conf │ │ │ │ └── wazuh_manager_filebeat_sources_cmake │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── entrypoint.sh │ │ │ │ │ ├── filebeat.yml │ │ │ │ │ ├── preloaded-vars.conf │ │ │ │ │ └── supervisord.conf │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── functional │ │ │ ├── apps │ │ │ │ └── overview │ │ │ │ │ ├── _integrity_monitoring.ts │ │ │ │ │ ├── _security_events.ts │ │ │ │ │ └── index.ts │ │ │ ├── config.js │ │ │ ├── page_objects │ │ │ │ ├── api_page.js │ │ │ │ ├── index.js │ │ │ │ └── wazuh_common_page.js │ │ │ └── services │ │ │ │ ├── area_chart.ts │ │ │ │ ├── array_helper.ts │ │ │ │ ├── es_area_chart.ts │ │ │ │ ├── es_pie_chart.ts │ │ │ │ ├── es_table_viz.ts │ │ │ │ ├── extension_popover.js │ │ │ │ ├── index.js │ │ │ │ ├── pie_chart.ts │ │ │ │ └── table_viz.ts │ │ ├── jest │ │ │ └── config.js │ │ ├── public │ │ │ └── query-attr.ts │ │ ├── server │ │ │ ├── alerts.js │ │ │ ├── wazuh-api.js │ │ │ └── wazuh-elastic.js │ │ ├── types │ │ │ └── index.ts │ │ └── utils │ │ │ └── CSS.ts │ ├── tsconfig.json │ └── yarn.lock ├── wazuh-check-updates │ ├── .eslintrc.json │ ├── .i18nrc.json │ ├── README.md │ ├── common │ │ ├── constants.ts │ │ └── types.ts │ ├── knip.json │ ├── opensearch_dashboards.json │ ├── package.json │ ├── public │ │ ├── components │ │ │ ├── __snapshots__ │ │ │ │ ├── dismiss-notification-check.test.tsx.snap │ │ │ │ └── updates-notification.test.tsx.snap │ │ │ ├── dismiss-notification-check.test.tsx │ │ │ ├── dismiss-notification-check.tsx │ │ │ ├── updates-notification.scss │ │ │ ├── updates-notification.test.tsx │ │ │ └── updates-notification.tsx │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── user-preferences.test.ts │ │ │ └── user-preferences.ts │ │ ├── index.ts │ │ ├── plugin-services.ts │ │ ├── plugin.ts │ │ ├── services │ │ │ ├── available-updates.test.ts │ │ │ ├── available-updates.ts │ │ │ └── index.ts │ │ ├── types.ts │ │ └── utils │ │ │ ├── are-there-new-updates.test.ts │ │ │ ├── are-there-new-updates.ts │ │ │ └── index.ts │ ├── scripts │ │ ├── jest.js │ │ ├── manifest.js │ │ └── runner.js │ ├── server │ │ ├── index.ts │ │ ├── plugin-services.ts │ │ ├── plugin.ts │ │ ├── routes │ │ │ ├── index.ts │ │ │ ├── updates │ │ │ │ ├── get-updates.test.ts │ │ │ │ ├── get-updates.ts │ │ │ │ └── index.ts │ │ │ └── user-preferences │ │ │ │ ├── get-user-preferences.test.ts │ │ │ │ ├── get-user-preferences.ts │ │ │ │ ├── index.ts │ │ │ │ ├── update-user-preferences.test.ts │ │ │ │ └── update-user-preferences.ts │ │ ├── services │ │ │ ├── saved-object │ │ │ │ ├── get-saved-object.test.ts │ │ │ │ ├── get-saved-object.ts │ │ │ │ ├── index.ts │ │ │ │ ├── set-saved-object.test.ts │ │ │ │ ├── set-saved-object.ts │ │ │ │ └── types │ │ │ │ │ ├── available-updates.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── user-preferences.ts │ │ │ ├── updates │ │ │ │ ├── get-updates.test.ts │ │ │ │ ├── get-updates.ts │ │ │ │ └── index.ts │ │ │ └── user-preferences │ │ │ │ ├── get-user-preferences.test.ts │ │ │ │ ├── get-user-preferences.ts │ │ │ │ ├── index.ts │ │ │ │ ├── update-user-preferences.test.ts │ │ │ │ └── update-user-preferences.ts │ │ └── types.ts │ ├── test │ │ └── jest │ │ │ └── config.js │ ├── translations │ │ └── en-US.json │ ├── tsconfig.json │ └── yarn.lock └── wazuh-core │ ├── .eslintrc.json │ ├── .i18nrc.json │ ├── README.md │ ├── common │ ├── api-user-status-run-as.ts │ ├── constants.ts │ ├── csv-key-equivalence.ts │ ├── plugin-settings.test.ts │ ├── services │ │ ├── __fixtures__ │ │ │ ├── fixture_file.txt │ │ │ ├── fixture_image_big.png │ │ │ ├── fixture_image_small.jpg │ │ │ ├── fixture_image_small.png │ │ │ └── fixture_image_small.svg │ │ ├── cache.ts │ │ ├── configuration │ │ │ ├── configuration-provider.ts │ │ │ ├── configuration-store.md │ │ │ ├── configuration-store.test.ts │ │ │ ├── configuration-store.ts │ │ │ ├── configuration.md │ │ │ ├── configuration.test.ts │ │ │ ├── configuration.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── file-extension.test.ts │ │ ├── file-extension.ts │ │ ├── file-size.test.ts │ │ ├── file-size.ts │ │ ├── settings-validator.test.ts │ │ ├── settings-validator.ts │ │ ├── settings.test.ts │ │ ├── settings.ts │ │ ├── web_documentation.test.ts │ │ ├── web_documentation.ts │ │ └── wz_agent_status.ts │ ├── settings-adapter.ts │ └── types.ts │ ├── docs │ └── README.md │ ├── knip.json │ ├── opensearch_dashboards.json │ ├── package.json │ ├── public │ ├── hooks │ │ ├── index.ts │ │ └── use-docked-side-nav.tsx │ ├── index.ts │ ├── plugin-services.ts │ ├── plugin.ts │ ├── services │ │ └── configuration │ │ │ ├── initializer-context-provider.ts │ │ │ └── ui-settings-provider.ts │ ├── types.ts │ └── utils │ │ ├── dashboard-security.ts │ │ ├── index.ts │ │ └── time.ts │ ├── scripts │ ├── jest.js │ └── lib │ │ ├── cli.js │ │ ├── http.js │ │ ├── logger.js │ │ └── question.js │ ├── server │ ├── index.ts │ ├── plugin-services.ts │ ├── plugin.ts │ ├── services │ │ ├── configuration │ │ │ ├── index.ts │ │ │ └── initializer-context-provider.ts │ │ ├── cookie.ts │ │ ├── index.ts │ │ ├── manage-hosts.test.ts │ │ ├── manage-hosts.ts │ │ ├── security-factory │ │ │ ├── factories │ │ │ │ ├── default-factory.ts │ │ │ │ ├── index.ts │ │ │ │ └── opensearch-dashboards-security-factory.ts │ │ │ ├── index.ts │ │ │ └── security-factory.ts │ │ └── server-api-client.ts │ └── types.ts │ ├── test │ ├── jest │ │ └── config.js │ └── mocks │ │ └── logger-mocked.ts │ ├── translations │ └── en-US.json │ ├── tsconfig.json │ └── yarn.lock ├── screenshots ├── app.png ├── app2.png ├── app3.png ├── app4.png ├── app5.png ├── app6.png └── app7.png ├── scripts ├── lib │ └── cli │ │ ├── cli.js │ │ └── question.js ├── release │ ├── README.md │ ├── bump.js │ ├── lib │ │ ├── logger.js │ │ ├── read-manifest-package.js │ │ ├── update-changelog.js │ │ ├── update-imposter.js │ │ ├── update-manifest-package.js │ │ └── update-manifest-plugin.js │ └── tag.js ├── sample-data │ ├── README.md │ ├── cli.js │ └── lib │ │ └── index.js ├── test-packages │ ├── install-plugins.sh │ └── osd-test-packages.Dockerfile ├── vulnerabilities-events-injector │ ├── DIS_Template.json │ ├── dataInjectScript.py │ ├── readme.md │ └── requirements.txt └── wazuh-alerts-generator │ ├── README.md │ ├── cli.js │ └── lib │ └── index.js ├── tools ├── .gitignore ├── README.md └── repository_bumper.sh └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/compatibility_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/ISSUE_TEMPLATE/compatibility_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/ISSUE_TEMPLATE/new_release.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/objective_delivery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/ISSUE_TEMPLATE/objective_delivery.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/regression_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/ISSUE_TEMPLATE/regression_testing.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/revision-manual_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/ISSUE_TEMPLATE/revision-manual_test.md -------------------------------------------------------------------------------- /.github/actions/comment-test-coverage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/actions/comment-test-coverage/README.md -------------------------------------------------------------------------------- /.github/actions/comment-test-coverage/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/actions/comment-test-coverage/action.yml -------------------------------------------------------------------------------- /.github/actions/comment-test-coverage/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/actions/comment-test-coverage/dist/index.js -------------------------------------------------------------------------------- /.github/actions/comment-test-coverage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/actions/comment-test-coverage/index.js -------------------------------------------------------------------------------- /.github/actions/comment-test-coverage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/actions/comment-test-coverage/package.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/4_builderpackage_plugins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/4_builderpackage_plugins.yml -------------------------------------------------------------------------------- /.github/workflows/4_bumper_repository.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/4_bumper_repository.yml -------------------------------------------------------------------------------- /.github/workflows/4_codelinter_prettier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/4_codelinter_prettier.yml -------------------------------------------------------------------------------- /.github/workflows/4_testunit_dev_sh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/4_testunit_dev_sh.yml -------------------------------------------------------------------------------- /.github/workflows/4_testunit_jest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/4_testunit_jest.yml -------------------------------------------------------------------------------- /.github/workflows/5_builderpackage_plugins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/5_builderpackage_plugins.yml -------------------------------------------------------------------------------- /.github/workflows/5_bumper_repository.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/5_bumper_repository.yml -------------------------------------------------------------------------------- /.github/workflows/5_codelinter_prettier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/5_codelinter_prettier.yml -------------------------------------------------------------------------------- /.github/workflows/5_testunit_dev_sh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/5_testunit_dev_sh.yml -------------------------------------------------------------------------------- /.github/workflows/5_testunit_jest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/5_testunit_jest.yml -------------------------------------------------------------------------------- /.github/workflows/6_builderpackage_plugins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/6_builderpackage_plugins.yml -------------------------------------------------------------------------------- /.github/workflows/6_builderprecompiled_playground.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/6_builderprecompiled_playground.yml -------------------------------------------------------------------------------- /.github/workflows/6_bumper_repository.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/6_bumper_repository.yml -------------------------------------------------------------------------------- /.github/workflows/6_testunit_jest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/6_testunit_jest.yml -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/cypress-basic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/cypress-basic.yml -------------------------------------------------------------------------------- /.github/workflows/cypress-odfe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/cypress-odfe.yml -------------------------------------------------------------------------------- /.github/workflows/cypress-wzd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/cypress-wzd.yml -------------------------------------------------------------------------------- /.github/workflows/cypress-xpack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/cypress-xpack.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.github/workflows/dev-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/dev-environment.yml -------------------------------------------------------------------------------- /.github/workflows/eslint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/eslint.yml -------------------------------------------------------------------------------- /.github/workflows/manual-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/manual-build.yml -------------------------------------------------------------------------------- /.github/workflows/playground.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/playground.yml -------------------------------------------------------------------------------- /.github/workflows/wazuh-build-push-docker-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.github/workflows/wazuh-build-push-docker-action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.18.3 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarnignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/.yarnignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/RELEASING.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/SECURITY.md -------------------------------------------------------------------------------- /STYLEGUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/STYLEGUIDE.md -------------------------------------------------------------------------------- /VERSION.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/VERSION.json -------------------------------------------------------------------------------- /docker/.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | *.deb 3 | *.rpm 4 | # Mac files 5 | .DS_Store -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/cache/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/cache/docker-compose.yml -------------------------------------------------------------------------------- /docker/images/cpp-gcc-9.4.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/cpp-gcc-9.4.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-7.10.2-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-7.10.2-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-7.16.0-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-7.16.0-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-7.16.1-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-7.16.1-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-7.16.2-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-7.16.2-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-7.16.3-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-7.16.3-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-7.17.0-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-7.17.0-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-7.17.1-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-7.17.1-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-7.17.11-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-7.17.11-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-7.17.12-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-7.17.12-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-7.17.13-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-7.17.13-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-7.17.2-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-7.17.2-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-7.17.3-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-7.17.3-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-7.17.4-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-7.17.4-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-7.17.5-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-7.17.5-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-7.17.6-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-7.17.6-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-7.17.7-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-7.17.7-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-8.0.0-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-8.0.0-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-8.0.1-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-8.0.1-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-8.1.0-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-8.1.0-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-8.1.1-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-8.1.1-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-8.1.2-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-8.1.2-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-8.1.3-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-8.1.3-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-8.2-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-8.2-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-8.2.0-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-8.2.0-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-8.2.1-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-8.2.1-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-8.2.3-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-8.2.3-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-8.3.0-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-8.3.0-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-8.3.1-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-8.3.1-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-8.3.3-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-8.3.3-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-8.4.2-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-8.4.2-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-8.4.3-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-8.4.3-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-8.5.0-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-8.5.0-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/kbn-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/kbn-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/osd-2.4.0-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/osd-2.4.0-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/osd-2.4.1-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/osd-2.4.1-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/osd-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/osd-dev.Dockerfile -------------------------------------------------------------------------------- /docker/images/wzd-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/images/wzd-dev.Dockerfile -------------------------------------------------------------------------------- /docker/imposter/agents/agent/agent-active-groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/agent/agent-active-groups.json -------------------------------------------------------------------------------- /docker/imposter/agents/agent/agent-disconnected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/agent/agent-disconnected.json -------------------------------------------------------------------------------- /docker/imposter/agents/agent/agent-macos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/agent/agent-macos.json -------------------------------------------------------------------------------- /docker/imposter/agents/agent/agent-manager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/agent/agent-manager.json -------------------------------------------------------------------------------- /docker/imposter/agents/agent/agent-pending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/agent/agent-pending.json -------------------------------------------------------------------------------- /docker/imposter/agents/agent/agent-windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/agent/agent-windows.json -------------------------------------------------------------------------------- /docker/imposter/agents/agent/agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/agent/agent.json -------------------------------------------------------------------------------- /docker/imposter/agents/agent/agents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/agent/agents.json -------------------------------------------------------------------------------- /docker/imposter/agents/agent_distinct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/agent_distinct.js -------------------------------------------------------------------------------- /docker/imposter/agents/agents-configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/agents-configuration.js -------------------------------------------------------------------------------- /docker/imposter/agents/agents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/agents.js -------------------------------------------------------------------------------- /docker/imposter/agents/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/configuration.js -------------------------------------------------------------------------------- /docker/imposter/agents/configuration/agent-buffer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/configuration/agent-buffer.json -------------------------------------------------------------------------------- /docker/imposter/agents/configuration/agent-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/configuration/agent-client.json -------------------------------------------------------------------------------- /docker/imposter/agents/configuration/agent-labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/configuration/agent-labels.json -------------------------------------------------------------------------------- /docker/imposter/agents/configuration/agent_labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/configuration/agent_labels.json -------------------------------------------------------------------------------- /docker/imposter/agents/configuration/auth-auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/configuration/auth-auth.json -------------------------------------------------------------------------------- /docker/imposter/agents/configuration/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/configuration/default.json -------------------------------------------------------------------------------- /docker/imposter/agents/group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/group.json -------------------------------------------------------------------------------- /docker/imposter/agents/group_files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/group_files.js -------------------------------------------------------------------------------- /docker/imposter/agents/group_files_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/group_files_default.json -------------------------------------------------------------------------------- /docker/imposter/agents/group_files_raw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/group_files_raw.xml -------------------------------------------------------------------------------- /docker/imposter/agents/summary_status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/agents/summary_status.json -------------------------------------------------------------------------------- /docker/imposter/api-info/api_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/api-info/api_info.json -------------------------------------------------------------------------------- /docker/imposter/cluster/cluster-logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/cluster/cluster-logs.js -------------------------------------------------------------------------------- /docker/imposter/cluster/cluster-node-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/cluster/cluster-node-info.js -------------------------------------------------------------------------------- /docker/imposter/cluster/cluster_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/cluster/cluster_logs.json -------------------------------------------------------------------------------- /docker/imposter/cluster/cluster_no_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/cluster/cluster_no_logs.json -------------------------------------------------------------------------------- /docker/imposter/cluster/cluster_restart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/cluster/cluster_restart.js -------------------------------------------------------------------------------- /docker/imposter/cluster/cluster_restart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/cluster/cluster_restart.json -------------------------------------------------------------------------------- /docker/imposter/cluster/cluster_status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/cluster/cluster_status.json -------------------------------------------------------------------------------- /docker/imposter/cluster/cluster_sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/cluster/cluster_sync.js -------------------------------------------------------------------------------- /docker/imposter/cluster/cluster_sync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/cluster/cluster_sync.json -------------------------------------------------------------------------------- /docker/imposter/cluster/cluster_sync_no_sync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/cluster/cluster_sync_no_sync.json -------------------------------------------------------------------------------- /docker/imposter/cluster/component_configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/cluster/component_configuration.js -------------------------------------------------------------------------------- /docker/imposter/cluster/configuration/auth_auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/cluster/configuration/auth_auth.json -------------------------------------------------------------------------------- /docker/imposter/cluster/configuration/com_cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/cluster/configuration/com_cluster.json -------------------------------------------------------------------------------- /docker/imposter/cluster/configuration/com_logging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/cluster/configuration/com_logging.json -------------------------------------------------------------------------------- /docker/imposter/cluster/configuration_node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/cluster/configuration_node.txt -------------------------------------------------------------------------------- /docker/imposter/cluster/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/cluster/error.json -------------------------------------------------------------------------------- /docker/imposter/cluster/node/select-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/cluster/node/select-name.json -------------------------------------------------------------------------------- /docker/imposter/decoders/get_decoders_raw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/decoders/get_decoders_raw.txt -------------------------------------------------------------------------------- /docker/imposter/errors/internal_server_error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/errors/internal_server_error.json -------------------------------------------------------------------------------- /docker/imposter/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/initial_data.json -------------------------------------------------------------------------------- /docker/imposter/lists/get_list_raw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/lists/get_list_raw.txt -------------------------------------------------------------------------------- /docker/imposter/manager/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/manager/configuration.js -------------------------------------------------------------------------------- /docker/imposter/manager/configuration/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/manager/configuration/default.json -------------------------------------------------------------------------------- /docker/imposter/manager/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/manager/info.json -------------------------------------------------------------------------------- /docker/imposter/overview/agents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/overview/agents.json -------------------------------------------------------------------------------- /docker/imposter/rules/get_rule_raw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/rules/get_rule_raw.txt -------------------------------------------------------------------------------- /docker/imposter/rules/get_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/rules/get_rules.json -------------------------------------------------------------------------------- /docker/imposter/rules/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/rules/rules.js -------------------------------------------------------------------------------- /docker/imposter/rules/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/rules/rules.json -------------------------------------------------------------------------------- /docker/imposter/sca/policy-checks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/sca/policy-checks.js -------------------------------------------------------------------------------- /docker/imposter/sca/policy_checks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/sca/policy_checks.json -------------------------------------------------------------------------------- /docker/imposter/sca/policy_checks_failed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/sca/policy_checks_failed.json -------------------------------------------------------------------------------- /docker/imposter/sca/policy_checks_not_applicable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/sca/policy_checks_not_applicable.json -------------------------------------------------------------------------------- /docker/imposter/sca/policy_checks_passed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/sca/policy_checks_passed.json -------------------------------------------------------------------------------- /docker/imposter/security/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/security/login.js -------------------------------------------------------------------------------- /docker/imposter/security/policies/delete-policies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/security/policies/delete-policies.js -------------------------------------------------------------------------------- /docker/imposter/security/policies/get-policies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/security/policies/get-policies.js -------------------------------------------------------------------------------- /docker/imposter/security/policies/get-policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/security/policies/get-policies.json -------------------------------------------------------------------------------- /docker/imposter/security/roles-mapping/delete-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/security/roles-mapping/delete-rules.js -------------------------------------------------------------------------------- /docker/imposter/security/roles-mapping/get-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/security/roles-mapping/get-rules.js -------------------------------------------------------------------------------- /docker/imposter/security/roles-mapping/get-rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/security/roles-mapping/get-rules.json -------------------------------------------------------------------------------- /docker/imposter/security/roles/delete-roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/security/roles/delete-roles.js -------------------------------------------------------------------------------- /docker/imposter/security/roles/get-roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/security/roles/get-roles.js -------------------------------------------------------------------------------- /docker/imposter/security/roles/get-roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/security/roles/get-roles.json -------------------------------------------------------------------------------- /docker/imposter/security/security-actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/security/security-actions.json -------------------------------------------------------------------------------- /docker/imposter/security/security-me-policies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/security/security-me-policies.js -------------------------------------------------------------------------------- /docker/imposter/security/security-policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/security/security-policies.json -------------------------------------------------------------------------------- /docker/imposter/security/security-roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/security/security-roles.json -------------------------------------------------------------------------------- /docker/imposter/security/security-rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/security/security-rules.json -------------------------------------------------------------------------------- /docker/imposter/security/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/security/users.json -------------------------------------------------------------------------------- /docker/imposter/security/users/delete-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/security/users/delete-user.js -------------------------------------------------------------------------------- /docker/imposter/security/users/get-users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/security/users/get-users.js -------------------------------------------------------------------------------- /docker/imposter/security/users/get-users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/security/users/get-users.json -------------------------------------------------------------------------------- /docker/imposter/syscheck/get-agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/syscheck/get-agent.js -------------------------------------------------------------------------------- /docker/imposter/syscollector/netaddr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/syscollector/netaddr.js -------------------------------------------------------------------------------- /docker/imposter/syscollector/ports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/syscollector/ports.js -------------------------------------------------------------------------------- /docker/imposter/syscollector/ports/ports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/syscollector/ports/ports.json -------------------------------------------------------------------------------- /docker/imposter/tasks/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/tasks/empty.json -------------------------------------------------------------------------------- /docker/imposter/tasks/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/tasks/status.js -------------------------------------------------------------------------------- /docker/imposter/tasks/status_done.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/tasks/status_done.json -------------------------------------------------------------------------------- /docker/imposter/tasks/status_failed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/tasks/status_failed.json -------------------------------------------------------------------------------- /docker/imposter/tasks/status_in_progress_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/tasks/status_in_progress_1.json -------------------------------------------------------------------------------- /docker/imposter/tasks/status_in_progress_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/tasks/status_in_progress_2.json -------------------------------------------------------------------------------- /docker/imposter/vulnerability/default_last_scan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/vulnerability/default_last_scan.json -------------------------------------------------------------------------------- /docker/imposter/vulnerability/last_scan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/vulnerability/last_scan.json -------------------------------------------------------------------------------- /docker/imposter/vulnerability/vulnerabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/vulnerability/vulnerabilities.json -------------------------------------------------------------------------------- /docker/imposter/wazuh-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/imposter/wazuh-config.yml -------------------------------------------------------------------------------- /docker/kbn-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/kbn-dev/README.md -------------------------------------------------------------------------------- /docker/kbn-dev/config/filebeat/filebeat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/kbn-dev/config/filebeat/filebeat.yml -------------------------------------------------------------------------------- /docker/kbn-dev/config/kibana/kibana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/kbn-dev/config/kibana/kibana.yml -------------------------------------------------------------------------------- /docker/kbn-dev/config/kibana/wazuh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/kbn-dev/config/kibana/wazuh.yml -------------------------------------------------------------------------------- /docker/kbn-dev/config/setup_permissions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/kbn-dev/config/setup_permissions.sh -------------------------------------------------------------------------------- /docker/kbn-dev/dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/kbn-dev/dev.sh -------------------------------------------------------------------------------- /docker/kbn-dev/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/kbn-dev/dev.yml -------------------------------------------------------------------------------- /docker/mon/config/loki/loki-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/mon/config/loki/loki-config.yaml -------------------------------------------------------------------------------- /docker/mon/config/loki/promtail-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/mon/config/loki/promtail-config.yaml -------------------------------------------------------------------------------- /docker/mon/config/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/mon/config/prometheus/prometheus.yml -------------------------------------------------------------------------------- /docker/mon/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/mon/docker-compose.yml -------------------------------------------------------------------------------- /docker/osd-dev/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/.gitignore -------------------------------------------------------------------------------- /docker/osd-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/README.md -------------------------------------------------------------------------------- /docker/osd-dev/agents/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /docker/osd-dev/config/1.x/certs/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/1.x/certs/ca.json -------------------------------------------------------------------------------- /docker/osd-dev/config/1.x/certs/cfssl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/1.x/certs/cfssl.json -------------------------------------------------------------------------------- /docker/osd-dev/config/1.x/certs/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/1.x/certs/host.json -------------------------------------------------------------------------------- /docker/osd-dev/config/1.x/filebeat/filebeat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/1.x/filebeat/filebeat.yml -------------------------------------------------------------------------------- /docker/osd-dev/config/1.x/os/config-saml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/1.x/os/config-saml.yml -------------------------------------------------------------------------------- /docker/osd-dev/config/1.x/os/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/1.x/os/config.yml -------------------------------------------------------------------------------- /docker/osd-dev/config/1.x/os/internal_users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/1.x/os/internal_users.yml -------------------------------------------------------------------------------- /docker/osd-dev/config/1.x/os/opensearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/1.x/os/opensearch.yml -------------------------------------------------------------------------------- /docker/osd-dev/config/1.x/os/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/1.x/os/roles.yml -------------------------------------------------------------------------------- /docker/osd-dev/config/1.x/os/roles_mapping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/1.x/os/roles_mapping.yml -------------------------------------------------------------------------------- /docker/osd-dev/config/1.x/osd/wazuh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/1.x/osd/wazuh.yml -------------------------------------------------------------------------------- /docker/osd-dev/config/1.x/wm/wazuh_manager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/1.x/wm/wazuh_manager.conf -------------------------------------------------------------------------------- /docker/osd-dev/config/2.x/certs/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/2.x/certs/ca.json -------------------------------------------------------------------------------- /docker/osd-dev/config/2.x/certs/cfssl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/2.x/certs/cfssl.json -------------------------------------------------------------------------------- /docker/osd-dev/config/2.x/certs/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/2.x/certs/host.json -------------------------------------------------------------------------------- /docker/osd-dev/config/2.x/filebeat/filebeat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/2.x/filebeat/filebeat.yml -------------------------------------------------------------------------------- /docker/osd-dev/config/2.x/os/config-saml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/2.x/os/config-saml.yml -------------------------------------------------------------------------------- /docker/osd-dev/config/2.x/os/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/2.x/os/config.yml -------------------------------------------------------------------------------- /docker/osd-dev/config/2.x/os/internal_users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/2.x/os/internal_users.yml -------------------------------------------------------------------------------- /docker/osd-dev/config/2.x/os/opensearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/2.x/os/opensearch.yml -------------------------------------------------------------------------------- /docker/osd-dev/config/2.x/os/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/2.x/os/roles.yml -------------------------------------------------------------------------------- /docker/osd-dev/config/2.x/os/roles_mapping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/2.x/os/roles_mapping.yml -------------------------------------------------------------------------------- /docker/osd-dev/config/2.x/osd/wazuh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/2.x/osd/wazuh.yml -------------------------------------------------------------------------------- /docker/osd-dev/config/2.x/wm/wazuh_manager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/2.x/wm/wazuh_manager.conf -------------------------------------------------------------------------------- /docker/osd-dev/config/enable_saml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/config/enable_saml.sh -------------------------------------------------------------------------------- /docker/osd-dev/dashboard-src/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/dashboard-src/entrypoint.sh -------------------------------------------------------------------------------- /docker/osd-dev/dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/dev.sh -------------------------------------------------------------------------------- /docker/osd-dev/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/dev.yml -------------------------------------------------------------------------------- /docker/osd-dev/indexer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/indexer/Dockerfile -------------------------------------------------------------------------------- /docker/osd-dev/indexer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/indexer/README.md -------------------------------------------------------------------------------- /docker/osd-dev/indexer/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/indexer/entrypoint.sh -------------------------------------------------------------------------------- /docker/osd-dev/indexer/installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/indexer/installer.sh -------------------------------------------------------------------------------- /docker/osd-dev/manager/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/manager/Dockerfile -------------------------------------------------------------------------------- /docker/osd-dev/manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/manager/README.md -------------------------------------------------------------------------------- /docker/osd-dev/manager/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/manager/entrypoint.sh -------------------------------------------------------------------------------- /docker/osd-dev/manager/installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/manager/installer.sh -------------------------------------------------------------------------------- /docker/osd-dev/scripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/.gitignore -------------------------------------------------------------------------------- /docker/osd-dev/scripts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/Dockerfile -------------------------------------------------------------------------------- /docker/osd-dev/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/README.md -------------------------------------------------------------------------------- /docker/osd-dev/scripts/__mocks__/mockLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/__mocks__/mockLogger.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/__tests__/.gitignore: -------------------------------------------------------------------------------- 1 | !jest.config.js -------------------------------------------------------------------------------- /docker/osd-dev/scripts/__tests__/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/__tests__/Dockerfile -------------------------------------------------------------------------------- /docker/osd-dev/scripts/__tests__/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/__tests__/README.md -------------------------------------------------------------------------------- /docker/osd-dev/scripts/__tests__/dev.base.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/__tests__/dev.base.test.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/__tests__/dev.external.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/__tests__/dev.external.test.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/__tests__/dev.sh-compat.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/__tests__/dev.sh-compat.test.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/__tests__/helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/__tests__/helpers/README.md -------------------------------------------------------------------------------- /docker/osd-dev/scripts/__tests__/helpers/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/__tests__/helpers/setupTests.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/__tests__/helpers/stubRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/__tests__/helpers/stubRunner.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/__tests__/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/__tests__/jest.config.js -------------------------------------------------------------------------------- /docker/osd-dev/scripts/__tests__/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/__tests__/run-tests.sh -------------------------------------------------------------------------------- /docker/osd-dev/scripts/__tests__/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/__tests__/test.yml -------------------------------------------------------------------------------- /docker/osd-dev/scripts/__tests__/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/__tests__/tsconfig.json -------------------------------------------------------------------------------- /docker/osd-dev/scripts/dev-ts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/dev-ts.yml -------------------------------------------------------------------------------- /docker/osd-dev/scripts/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/dev.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/package.json -------------------------------------------------------------------------------- /docker/osd-dev/scripts/src/app/main.int.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/src/app/main.int.test.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/src/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/src/app/main.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/src/constants/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/src/constants/app.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/src/constants/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/src/constants/messages.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/src/constants/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/src/constants/paths.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/src/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/src/errors/index.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/src/services/argumentParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/src/services/argumentParser.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/src/services/repoResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/src/services/repoResolver.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/src/services/versionService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/src/services/versionService.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/src/types/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/src/types/config.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/src/types/deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/src/types/deps.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/src/utils/__mocks__/io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/src/utils/__mocks__/io.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/src/utils/envUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/src/utils/envUtils.test.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/src/utils/envUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/src/utils/envUtils.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/src/utils/io.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/src/utils/io.test.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/src/utils/io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/src/utils/io.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/src/utils/logger.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/src/utils/pathUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/src/utils/pathUtils.test.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/src/utils/pathUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/src/utils/pathUtils.ts -------------------------------------------------------------------------------- /docker/osd-dev/scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/osd-dev/scripts/tsconfig.json -------------------------------------------------------------------------------- /docker/runner/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/runner/docker-compose.yml -------------------------------------------------------------------------------- /docker/scripts/create_docker_networks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/scripts/create_docker_networks.sh -------------------------------------------------------------------------------- /docker/wazuh-4.2-es/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.2-es/README.md -------------------------------------------------------------------------------- /docker/wazuh-4.2-es/config/certs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.2-es/config/certs.yml -------------------------------------------------------------------------------- /docker/wazuh-4.2-es/config/filebeat/filebeat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.2-es/config/filebeat/filebeat.yml -------------------------------------------------------------------------------- /docker/wazuh-4.2-es/config/imposter/api_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.2-es/config/imposter/api_info.json -------------------------------------------------------------------------------- /docker/wazuh-4.2-es/config/imposter/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.2-es/config/imposter/login.js -------------------------------------------------------------------------------- /docker/wazuh-4.2-es/config/imposter/wazuh-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.2-es/config/imposter/wazuh-config.yml -------------------------------------------------------------------------------- /docker/wazuh-4.2-es/config/kibana/wazuh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.2-es/config/kibana/wazuh.yml -------------------------------------------------------------------------------- /docker/wazuh-4.2-es/config/setup_permissions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.2-es/config/setup_permissions.sh -------------------------------------------------------------------------------- /docker/wazuh-4.2-es/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.2-es/pre.sh -------------------------------------------------------------------------------- /docker/wazuh-4.2-es/pre.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.2-es/pre.yml -------------------------------------------------------------------------------- /docker/wazuh-4.2-es/rel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.2-es/rel.sh -------------------------------------------------------------------------------- /docker/wazuh-4.2-es/rel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.2-es/rel.yml -------------------------------------------------------------------------------- /docker/wazuh-4.3-odfe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-odfe/README.md -------------------------------------------------------------------------------- /docker/wazuh-4.3-odfe/config/certs/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-odfe/config/certs/ca.json -------------------------------------------------------------------------------- /docker/wazuh-4.3-odfe/config/certs/cfssl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-odfe/config/certs/cfssl.json -------------------------------------------------------------------------------- /docker/wazuh-4.3-odfe/config/certs/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-odfe/config/certs/host.json -------------------------------------------------------------------------------- /docker/wazuh-4.3-odfe/config/elasticsearch/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-odfe/config/elasticsearch/config.yml -------------------------------------------------------------------------------- /docker/wazuh-4.3-odfe/config/elasticsearch/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-odfe/config/elasticsearch/roles.yml -------------------------------------------------------------------------------- /docker/wazuh-4.3-odfe/config/kibana/kibana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-odfe/config/kibana/kibana.yml -------------------------------------------------------------------------------- /docker/wazuh-4.3-odfe/config/kibana/kibana_saml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-odfe/config/kibana/kibana_saml.yml -------------------------------------------------------------------------------- /docker/wazuh-4.3-odfe/config/kibana/wazuh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-odfe/config/kibana/wazuh.yml -------------------------------------------------------------------------------- /docker/wazuh-4.3-odfe/enable_saml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-odfe/enable_saml.sh -------------------------------------------------------------------------------- /docker/wazuh-4.3-odfe/rel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-odfe/rel.sh -------------------------------------------------------------------------------- /docker/wazuh-4.3-odfe/rel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-odfe/rel.yml -------------------------------------------------------------------------------- /docker/wazuh-4.3-wz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-wz/README.md -------------------------------------------------------------------------------- /docker/wazuh-4.3-wz/config/certs/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-wz/config/certs/ca.json -------------------------------------------------------------------------------- /docker/wazuh-4.3-wz/config/certs/cfssl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-wz/config/certs/cfssl.json -------------------------------------------------------------------------------- /docker/wazuh-4.3-wz/config/certs/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-wz/config/certs/host.json -------------------------------------------------------------------------------- /docker/wazuh-4.3-wz/config/filebeat/filebeat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-wz/config/filebeat/filebeat.yml -------------------------------------------------------------------------------- /docker/wazuh-4.3-wz/config/imposter/api_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-wz/config/imposter/api_info.json -------------------------------------------------------------------------------- /docker/wazuh-4.3-wz/config/imposter/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-wz/config/imposter/login.js -------------------------------------------------------------------------------- /docker/wazuh-4.3-wz/config/imposter/wazuh-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-wz/config/imposter/wazuh-config.yml -------------------------------------------------------------------------------- /docker/wazuh-4.3-wz/config/wazuh_dashboard/wazuh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-wz/config/wazuh_dashboard/wazuh.yml -------------------------------------------------------------------------------- /docker/wazuh-4.3-wz/config/wazuh_indexer/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-wz/config/wazuh_indexer/config.yml -------------------------------------------------------------------------------- /docker/wazuh-4.3-wz/config/wazuh_indexer/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-wz/config/wazuh_indexer/roles.yml -------------------------------------------------------------------------------- /docker/wazuh-4.3-wz/enable_saml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-wz/enable_saml.sh -------------------------------------------------------------------------------- /docker/wazuh-4.3-wz/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-wz/pre.sh -------------------------------------------------------------------------------- /docker/wazuh-4.3-wz/pre.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-wz/pre.yml -------------------------------------------------------------------------------- /docker/wazuh-4.3-wz/rel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-wz/rel.sh -------------------------------------------------------------------------------- /docker/wazuh-4.3-wz/rel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.3-wz/rel.yml -------------------------------------------------------------------------------- /docker/wazuh-4.4-wz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.4-wz/README.md -------------------------------------------------------------------------------- /docker/wazuh-4.4-wz/config/certs/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.4-wz/config/certs/ca.json -------------------------------------------------------------------------------- /docker/wazuh-4.4-wz/config/certs/cfssl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.4-wz/config/certs/cfssl.json -------------------------------------------------------------------------------- /docker/wazuh-4.4-wz/config/certs/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.4-wz/config/certs/host.json -------------------------------------------------------------------------------- /docker/wazuh-4.4-wz/config/filebeat/filebeat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.4-wz/config/filebeat/filebeat.yml -------------------------------------------------------------------------------- /docker/wazuh-4.4-wz/config/imposter/api_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.4-wz/config/imposter/api_info.json -------------------------------------------------------------------------------- /docker/wazuh-4.4-wz/config/imposter/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.4-wz/config/imposter/login.js -------------------------------------------------------------------------------- /docker/wazuh-4.4-wz/config/imposter/wazuh-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.4-wz/config/imposter/wazuh-config.yml -------------------------------------------------------------------------------- /docker/wazuh-4.4-wz/config/wazuh_dashboard/wazuh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.4-wz/config/wazuh_dashboard/wazuh.yml -------------------------------------------------------------------------------- /docker/wazuh-4.4-wz/config/wazuh_indexer/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.4-wz/config/wazuh_indexer/config.yml -------------------------------------------------------------------------------- /docker/wazuh-4.4-wz/config/wazuh_indexer/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.4-wz/config/wazuh_indexer/roles.yml -------------------------------------------------------------------------------- /docker/wazuh-4.4-wz/enable_saml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.4-wz/enable_saml.sh -------------------------------------------------------------------------------- /docker/wazuh-4.4-wz/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.4-wz/pre.sh -------------------------------------------------------------------------------- /docker/wazuh-4.4-wz/pre.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.4-wz/pre.yml -------------------------------------------------------------------------------- /docker/wazuh-4.4-wz/rel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.4-wz/rel.sh -------------------------------------------------------------------------------- /docker/wazuh-4.4-wz/rel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.4-wz/rel.yml -------------------------------------------------------------------------------- /docker/wazuh-4.5-wz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.5-wz/README.md -------------------------------------------------------------------------------- /docker/wazuh-4.5-wz/config/certs/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.5-wz/config/certs/ca.json -------------------------------------------------------------------------------- /docker/wazuh-4.5-wz/config/certs/cfssl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.5-wz/config/certs/cfssl.json -------------------------------------------------------------------------------- /docker/wazuh-4.5-wz/config/certs/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.5-wz/config/certs/host.json -------------------------------------------------------------------------------- /docker/wazuh-4.5-wz/config/filebeat/filebeat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.5-wz/config/filebeat/filebeat.yml -------------------------------------------------------------------------------- /docker/wazuh-4.5-wz/config/imposter/api_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.5-wz/config/imposter/api_info.json -------------------------------------------------------------------------------- /docker/wazuh-4.5-wz/config/imposter/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.5-wz/config/imposter/login.js -------------------------------------------------------------------------------- /docker/wazuh-4.5-wz/config/imposter/wazuh-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.5-wz/config/imposter/wazuh-config.yml -------------------------------------------------------------------------------- /docker/wazuh-4.5-wz/config/wazuh_indexer/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.5-wz/config/wazuh_indexer/config.yml -------------------------------------------------------------------------------- /docker/wazuh-4.5-wz/config/wazuh_indexer/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.5-wz/config/wazuh_indexer/roles.yml -------------------------------------------------------------------------------- /docker/wazuh-4.5-wz/enable_saml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.5-wz/enable_saml.sh -------------------------------------------------------------------------------- /docker/wazuh-4.5-wz/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.5-wz/pre.sh -------------------------------------------------------------------------------- /docker/wazuh-4.5-wz/pre.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.5-wz/pre.yml -------------------------------------------------------------------------------- /docker/wazuh-4.5-wz/rel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.5-wz/rel.sh -------------------------------------------------------------------------------- /docker/wazuh-4.5-wz/rel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.5-wz/rel.yml -------------------------------------------------------------------------------- /docker/wazuh-4.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.6/README.md -------------------------------------------------------------------------------- /docker/wazuh-4.6/config/certs/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.6/config/certs/ca.json -------------------------------------------------------------------------------- /docker/wazuh-4.6/config/certs/cfssl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.6/config/certs/cfssl.json -------------------------------------------------------------------------------- /docker/wazuh-4.6/config/certs/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.6/config/certs/host.json -------------------------------------------------------------------------------- /docker/wazuh-4.6/config/filebeat/filebeat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.6/config/filebeat/filebeat.yml -------------------------------------------------------------------------------- /docker/wazuh-4.6/config/imposter/api_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.6/config/imposter/api_info.json -------------------------------------------------------------------------------- /docker/wazuh-4.6/config/imposter/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.6/config/imposter/login.js -------------------------------------------------------------------------------- /docker/wazuh-4.6/config/imposter/wazuh-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.6/config/imposter/wazuh-config.yml -------------------------------------------------------------------------------- /docker/wazuh-4.6/config/wazuh_dashboard/wazuh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.6/config/wazuh_dashboard/wazuh.yml -------------------------------------------------------------------------------- /docker/wazuh-4.6/config/wazuh_indexer/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.6/config/wazuh_indexer/config.yml -------------------------------------------------------------------------------- /docker/wazuh-4.6/config/wazuh_indexer/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.6/config/wazuh_indexer/roles.yml -------------------------------------------------------------------------------- /docker/wazuh-4.6/enable_saml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.6/enable_saml.sh -------------------------------------------------------------------------------- /docker/wazuh-4.6/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.6/pre.sh -------------------------------------------------------------------------------- /docker/wazuh-4.6/pre.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.6/pre.yml -------------------------------------------------------------------------------- /docker/wazuh-4.6/rel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.6/rel.sh -------------------------------------------------------------------------------- /docker/wazuh-4.6/rel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.6/rel.yml -------------------------------------------------------------------------------- /docker/wazuh-4.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.7/README.md -------------------------------------------------------------------------------- /docker/wazuh-4.7/config/certs/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.7/config/certs/ca.json -------------------------------------------------------------------------------- /docker/wazuh-4.7/config/certs/cfssl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.7/config/certs/cfssl.json -------------------------------------------------------------------------------- /docker/wazuh-4.7/config/certs/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.7/config/certs/host.json -------------------------------------------------------------------------------- /docker/wazuh-4.7/config/filebeat/filebeat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.7/config/filebeat/filebeat.yml -------------------------------------------------------------------------------- /docker/wazuh-4.7/config/imposter/api_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.7/config/imposter/api_info.json -------------------------------------------------------------------------------- /docker/wazuh-4.7/config/imposter/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.7/config/imposter/login.js -------------------------------------------------------------------------------- /docker/wazuh-4.7/config/imposter/wazuh-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.7/config/imposter/wazuh-config.yml -------------------------------------------------------------------------------- /docker/wazuh-4.7/config/wazuh_dashboard/wazuh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.7/config/wazuh_dashboard/wazuh.yml -------------------------------------------------------------------------------- /docker/wazuh-4.7/config/wazuh_indexer/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.7/config/wazuh_indexer/config.yml -------------------------------------------------------------------------------- /docker/wazuh-4.7/config/wazuh_indexer/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.7/config/wazuh_indexer/roles.yml -------------------------------------------------------------------------------- /docker/wazuh-4.7/enable_saml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.7/enable_saml.sh -------------------------------------------------------------------------------- /docker/wazuh-4.7/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.7/pre.sh -------------------------------------------------------------------------------- /docker/wazuh-4.7/pre.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.7/pre.yml -------------------------------------------------------------------------------- /docker/wazuh-4.7/rel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.7/rel.sh -------------------------------------------------------------------------------- /docker/wazuh-4.7/rel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.7/rel.yml -------------------------------------------------------------------------------- /docker/wazuh-4.x-es/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.x-es/README.md -------------------------------------------------------------------------------- /docker/wazuh-4.x-es/config/certs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.x-es/config/certs.yml -------------------------------------------------------------------------------- /docker/wazuh-4.x-es/config/filebeat/filebeat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.x-es/config/filebeat/filebeat.yml -------------------------------------------------------------------------------- /docker/wazuh-4.x-es/config/imposter/api_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.x-es/config/imposter/api_info.json -------------------------------------------------------------------------------- /docker/wazuh-4.x-es/config/imposter/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.x-es/config/imposter/login.js -------------------------------------------------------------------------------- /docker/wazuh-4.x-es/config/kibana/wazuh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.x-es/config/kibana/wazuh.yml -------------------------------------------------------------------------------- /docker/wazuh-4.x-es/config/setup_permissions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.x-es/config/setup_permissions.sh -------------------------------------------------------------------------------- /docker/wazuh-4.x-es/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.x-es/pre.sh -------------------------------------------------------------------------------- /docker/wazuh-4.x-es/pre.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.x-es/pre.yml -------------------------------------------------------------------------------- /docker/wazuh-4.x-es/rel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.x-es/rel.sh -------------------------------------------------------------------------------- /docker/wazuh-4.x-es/rel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docker/wazuh-4.x-es/rel.yml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /docs/AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docs/AGENTS.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docs/SUMMARY.md -------------------------------------------------------------------------------- /docs/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docs/book.toml -------------------------------------------------------------------------------- /docs/build.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | mdbook build 4 | -------------------------------------------------------------------------------- /docs/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docs/dev/README.md -------------------------------------------------------------------------------- /docs/dev/build-image.md: -------------------------------------------------------------------------------- 1 | # How to generate a container image 2 | -------------------------------------------------------------------------------- /docs/dev/build-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docs/dev/build-packages.md -------------------------------------------------------------------------------- /docs/dev/build-sources.md: -------------------------------------------------------------------------------- 1 | # How to build from sources 2 | -------------------------------------------------------------------------------- /docs/dev/run-sources.md: -------------------------------------------------------------------------------- 1 | # How to run from sources 2 | -------------------------------------------------------------------------------- /docs/dev/run-tests.md: -------------------------------------------------------------------------------- 1 | # How to run the tests 2 | -------------------------------------------------------------------------------- /docs/dev/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docs/dev/setup.md -------------------------------------------------------------------------------- /docs/diag/diagnostic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docs/diag/diagnostic.md -------------------------------------------------------------------------------- /docs/ref/README.md: -------------------------------------------------------------------------------- 1 | # Introduction 2 | -------------------------------------------------------------------------------- /docs/ref/architecture.md: -------------------------------------------------------------------------------- 1 | # Architecture 2 | -------------------------------------------------------------------------------- /docs/ref/backup-restore.md: -------------------------------------------------------------------------------- 1 | # Backup and restore 2 | -------------------------------------------------------------------------------- /docs/ref/compatibility.md: -------------------------------------------------------------------------------- 1 | # Compatibility 2 | -------------------------------------------------------------------------------- /docs/ref/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docs/ref/configuration.md -------------------------------------------------------------------------------- /docs/ref/description.md: -------------------------------------------------------------------------------- 1 | # Description 2 | -------------------------------------------------------------------------------- /docs/ref/getting-started/README.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | -------------------------------------------------------------------------------- /docs/ref/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docs/ref/getting-started/installation.md -------------------------------------------------------------------------------- /docs/ref/getting-started/packages.md: -------------------------------------------------------------------------------- 1 | # Packages 2 | -------------------------------------------------------------------------------- /docs/ref/getting-started/requirements.md: -------------------------------------------------------------------------------- 1 | # Requirements 2 | -------------------------------------------------------------------------------- /docs/ref/glossary.md: -------------------------------------------------------------------------------- 1 | # Glossary 2 | -------------------------------------------------------------------------------- /docs/ref/modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docs/ref/modules/README.md -------------------------------------------------------------------------------- /docs/ref/modules/healthcheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docs/ref/modules/healthcheck.md -------------------------------------------------------------------------------- /docs/ref/modules/normalization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docs/ref/modules/normalization.md -------------------------------------------------------------------------------- /docs/ref/modules/notifications-alerting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docs/ref/modules/notifications-alerting.md -------------------------------------------------------------------------------- /docs/ref/modules/saved-objects-dashboards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docs/ref/modules/saved-objects-dashboards.md -------------------------------------------------------------------------------- /docs/ref/performance.md: -------------------------------------------------------------------------------- 1 | # Performance 2 | -------------------------------------------------------------------------------- /docs/ref/security.md: -------------------------------------------------------------------------------- 1 | # Security 2 | -------------------------------------------------------------------------------- /docs/ref/uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docs/ref/uninstall.md -------------------------------------------------------------------------------- /docs/ref/upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/docs/ref/upgrade.md -------------------------------------------------------------------------------- /docs/server.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | mdbook serve --open 4 | -------------------------------------------------------------------------------- /plugins/main/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/.eslintrc.json -------------------------------------------------------------------------------- /plugins/main/.i18nrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/.i18nrc.json -------------------------------------------------------------------------------- /plugins/main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/README.md -------------------------------------------------------------------------------- /plugins/main/common/api-info/endpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/common/api-info/endpoints.json -------------------------------------------------------------------------------- /plugins/main/common/api-info/security-actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/common/api-info/security-actions.json -------------------------------------------------------------------------------- /plugins/main/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/common/constants.ts -------------------------------------------------------------------------------- /plugins/main/common/csv-key-equivalence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/common/csv-key-equivalence.ts -------------------------------------------------------------------------------- /plugins/main/common/dashboards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/common/dashboards/index.ts -------------------------------------------------------------------------------- /plugins/main/common/dashboards/lib/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/common/dashboards/lib/builders.ts -------------------------------------------------------------------------------- /plugins/main/common/dashboards/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/common/dashboards/lib/constants.ts -------------------------------------------------------------------------------- /plugins/main/common/dashboards/lib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/common/dashboards/lib/helpers.ts -------------------------------------------------------------------------------- /plugins/main/common/dashboards/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/common/dashboards/lib/index.ts -------------------------------------------------------------------------------- /plugins/main/common/dashboards/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/common/dashboards/types.ts -------------------------------------------------------------------------------- /plugins/main/common/known-fields/.gitignore: -------------------------------------------------------------------------------- 1 | *.json -------------------------------------------------------------------------------- /plugins/main/common/services/file-extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/common/services/file-extension.test.ts -------------------------------------------------------------------------------- /plugins/main/common/services/file-extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/common/services/file-extension.ts -------------------------------------------------------------------------------- /plugins/main/common/services/file-size.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/common/services/file-size.test.ts -------------------------------------------------------------------------------- /plugins/main/common/services/file-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/common/services/file-size.ts -------------------------------------------------------------------------------- /plugins/main/common/services/index-patterns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/common/services/index-patterns.ts -------------------------------------------------------------------------------- /plugins/main/common/services/web_documentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/common/services/web_documentation.ts -------------------------------------------------------------------------------- /plugins/main/common/services/wz_agent_status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/common/services/wz_agent_status.ts -------------------------------------------------------------------------------- /plugins/main/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/common/utils.ts -------------------------------------------------------------------------------- /plugins/main/common/wazuh-modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/common/wazuh-modules.ts -------------------------------------------------------------------------------- /plugins/main/docs/mount-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/docs/mount-application.md -------------------------------------------------------------------------------- /plugins/main/docs/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/docs/routing.md -------------------------------------------------------------------------------- /plugins/main/docs/wz-link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/docs/wz-link.md -------------------------------------------------------------------------------- /plugins/main/knip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/knip.json -------------------------------------------------------------------------------- /plugins/main/opensearch_dashboards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/opensearch_dashboards.json -------------------------------------------------------------------------------- /plugins/main/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/package.json -------------------------------------------------------------------------------- /plugins/main/public/app-router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/app-router.tsx -------------------------------------------------------------------------------- /plugins/main/public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/app.js -------------------------------------------------------------------------------- /plugins/main/public/application.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/application.tsx -------------------------------------------------------------------------------- /plugins/main/public/components/agents/agent-status.scss: -------------------------------------------------------------------------------- 1 | .wz-agent-icon-tip { 2 | margin-left: 5px; 3 | } 4 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/data-source/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './use-data-source'; -------------------------------------------------------------------------------- /plugins/main/public/components/common/data-source/pattern/events/aws/index.ts: -------------------------------------------------------------------------------- 1 | export * from './aws-data-source'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/data-source/pattern/events/azure/index.ts: -------------------------------------------------------------------------------- 1 | export * from './azure-data-source'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/data-source/pattern/events/cluster/index.ts: -------------------------------------------------------------------------------- 1 | export * from './cluster-data-source'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/data-source/pattern/events/configuration-assessment/index.ts: -------------------------------------------------------------------------------- 1 | export * from './configuration-assessment-data-source'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/data-source/pattern/events/docker/index.ts: -------------------------------------------------------------------------------- 1 | export * from './docker-data-source'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/data-source/pattern/events/events-count/index.ts: -------------------------------------------------------------------------------- 1 | export * from './events-count-data-source'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/data-source/pattern/events/fim/index.ts: -------------------------------------------------------------------------------- 1 | export * from './fim-data-source'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/data-source/pattern/events/gdpr/index.ts: -------------------------------------------------------------------------------- 1 | export * from './gdpr-data-source'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/data-source/pattern/events/github/index.ts: -------------------------------------------------------------------------------- 1 | export * from './github-data-source'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/data-source/pattern/events/google-cloud/index.ts: -------------------------------------------------------------------------------- 1 | export * from './google-cloud-data-source'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/data-source/pattern/events/hipaa/index.ts: -------------------------------------------------------------------------------- 1 | export * from './hipaa-data-source'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/data-source/pattern/events/malware-detection/index.ts: -------------------------------------------------------------------------------- 1 | export * from './malware-detection-data-source'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/data-source/pattern/events/mitre-attack/index.ts: -------------------------------------------------------------------------------- 1 | export * from './mitre-attack-data-source'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/data-source/pattern/events/nist-800-53/index.ts: -------------------------------------------------------------------------------- 1 | export * from './nist-800-53-data-source'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/data-source/pattern/events/office-365/index.ts: -------------------------------------------------------------------------------- 1 | export * from './office-365-data-source'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/data-source/pattern/events/pci-dss/index.ts: -------------------------------------------------------------------------------- 1 | export * from './pci-dss-data-source'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/data-source/pattern/events/threat-hunting/index.ts: -------------------------------------------------------------------------------- 1 | export * from './threat-hunting-data-source'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/data-source/pattern/events/tsc/index.ts: -------------------------------------------------------------------------------- 1 | export * from './tsc-data-souce'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/data-source/pattern/events/vulnerabilities/index.ts: -------------------------------------------------------------------------------- 1 | export * from './vulnerabilities-data-source'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/error-boundary-prompt/error-boundary-prompt.scss: -------------------------------------------------------------------------------- 1 | .wz-error-boundary__details { 2 | white-space: pre-wrap; 3 | } 4 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/form/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/components/common/form/types.ts -------------------------------------------------------------------------------- /plugins/main/public/components/common/hocs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/components/common/hocs/index.ts -------------------------------------------------------------------------------- /plugins/main/public/components/common/hooks/saved_query/constants.ts: -------------------------------------------------------------------------------- 1 | export const SAVED_QUERY = 'savedQuery'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/index-pattern/index.ts: -------------------------------------------------------------------------------- 1 | export * from './render-field'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/panels/index.ts: -------------------------------------------------------------------------------- 1 | export * from './panel_split'; -------------------------------------------------------------------------------- /plugins/main/public/components/common/tabs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './module-sub-tabs'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/common/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/components/common/util/index.ts -------------------------------------------------------------------------------- /plugins/main/public/components/eui-suggest/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/components/eui-suggest/index.js -------------------------------------------------------------------------------- /plugins/main/public/components/overview/amazon-web-services/dashboards/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './dashboard'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/azure/dashboards/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './dashboard'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/docker/dashboards/index.ts: -------------------------------------------------------------------------------- 1 | export * from './dashboard'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/fim/dashboard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './dashboard'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/fim/index.ts: -------------------------------------------------------------------------------- 1 | export * from './inventory'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/fim/inventory/index.ts: -------------------------------------------------------------------------------- 1 | export * from './inventory'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/fim/inventory/inventories/index.ts: -------------------------------------------------------------------------------- 1 | export * from './files/inventory'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/gdpr/dashboards/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './dashboard'; -------------------------------------------------------------------------------- /plugins/main/public/components/overview/github/dashboards/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './dashboard'; -------------------------------------------------------------------------------- /plugins/main/public/components/overview/google-cloud/dashboards/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './dashboard'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/hipaa/dashboards/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './dashboard'; -------------------------------------------------------------------------------- /plugins/main/public/components/overview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/components/overview/index.ts -------------------------------------------------------------------------------- /plugins/main/public/components/overview/it-hygiene/common/constants.ts: -------------------------------------------------------------------------------- 1 | export const DASHBOARD_WIDTH_LIMIT = 48; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/it-hygiene/dashboards/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './dashboard'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/it-hygiene/networks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './inventory'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/it-hygiene/packages/index.ts: -------------------------------------------------------------------------------- 1 | export * from './inventory'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/it-hygiene/processes/index.ts: -------------------------------------------------------------------------------- 1 | export * from './inventory'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/it-hygiene/services/index.ts: -------------------------------------------------------------------------------- 1 | export * from './inventory'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/it-hygiene/system/index.ts: -------------------------------------------------------------------------------- 1 | export * from './inventory'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/it-hygiene/users/index.ts: -------------------------------------------------------------------------------- 1 | export * from './inventory'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/malware-detection/dashboard/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './dashboard'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/mitre/dashboard/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './dashboard'; -------------------------------------------------------------------------------- /plugins/main/public/components/overview/nist/dashboards/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './dashboard'; -------------------------------------------------------------------------------- /plugins/main/public/components/overview/office/dashboard/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './dashboard'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/pci/dashboards/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './dashboard'; -------------------------------------------------------------------------------- /plugins/main/public/components/overview/threat-hunting/dashboard/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './dashboard'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/tsc/dashboards/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './dashboard'; -------------------------------------------------------------------------------- /plugins/main/public/components/overview/vulnerabilities/dashboards/inventory/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './inventory'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/vulnerabilities/dashboards/overview/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './dashboard'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/components/overview/vulnerabilities/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './dashboards'; -------------------------------------------------------------------------------- /plugins/main/public/components/search-bar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/components/search-bar/README.md -------------------------------------------------------------------------------- /plugins/main/public/components/search-bar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/components/search-bar/index.tsx -------------------------------------------------------------------------------- /plugins/main/public/components/security/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/components/security/index.ts -------------------------------------------------------------------------------- /plugins/main/public/components/security/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/components/security/main.tsx -------------------------------------------------------------------------------- /plugins/main/public/components/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/components/settings/index.ts -------------------------------------------------------------------------------- /plugins/main/public/components/wz-link/wz-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/components/wz-link/wz-link.tsx -------------------------------------------------------------------------------- /plugins/main/public/components/wz-menu/wz-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/components/wz-menu/wz-menu.js -------------------------------------------------------------------------------- /plugins/main/public/components/wz-menu/wz-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/components/wz-menu/wz-menu.scss -------------------------------------------------------------------------------- /plugins/main/public/components/wz-search-bar/src/style/wz-date-picker.scss: -------------------------------------------------------------------------------- 1 | .wz-date-picker{ 2 | margin-left: 0px!important; 3 | } 4 | -------------------------------------------------------------------------------- /plugins/main/public/components/wz-search-bar/src/style/wz-search-badges.scss: -------------------------------------------------------------------------------- 1 | .wz-search-badge { 2 | margin-bottom: 5px; 3 | } -------------------------------------------------------------------------------- /plugins/main/public/components/wz-stat/_stat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/components/wz-stat/_stat.scss -------------------------------------------------------------------------------- /plugins/main/public/components/wz-stat/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/components/wz-stat/common.ts -------------------------------------------------------------------------------- /plugins/main/public/components/wz-stat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/components/wz-stat/index.ts -------------------------------------------------------------------------------- /plugins/main/public/components/wz-stat/wzStat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/components/wz-stat/wzStat.tsx -------------------------------------------------------------------------------- /plugins/main/public/controllers/overview/components/last-alerts-stat/index.ts: -------------------------------------------------------------------------------- 1 | export * from './last-alerts-stat'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/controllers/overview/components/stats.scss: -------------------------------------------------------------------------------- 1 | .vulnerabilites-summary-card { 2 | padding-top: 2vh; 3 | } 4 | -------------------------------------------------------------------------------- /plugins/main/public/factories/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/factories/misc.js -------------------------------------------------------------------------------- /plugins/main/public/factories/tab-visualizations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/factories/tab-visualizations.js -------------------------------------------------------------------------------- /plugins/main/public/factories/wazuh-security.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/factories/wazuh-security.js -------------------------------------------------------------------------------- /plugins/main/public/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/index.ts -------------------------------------------------------------------------------- /plugins/main/public/kibana-integrations/discover/application/angular/_index.scss: -------------------------------------------------------------------------------- 1 | @import 'directives/index'; 2 | 3 | -------------------------------------------------------------------------------- /plugins/main/public/kibana-services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/kibana-services.ts -------------------------------------------------------------------------------- /plugins/main/public/package.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/package.test.ts -------------------------------------------------------------------------------- /plugins/main/public/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/plugin.ts -------------------------------------------------------------------------------- /plugins/main/public/react-services/action-agents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/react-services/action-agents.js -------------------------------------------------------------------------------- /plugins/main/public/react-services/app-state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/react-services/app-state.js -------------------------------------------------------------------------------- /plugins/main/public/react-services/check-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/react-services/check-index.ts -------------------------------------------------------------------------------- /plugins/main/public/react-services/error-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/react-services/error-handler.ts -------------------------------------------------------------------------------- /plugins/main/public/react-services/format-number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/react-services/format-number.ts -------------------------------------------------------------------------------- /plugins/main/public/react-services/group-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/react-services/group-handler.js -------------------------------------------------------------------------------- /plugins/main/public/react-services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/react-services/index.ts -------------------------------------------------------------------------------- /plugins/main/public/react-services/query-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/react-services/query-config.js -------------------------------------------------------------------------------- /plugins/main/public/react-services/reporting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/react-services/reporting.js -------------------------------------------------------------------------------- /plugins/main/public/react-services/saved-objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/react-services/saved-objects.js -------------------------------------------------------------------------------- /plugins/main/public/react-services/state-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/react-services/state-storage.ts -------------------------------------------------------------------------------- /plugins/main/public/react-services/time-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/react-services/time-service.js -------------------------------------------------------------------------------- /plugins/main/public/react-services/wazuh-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/react-services/wazuh-config.js -------------------------------------------------------------------------------- /plugins/main/public/react-services/wz-agents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/react-services/wz-agents.ts -------------------------------------------------------------------------------- /plugins/main/public/react-services/wz-api-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/react-services/wz-api-check.js -------------------------------------------------------------------------------- /plugins/main/public/react-services/wz-api-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/react-services/wz-api-utils.ts -------------------------------------------------------------------------------- /plugins/main/public/react-services/wz-csv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/react-services/wz-csv.js -------------------------------------------------------------------------------- /plugins/main/public/react-services/wz-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/react-services/wz-request.ts -------------------------------------------------------------------------------- /plugins/main/public/redux/actions/groupsActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/redux/actions/groupsActions.js -------------------------------------------------------------------------------- /plugins/main/public/redux/actions/statusActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/redux/actions/statusActions.js -------------------------------------------------------------------------------- /plugins/main/public/redux/reducers/rootReducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/redux/reducers/rootReducers.js -------------------------------------------------------------------------------- /plugins/main/public/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/redux/store.js -------------------------------------------------------------------------------- /plugins/main/public/redux/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/redux/types.ts -------------------------------------------------------------------------------- /plugins/main/public/sections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/sections.ts -------------------------------------------------------------------------------- /plugins/main/public/services/csv-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/services/csv-request.js -------------------------------------------------------------------------------- /plugins/main/public/services/file-saver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/services/file-saver.js -------------------------------------------------------------------------------- /plugins/main/public/services/request-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/services/request-handler.js -------------------------------------------------------------------------------- /plugins/main/public/services/resolves/get-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/services/resolves/get-config.js -------------------------------------------------------------------------------- /plugins/main/public/services/resolves/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/services/resolves/index.js -------------------------------------------------------------------------------- /plugins/main/public/services/visualizations/generators/index.ts: -------------------------------------------------------------------------------- 1 | export * from './by-field'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/services/visualizations/index.ts: -------------------------------------------------------------------------------- 1 | export * from './generators'; 2 | -------------------------------------------------------------------------------- /plugins/main/public/styles/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/styles/common.scss -------------------------------------------------------------------------------- /plugins/main/public/styles/component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/styles/component.scss -------------------------------------------------------------------------------- /plugins/main/public/styles/dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/styles/dashboard.scss -------------------------------------------------------------------------------- /plugins/main/public/styles/height.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/styles/height.scss -------------------------------------------------------------------------------- /plugins/main/public/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/styles/index.ts -------------------------------------------------------------------------------- /plugins/main/public/styles/inventory.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/styles/inventory.scss -------------------------------------------------------------------------------- /plugins/main/public/styles/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/styles/layout.scss -------------------------------------------------------------------------------- /plugins/main/public/styles/media-queries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/styles/media-queries.scss -------------------------------------------------------------------------------- /plugins/main/public/styles/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/styles/typography.scss -------------------------------------------------------------------------------- /plugins/main/public/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/types.ts -------------------------------------------------------------------------------- /plugins/main/public/utils/applications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/applications.ts -------------------------------------------------------------------------------- /plugins/main/public/utils/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/assets.ts -------------------------------------------------------------------------------- /plugins/main/public/utils/check-plugin-version.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/check-plugin-version.tsx -------------------------------------------------------------------------------- /plugins/main/public/utils/codemirror/brace-fold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/codemirror/brace-fold.js -------------------------------------------------------------------------------- /plugins/main/public/utils/codemirror/foldcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/codemirror/foldcode.js -------------------------------------------------------------------------------- /plugins/main/public/utils/codemirror/foldgutter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/codemirror/foldgutter.js -------------------------------------------------------------------------------- /plugins/main/public/utils/codemirror/formatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/codemirror/formatting.js -------------------------------------------------------------------------------- /plugins/main/public/utils/codemirror/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/codemirror/index.js -------------------------------------------------------------------------------- /plugins/main/public/utils/codemirror/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/codemirror/javascript.js -------------------------------------------------------------------------------- /plugins/main/public/utils/codemirror/json-lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/codemirror/json-lint.js -------------------------------------------------------------------------------- /plugins/main/public/utils/codemirror/show-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/codemirror/show-hint.js -------------------------------------------------------------------------------- /plugins/main/public/utils/codemirror/show-hint.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/codemirror/show-hint.scss -------------------------------------------------------------------------------- /plugins/main/public/utils/codemirror/ttcn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/codemirror/ttcn.scss -------------------------------------------------------------------------------- /plugins/main/public/utils/codemirror/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/codemirror/xml.js -------------------------------------------------------------------------------- /plugins/main/public/utils/components-os-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/components-os-support.js -------------------------------------------------------------------------------- /plugins/main/public/utils/create-getter-setter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/create-getter-setter.ts -------------------------------------------------------------------------------- /plugins/main/public/utils/dynamic-height.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/dynamic-height.js -------------------------------------------------------------------------------- /plugins/main/public/utils/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/errors.ts -------------------------------------------------------------------------------- /plugins/main/public/utils/filter-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/filter-handler.js -------------------------------------------------------------------------------- /plugins/main/public/utils/functions-to-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/functions-to-test.ts -------------------------------------------------------------------------------- /plugins/main/public/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/index.ts -------------------------------------------------------------------------------- /plugins/main/public/utils/json-beautifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/json-beautifier.js -------------------------------------------------------------------------------- /plugins/main/public/utils/known-fields-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/known-fields-loader.js -------------------------------------------------------------------------------- /plugins/main/public/utils/known-fields.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/known-fields.test.tsx -------------------------------------------------------------------------------- /plugins/main/public/utils/migrate_legacy_query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/migrate_legacy_query.ts -------------------------------------------------------------------------------- /plugins/main/public/utils/strings-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/public/utils/strings-tools.js -------------------------------------------------------------------------------- /plugins/main/scripts/build-tools/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/scripts/build-tools/run -------------------------------------------------------------------------------- /plugins/main/scripts/generate-api-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/scripts/generate-api-data.js -------------------------------------------------------------------------------- /plugins/main/scripts/generate-build-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/scripts/generate-build-version.js -------------------------------------------------------------------------------- /plugins/main/scripts/jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/scripts/jest.js -------------------------------------------------------------------------------- /plugins/main/scripts/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/scripts/manifest.js -------------------------------------------------------------------------------- /plugins/main/scripts/release/bump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/scripts/release/bump.js -------------------------------------------------------------------------------- /plugins/main/scripts/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/scripts/runner.js -------------------------------------------------------------------------------- /plugins/main/server/controllers/decorators.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/controllers/decorators.test.ts -------------------------------------------------------------------------------- /plugins/main/server/controllers/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/controllers/decorators.ts -------------------------------------------------------------------------------- /plugins/main/server/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/controllers/index.ts -------------------------------------------------------------------------------- /plugins/main/server/controllers/wazuh-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/controllers/wazuh-api.ts -------------------------------------------------------------------------------- /plugins/main/server/controllers/wazuh-elastic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/controllers/wazuh-elastic.ts -------------------------------------------------------------------------------- /plugins/main/server/controllers/wazuh-hosts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/controllers/wazuh-hosts.ts -------------------------------------------------------------------------------- /plugins/main/server/controllers/wazuh-utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ui-logs.controller'; 2 | -------------------------------------------------------------------------------- /plugins/main/server/health-check/index-patterns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/health-check/index-patterns.ts -------------------------------------------------------------------------------- /plugins/main/server/health-check/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/health-check/index.ts -------------------------------------------------------------------------------- /plugins/main/server/health-check/server-api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/health-check/server-api.test.ts -------------------------------------------------------------------------------- /plugins/main/server/health-check/server-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/health-check/server-api.ts -------------------------------------------------------------------------------- /plugins/main/server/health-check/templates.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/health-check/templates.test.ts -------------------------------------------------------------------------------- /plugins/main/server/health-check/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/health-check/templates.ts -------------------------------------------------------------------------------- /plugins/main/server/health-check/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/health-check/types.ts -------------------------------------------------------------------------------- /plugins/main/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/index.ts -------------------------------------------------------------------------------- /plugins/main/server/lib/api-errors-equivalence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/lib/api-errors-equivalence.ts -------------------------------------------------------------------------------- /plugins/main/server/lib/cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/lib/cookie.ts -------------------------------------------------------------------------------- /plugins/main/server/lib/error-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/lib/error-response.ts -------------------------------------------------------------------------------- /plugins/main/server/lib/extract-error-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/lib/extract-error-message.ts -------------------------------------------------------------------------------- /plugins/main/server/lib/filesystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/lib/filesystem.ts -------------------------------------------------------------------------------- /plugins/main/server/lib/generate-alerts/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/lib/generate-alerts/types.d.ts -------------------------------------------------------------------------------- /plugins/main/server/lib/generate-sample-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/lib/generate-sample-data.ts -------------------------------------------------------------------------------- /plugins/main/server/lib/sample-data/dataset/.gitignore: -------------------------------------------------------------------------------- 1 | */template.json -------------------------------------------------------------------------------- /plugins/main/server/lib/sample-data/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/lib/sample-data/index.js -------------------------------------------------------------------------------- /plugins/main/server/lib/sample-data/lib/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/lib/sample-data/lib/random.js -------------------------------------------------------------------------------- /plugins/main/server/lib/sample-data/shared-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/lib/sample-data/shared-utils.js -------------------------------------------------------------------------------- /plugins/main/server/lib/sanitizer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/lib/sanitizer/index.ts -------------------------------------------------------------------------------- /plugins/main/server/lib/sanitizer/sanitizer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/lib/sanitizer/sanitizer.test.ts -------------------------------------------------------------------------------- /plugins/main/server/lib/sanitizer/sanitizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/lib/sanitizer/sanitizer.ts -------------------------------------------------------------------------------- /plugins/main/server/mocks/platform-server.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/mocks/platform-server.mock.ts -------------------------------------------------------------------------------- /plugins/main/server/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/plugin.ts -------------------------------------------------------------------------------- /plugins/main/server/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/routes/index.ts -------------------------------------------------------------------------------- /plugins/main/server/routes/wazuh-api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/routes/wazuh-api.test.ts -------------------------------------------------------------------------------- /plugins/main/server/routes/wazuh-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/routes/wazuh-api.ts -------------------------------------------------------------------------------- /plugins/main/server/routes/wazuh-elastic.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/routes/wazuh-elastic.test.ts -------------------------------------------------------------------------------- /plugins/main/server/routes/wazuh-elastic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/routes/wazuh-elastic.ts -------------------------------------------------------------------------------- /plugins/main/server/routes/wazuh-hosts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/routes/wazuh-hosts.test.ts -------------------------------------------------------------------------------- /plugins/main/server/routes/wazuh-hosts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/routes/wazuh-hosts.ts -------------------------------------------------------------------------------- /plugins/main/server/routes/wazuh-utils/fixtures/fixture_file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/main/server/routes/wazuh-utils/index.ts: -------------------------------------------------------------------------------- 1 | export { UiLogsRoutes } from './ui-logs'; 2 | -------------------------------------------------------------------------------- /plugins/main/server/routes/wazuh-utils/ui-logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/routes/wazuh-utils/ui-logs.ts -------------------------------------------------------------------------------- /plugins/main/server/start/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/start/index.ts -------------------------------------------------------------------------------- /plugins/main/server/start/initialize/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/start/initialize/index.ts -------------------------------------------------------------------------------- /plugins/main/server/start/queue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/start/queue/index.ts -------------------------------------------------------------------------------- /plugins/main/server/start/queue/queue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/start/queue/queue.test.ts -------------------------------------------------------------------------------- /plugins/main/server/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/server/types.ts -------------------------------------------------------------------------------- /plugins/main/test/__mocks__/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/__mocks__/agent.ts -------------------------------------------------------------------------------- /plugins/main/test/__mocks__/localStorage.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/__mocks__/localStorage.setup.ts -------------------------------------------------------------------------------- /plugins/main/test/cypress/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /plugins/main/test/cypress/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/cypress/.eslintrc.json -------------------------------------------------------------------------------- /plugins/main/test/cypress/.nvmrc: -------------------------------------------------------------------------------- 1 | 17.3.0 -------------------------------------------------------------------------------- /plugins/main/test/cypress/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/cypress/.prettierrc -------------------------------------------------------------------------------- /plugins/main/test/cypress/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/cypress/CODEOWNERS -------------------------------------------------------------------------------- /plugins/main/test/cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/cypress/README.md -------------------------------------------------------------------------------- /plugins/main/test/cypress/STYLEGUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/cypress/STYLEGUIDE.md -------------------------------------------------------------------------------- /plugins/main/test/cypress/cookies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/cypress/cookies.json -------------------------------------------------------------------------------- /plugins/main/test/cypress/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/cypress/cypress.json -------------------------------------------------------------------------------- /plugins/main/test/cypress/cypress/integration/utils/health-check-constants.js: -------------------------------------------------------------------------------- 1 | export const HEALTH_CHECK_URL = 'health-check'; 2 | -------------------------------------------------------------------------------- /plugins/main/test/cypress/cypress/integration/utils/logs-constants.js: -------------------------------------------------------------------------------- 1 | export const logsTitleText = 'App log messages'; 2 | -------------------------------------------------------------------------------- /plugins/main/test/cypress/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/cypress/cypress/plugins/index.js -------------------------------------------------------------------------------- /plugins/main/test/cypress/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/cypress/cypress/support/index.js -------------------------------------------------------------------------------- /plugins/main/test/cypress/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/cypress/package-lock.json -------------------------------------------------------------------------------- /plugins/main/test/cypress/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/cypress/package.json -------------------------------------------------------------------------------- /plugins/main/test/functional/apps/overview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/functional/apps/overview/index.ts -------------------------------------------------------------------------------- /plugins/main/test/functional/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/functional/config.js -------------------------------------------------------------------------------- /plugins/main/test/functional/page_objects/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/functional/page_objects/index.js -------------------------------------------------------------------------------- /plugins/main/test/functional/services/area_chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/functional/services/area_chart.ts -------------------------------------------------------------------------------- /plugins/main/test/functional/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/functional/services/index.js -------------------------------------------------------------------------------- /plugins/main/test/functional/services/pie_chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/functional/services/pie_chart.ts -------------------------------------------------------------------------------- /plugins/main/test/functional/services/table_viz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/functional/services/table_viz.ts -------------------------------------------------------------------------------- /plugins/main/test/jest/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/jest/config.js -------------------------------------------------------------------------------- /plugins/main/test/public/query-attr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/public/query-attr.ts -------------------------------------------------------------------------------- /plugins/main/test/server/alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/server/alerts.js -------------------------------------------------------------------------------- /plugins/main/test/server/wazuh-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/server/wazuh-api.js -------------------------------------------------------------------------------- /plugins/main/test/server/wazuh-elastic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/server/wazuh-elastic.js -------------------------------------------------------------------------------- /plugins/main/test/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/types/index.ts -------------------------------------------------------------------------------- /plugins/main/test/utils/CSS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/test/utils/CSS.ts -------------------------------------------------------------------------------- /plugins/main/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/tsconfig.json -------------------------------------------------------------------------------- /plugins/main/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/main/yarn.lock -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/.eslintrc.json -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/.i18nrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/.i18nrc.json -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/README.md -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/common/constants.ts -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/common/types.ts -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/knip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/knip.json -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/package.json -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/public/components/updates-notification.scss: -------------------------------------------------------------------------------- 1 | .wz-check-updates-bottom-bar { 2 | margin-left: 320px; 3 | } 4 | -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/public/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/public/hooks/index.ts -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/public/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/public/index.ts -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/public/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/public/plugin.ts -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/public/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/public/types.ts -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/public/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/public/utils/index.ts -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/scripts/jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/scripts/jest.js -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/scripts/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/scripts/manifest.js -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/scripts/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/scripts/runner.js -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/server/index.ts -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/server/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/server/plugin.ts -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/server/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/server/routes/index.ts -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/server/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/server/types.ts -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/test/jest/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/test/jest/config.js -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/translations/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/translations/en-US.json -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/tsconfig.json -------------------------------------------------------------------------------- /plugins/wazuh-check-updates/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-check-updates/yarn.lock -------------------------------------------------------------------------------- /plugins/wazuh-core/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/.eslintrc.json -------------------------------------------------------------------------------- /plugins/wazuh-core/.i18nrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/.i18nrc.json -------------------------------------------------------------------------------- /plugins/wazuh-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/README.md -------------------------------------------------------------------------------- /plugins/wazuh-core/common/api-user-status-run-as.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/common/api-user-status-run-as.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/common/constants.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/common/csv-key-equivalence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/common/csv-key-equivalence.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/common/plugin-settings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/common/plugin-settings.test.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/common/services/__fixtures__/fixture_file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/wazuh-core/common/services/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/common/services/cache.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/common/services/file-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/common/services/file-size.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/common/services/settings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/common/services/settings.test.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/common/services/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/common/services/settings.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/common/settings-adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/common/settings-adapter.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/common/types.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/docs/README.md -------------------------------------------------------------------------------- /plugins/wazuh-core/knip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/knip.json -------------------------------------------------------------------------------- /plugins/wazuh-core/opensearch_dashboards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/opensearch_dashboards.json -------------------------------------------------------------------------------- /plugins/wazuh-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/package.json -------------------------------------------------------------------------------- /plugins/wazuh-core/public/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/public/hooks/index.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/public/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/public/index.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/public/plugin-services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/public/plugin-services.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/public/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/public/plugin.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/public/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/public/types.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/public/utils/index.ts: -------------------------------------------------------------------------------- 1 | export { formatUIDate } from './time'; 2 | -------------------------------------------------------------------------------- /plugins/wazuh-core/public/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/public/utils/time.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/scripts/jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/scripts/jest.js -------------------------------------------------------------------------------- /plugins/wazuh-core/scripts/lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/scripts/lib/cli.js -------------------------------------------------------------------------------- /plugins/wazuh-core/scripts/lib/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/scripts/lib/http.js -------------------------------------------------------------------------------- /plugins/wazuh-core/scripts/lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/scripts/lib/logger.js -------------------------------------------------------------------------------- /plugins/wazuh-core/scripts/lib/question.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/scripts/lib/question.js -------------------------------------------------------------------------------- /plugins/wazuh-core/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/server/index.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/server/plugin-services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/server/plugin-services.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/server/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/server/plugin.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/server/services/configuration/index.ts: -------------------------------------------------------------------------------- 1 | export * from './initializer-context-provider'; 2 | -------------------------------------------------------------------------------- /plugins/wazuh-core/server/services/cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/server/services/cookie.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/server/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/server/services/index.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/server/services/manage-hosts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/server/services/manage-hosts.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/server/services/security-factory/index.ts: -------------------------------------------------------------------------------- 1 | export * from './security-factory'; 2 | -------------------------------------------------------------------------------- /plugins/wazuh-core/server/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/server/types.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/test/jest/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/test/jest/config.js -------------------------------------------------------------------------------- /plugins/wazuh-core/test/mocks/logger-mocked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/test/mocks/logger-mocked.ts -------------------------------------------------------------------------------- /plugins/wazuh-core/translations/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/translations/en-US.json -------------------------------------------------------------------------------- /plugins/wazuh-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/tsconfig.json -------------------------------------------------------------------------------- /plugins/wazuh-core/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/plugins/wazuh-core/yarn.lock -------------------------------------------------------------------------------- /screenshots/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/screenshots/app.png -------------------------------------------------------------------------------- /screenshots/app2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/screenshots/app2.png -------------------------------------------------------------------------------- /screenshots/app3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/screenshots/app3.png -------------------------------------------------------------------------------- /screenshots/app4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/screenshots/app4.png -------------------------------------------------------------------------------- /screenshots/app5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/screenshots/app5.png -------------------------------------------------------------------------------- /screenshots/app6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/screenshots/app6.png -------------------------------------------------------------------------------- /screenshots/app7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/screenshots/app7.png -------------------------------------------------------------------------------- /scripts/lib/cli/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/scripts/lib/cli/cli.js -------------------------------------------------------------------------------- /scripts/lib/cli/question.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/scripts/lib/cli/question.js -------------------------------------------------------------------------------- /scripts/release/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/scripts/release/README.md -------------------------------------------------------------------------------- /scripts/release/bump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/scripts/release/bump.js -------------------------------------------------------------------------------- /scripts/release/lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/scripts/release/lib/logger.js -------------------------------------------------------------------------------- /scripts/release/lib/read-manifest-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/scripts/release/lib/read-manifest-package.js -------------------------------------------------------------------------------- /scripts/release/lib/update-changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/scripts/release/lib/update-changelog.js -------------------------------------------------------------------------------- /scripts/release/lib/update-imposter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/scripts/release/lib/update-imposter.js -------------------------------------------------------------------------------- /scripts/release/lib/update-manifest-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/scripts/release/lib/update-manifest-package.js -------------------------------------------------------------------------------- /scripts/release/lib/update-manifest-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/scripts/release/lib/update-manifest-plugin.js -------------------------------------------------------------------------------- /scripts/release/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/scripts/release/tag.js -------------------------------------------------------------------------------- /scripts/sample-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/scripts/sample-data/README.md -------------------------------------------------------------------------------- /scripts/sample-data/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/scripts/sample-data/cli.js -------------------------------------------------------------------------------- /scripts/sample-data/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/scripts/sample-data/lib/index.js -------------------------------------------------------------------------------- /scripts/test-packages/install-plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/scripts/test-packages/install-plugins.sh -------------------------------------------------------------------------------- /scripts/test-packages/osd-test-packages.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/scripts/test-packages/osd-test-packages.Dockerfile -------------------------------------------------------------------------------- /scripts/vulnerabilities-events-injector/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/scripts/vulnerabilities-events-injector/readme.md -------------------------------------------------------------------------------- /scripts/vulnerabilities-events-injector/requirements.txt: -------------------------------------------------------------------------------- 1 | opensearch_py==2.4.2 2 | -------------------------------------------------------------------------------- /scripts/wazuh-alerts-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/scripts/wazuh-alerts-generator/README.md -------------------------------------------------------------------------------- /scripts/wazuh-alerts-generator/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/scripts/wazuh-alerts-generator/cli.js -------------------------------------------------------------------------------- /scripts/wazuh-alerts-generator/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/scripts/wazuh-alerts-generator/lib/index.js -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/tools/.gitignore -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/repository_bumper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/tools/repository_bumper.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-dashboard-plugins/HEAD/tsconfig.json --------------------------------------------------------------------------------