├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .dockerignore ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── docker.yml │ ├── osv-scanner.yml │ └── tests.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── conf ├── common │ └── docker │ │ └── scepserver │ │ ├── Dockerfile │ │ ├── docker-entrypoint.py │ │ └── openssl.conf ├── mdm │ ├── docker │ │ └── nginx │ │ │ └── conf.d │ │ │ ├── default.conf │ │ │ ├── zentral-clicertauth.conf │ │ │ └── zentral.conf │ └── zentral │ │ └── base.json ├── puppet │ └── zentral │ │ └── base.json └── start │ ├── docker │ ├── nginx │ │ └── conf.d │ │ │ └── zentral.conf │ ├── postgres.env │ ├── prometheus │ │ ├── Dockerfile │ │ └── prometheus.yml │ └── tls │ │ ├── .gitignore │ │ ├── README.md │ │ ├── default_server.crt │ │ ├── default_server.key │ │ ├── zentral.crt │ │ ├── zentral.key │ │ ├── zentral_ca.crt │ │ ├── zentral_dhparam.pem │ │ ├── zentral_fullchain.crt │ │ └── zentral_pkcs8.key │ └── zentral │ ├── base.json │ └── probes │ ├── dropbox_notify.yml │ ├── group_change.yml │ ├── little_snitch-kext_detect.yml │ ├── munki_install.yml │ ├── osx-attacks.json │ └── usb.yml ├── constraints.txt ├── docker-compose.common.yml ├── docker-compose.mdm.yml ├── docker-compose.puppet.yml ├── docker-compose.syslog.yml ├── docker-compose.yml ├── docker-entrypoint.py ├── docs ├── apps │ ├── core.md │ ├── inventory.md │ ├── mdm.md │ ├── monolith.md │ ├── munki.md │ ├── osquery.md │ ├── santa.md │ └── wsone.md ├── architecture │ └── index.md ├── configuration │ ├── api.md │ ├── django.md │ ├── entra_id_saml.md │ ├── google_saml.md │ ├── index.md │ ├── notifier.md │ ├── okta_saml.md │ ├── okta_scim.md │ ├── onelogin_saml.md │ ├── password_reset_handler.md │ ├── secret_engines.md │ ├── sso.md │ ├── stores.md │ └── users.md ├── deployment │ ├── docker-compose.md │ └── index.md ├── development │ ├── ee-split.md │ ├── index.md │ └── secure-coding.md ├── images │ ├── apps │ │ └── inventory │ │ │ └── architecture.svg │ ├── architecture │ │ ├── key_components.svg │ │ └── modules.svg │ ├── deployment │ │ └── zaio-gcp │ │ │ └── open_ssh_in_browser_window.png │ └── logo_640_160.svg ├── index.md ├── requirements.txt └── theme │ └── zentral.css ├── ee ├── server │ └── realms │ │ ├── backends │ │ ├── openidc │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── lib.py │ │ │ ├── public_urls.py │ │ │ ├── public_views.py │ │ │ └── serializers.py │ │ └── saml │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── public_urls.py │ │ │ ├── public_views.py │ │ │ └── serializers.py │ │ ├── scim.py │ │ └── scim_views.py └── zentral │ ├── contrib │ ├── intune │ │ ├── __init__.py │ │ ├── api_client.py │ │ ├── api_urls.py │ │ ├── api_views.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ └── intune_sync.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── serializers.py │ │ ├── tasks.py │ │ ├── templates │ │ │ └── intune │ │ │ │ ├── index.html │ │ │ │ ├── tenant_confirm_delete.html │ │ │ │ ├── tenant_detail.html │ │ │ │ ├── tenant_form.html │ │ │ │ └── tenant_list.html │ │ ├── urls.py │ │ └── views.py │ └── wsone │ │ ├── __init__.py │ │ ├── api_client.py │ │ ├── api_urls.py │ │ ├── api_views.py │ │ ├── apps.py │ │ ├── events │ │ └── __init__.py │ │ ├── forms.py │ │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── wsone_sync.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── preprocessors │ │ ├── __init__.py │ │ └── webhook.py │ │ ├── serializers.py │ │ ├── tasks.py │ │ ├── templates │ │ └── wsone │ │ │ ├── index.html │ │ │ ├── instance_confirm_delete.html │ │ │ ├── instance_detail.html │ │ │ ├── instance_events.html │ │ │ ├── instance_form.html │ │ │ └── instance_list.html │ │ ├── urls.py │ │ └── views.py │ └── core │ └── stores │ └── backends │ ├── datadog.py │ ├── panther │ ├── __init__.py │ └── schema.yml │ ├── snowflake.py │ ├── splunk.py │ └── sumo_logic.py ├── mkdocs.yml ├── package.json ├── requirements.txt ├── requirements_aws.txt ├── requirements_dev.txt ├── requirements_gcp.txt ├── server ├── accounts │ ├── __init__.py │ ├── api_authentication.py │ ├── apps.py │ ├── auth_backends.py │ ├── events │ │ ├── __init__.py │ │ └── templates │ │ │ ├── zentral_login_body.txt │ │ │ └── zentral_logout_body.txt │ ├── forms.py │ ├── management │ │ └── commands │ │ │ ├── create_zentral_user.py │ │ │ ├── delete_zentral_user.py │ │ │ ├── list_permissions.py │ │ │ └── list_users.py │ ├── middleware.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20161220_1107.py │ │ ├── 0003_auto_20161220_1110.py │ │ ├── 0004_auto_20161220_1113.py │ │ ├── 0005_auto_20170927_1140.py │ │ ├── 0006_auto_20170927_1144.py │ │ ├── 0007_usertotp.py │ │ ├── 0008_auto_20171001_1006.py │ │ ├── 0009_auto_20171005_1007.py │ │ ├── 0010_usertotp_updated_at.py │ │ ├── 0011_auto_20190227_1132.py │ │ ├── 0012_user_is_service_account.py │ │ ├── 0013_auto_20210128_2317.py │ │ ├── 0014_auto_20220126_0738.py │ │ ├── 0015_alter_user_first_name.py │ │ ├── 0016_apitoken.py │ │ ├── 0017_user_description.py │ │ ├── 0018_user_items_per_page.py │ │ ├── 0019_provisionedrole.py │ │ ├── 0020_usertask.py │ │ └── __init__.py │ ├── models.py │ ├── password_reset.py │ ├── password_validation.py │ ├── provisioning.py │ ├── serializers.py │ ├── urls.py │ ├── utils.py │ └── views │ │ ├── __init__.py │ │ ├── auth.py │ │ ├── groups.py │ │ ├── tasks.py │ │ ├── user.py │ │ └── users.py ├── base │ ├── __init__.py │ ├── api_urls.py │ ├── api_views.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── build_custom_error_pages.py │ │ │ ├── dump_views.py │ │ │ ├── provision.py │ │ │ ├── rewrap_secrets.py │ │ │ ├── runworker.py │ │ │ └── runworkers.py │ ├── metrics_urls.py │ ├── metrics_views.py │ ├── middlewares.py │ ├── notifier.py │ ├── templatetags │ │ ├── __init__.py │ │ ├── base_extras.py │ │ ├── task_extras.py │ │ └── ui_extras.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── manage.py ├── realms │ ├── api_urls.py │ ├── api_views.py │ ├── apps.py │ ├── auth_backends.py │ ├── backends │ │ ├── base.py │ │ ├── ldap │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── public_urls.py │ │ │ ├── public_views.py │ │ │ └── serializers.py │ │ ├── registry.py │ │ └── views.py │ ├── exceptions.py │ ├── forms.py │ ├── metrics_urls.py │ ├── metrics_views.py │ ├── middlewares.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_realmauthenticationsession_backend_state.py │ │ ├── 0003_auto_20200305_2104.py │ │ ├── 0004_auto_20201102_0709.py │ │ ├── 0005_realm_login_session_expiry.py │ │ ├── 0006_realmgroupmapping.py │ │ ├── 0007_auto_20220329_0639.py │ │ ├── 0008_realmgroupmapping_separator.py │ │ ├── 0009_realm_custom_attr_1_claim_realm_custom_attr_2_claim_and_more.py │ │ ├── 0010_realmgroup_alter_realmuser_unique_together_and_more.py │ │ ├── 0011_realm_user_portal_alter_realm_enabled_for_login.py │ │ ├── 0012_realmgroupmapping_realm_group_realmgroupgroup.py │ │ ├── 0013_alter_realmgroupmapping_realm_group.py │ │ ├── 0014_delete_realmtagmapping.py │ │ ├── 0015_realmgroup_scim_managed.py │ │ └── __init__.py │ ├── models.py │ ├── public_urls.py │ ├── public_views.py │ ├── serializers.py │ ├── templates │ │ ├── realms │ │ │ ├── _realm_group_mappings.html │ │ │ ├── _role_mappings.html │ │ │ ├── index.html │ │ │ ├── ldap_login_form.html │ │ │ ├── ras_finalization_error.html │ │ │ ├── realm_detail.html │ │ │ ├── realm_form.html │ │ │ ├── realm_list.html │ │ │ ├── realmauthenticationsession_detail.html │ │ │ ├── realmgroup_confirm_delete.html │ │ │ ├── realmgroup_detail.html │ │ │ ├── realmgroup_form.html │ │ │ ├── realmgroup_list.html │ │ │ ├── realmgroupmapping_confirm_delete.html │ │ │ ├── realmgroupmapping_form.html │ │ │ ├── realmgroupmapping_list.html │ │ │ ├── realmuser_add_to_group.html │ │ │ ├── realmuser_detail.html │ │ │ ├── realmuser_list.html │ │ │ ├── realmuser_remove_from_group.html │ │ │ ├── rolemapping_confirm_delete.html │ │ │ ├── rolemapping_form.html │ │ │ └── rolemapping_list.html │ │ └── user_portal │ │ │ ├── base.html │ │ │ ├── boilerplate.html │ │ │ ├── index.html │ │ │ └── logout.html │ ├── up_views.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── server │ ├── __init__.py │ ├── celery.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── static │ ├── favicon.ico │ ├── jquery │ │ └── jquery.min.js │ └── qrious │ │ └── qrious.4.0.2.min.js ├── static_src │ ├── images │ │ ├── logo-dark.svg │ │ └── logo-light.svg │ ├── js │ │ ├── main.js │ │ ├── theme.js │ │ └── user_portal.js │ └── scss │ │ ├── pygments.scss │ │ ├── styles.scss │ │ └── user_portal.scss └── templates │ ├── 400.html │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── _button.html │ ├── _created_updated_at.html │ ├── _empty_results.html │ ├── _modules_menu.html │ ├── _no_entities.html │ ├── _pagination.html │ ├── accounts │ ├── add_totp.html │ ├── api_token_confirm_delete.html │ ├── delete_user.html │ ├── delete_verification_device.html │ ├── group_confirm_delete.html │ ├── group_detail.html │ ├── group_form.html │ ├── group_list.html │ ├── profile.html │ ├── profile_form.html │ ├── register_webauthn_device.html │ ├── task_detail.html │ ├── task_list.html │ ├── tasks │ │ ├── _result.html │ │ ├── _status.html │ │ ├── _time.html │ │ └── _user.html │ ├── user_api_token.html │ ├── user_detail.html │ ├── user_form.html │ ├── user_list.html │ ├── user_verification_devices.html │ ├── verify_totp.html │ └── verify_webauthn.html │ ├── base.html │ ├── base │ └── index.html │ ├── base_error.html │ ├── core │ └── stores │ │ ├── events_events.html │ │ ├── events_form.html │ │ ├── events_script.html │ │ └── events_table.html │ ├── custom_error_page.html │ ├── forms │ └── django │ │ └── forms │ │ ├── attrs.html │ │ ├── default.html │ │ ├── div.html │ │ ├── errors │ │ ├── dict │ │ │ ├── default.html │ │ │ ├── text.txt │ │ │ └── ul.html │ │ └── list │ │ │ ├── default.html │ │ │ ├── text.txt │ │ │ └── ul.html │ │ ├── formsets │ │ ├── default.html │ │ ├── div.html │ │ ├── p.html │ │ ├── table.html │ │ └── ul.html │ │ ├── label.html │ │ ├── search.html │ │ └── widgets │ │ ├── attrs.html │ │ ├── checkbox.html │ │ ├── checkbox_option.html │ │ ├── checkbox_select.html │ │ ├── clearable_file_input.html │ │ ├── date.html │ │ ├── datetime.html │ │ ├── email.html │ │ ├── file.html │ │ ├── hidden.html │ │ ├── input.html │ │ ├── input_option.html │ │ ├── multiple_hidden.html │ │ ├── multiple_input.html │ │ ├── multiwidget.html │ │ ├── number.html │ │ ├── password.html │ │ ├── radio.html │ │ ├── radio_option.html │ │ ├── select.html │ │ ├── select_date.html │ │ ├── select_option.html │ │ ├── splitdatetime.html │ │ ├── splithiddendatetime.html │ │ ├── text.html │ │ ├── textarea.html │ │ ├── time.html │ │ └── url.html │ ├── registration │ ├── invitation_email.html │ ├── invitation_subject.txt │ ├── logged_out.html │ ├── login.html │ ├── password_change_done.html │ ├── password_change_form.html │ ├── password_reset_complete.html │ ├── password_reset_confirm.html │ ├── password_reset_done.html │ ├── password_reset_email.html │ ├── password_reset_form.html │ └── password_reset_subject.txt │ ├── robots.txt │ ├── toggle_theme.html │ └── user_menu.html ├── tests ├── conf │ ├── __init__.py │ ├── base.json │ └── test_config.py ├── core_compliance_checks │ ├── test_metrics_views.py │ ├── test_models.py │ └── test_views.py ├── core_events │ ├── __init__.py │ ├── test_base.py │ ├── test_filter.py │ ├── test_from_request.py │ ├── test_probes.py │ ├── test_serialization.py │ └── utils.py ├── core_incidents │ ├── __init__.py │ ├── test_incidents_extras.py │ ├── test_metrics_views.py │ ├── test_utils.py │ └── test_views.py ├── core_probes │ ├── __init__.py │ ├── test_api_action_views.py │ ├── test_api_probe_views.py │ ├── test_http_post_action.py │ ├── test_models.py │ ├── test_probe.py │ ├── test_probe_views.py │ ├── test_probes_conf.py │ ├── test_slack_incoming_webhook_action.py │ └── utils.py ├── core_queues │ ├── __init__.py │ ├── test_aws_sns_sqs.py │ └── test_workers.py ├── core_secret_engines │ ├── __init__.py │ ├── test_aws_kms.py │ ├── test_cleartext.py │ ├── test_conf.py │ ├── test_fernet.py │ └── test_gcp_kms.py ├── core_stores │ ├── __init__.py │ ├── test_api_store_views.py │ ├── test_base.py │ ├── test_clickhouse.py │ ├── test_conf.py │ ├── test_datadog.py │ ├── test_elasticsearch.py │ ├── test_http.py │ ├── test_kinesis.py │ ├── test_opensearch.py │ ├── test_panther.py │ ├── test_snowflake.py │ ├── test_splunk.py │ ├── test_store_serializers.py │ ├── test_store_views.py │ ├── test_sumo_logic.py │ └── utils.py ├── core_terraform │ ├── __init__.py │ ├── test_api_backend_views.py │ ├── test_models.py │ ├── test_views.py │ └── utils.py ├── google_workspace │ ├── __init__.py │ ├── test_api_client.py │ ├── test_api_views.py │ ├── test_connections_models.py │ ├── test_connections_views.py │ ├── test_tasks.py │ └── test_utils.py ├── intune │ ├── __init__.py │ ├── test_api_views.py │ └── test_setup_views.py ├── inventory │ ├── __init__.py │ ├── test_api.py │ ├── test_apps_views.py │ ├── test_archive_machine_view.py │ ├── test_clean_ip_address.py │ ├── test_compliance_checks.py │ ├── test_compliance_checks_api.py │ ├── test_compliance_checks_views.py │ ├── test_exports.py │ ├── test_incidents_views.py │ ├── test_inventory_clients.py │ ├── test_inventory_extras.py │ ├── test_inventory_views_login_redirect.py │ ├── test_mac_secure_enclave_from_model.py │ ├── test_machine_actions_views.py │ ├── test_machine_apps_profiles_views.py │ ├── test_machine_events_views.py │ ├── test_machine_snapshot.py │ ├── test_machine_tags_views.py │ ├── test_macos_build_parser.py │ ├── test_management_commands.py │ ├── test_metrics_views.py │ ├── test_models.py │ ├── test_ms_query.py │ ├── test_preprocessors.py │ ├── test_search_views.py │ ├── test_setup_views.py │ ├── test_tag_views.py │ ├── test_tasks.py │ ├── test_update_machine_tags.py │ ├── test_utils_db.py │ ├── test_utils_tags.py │ ├── test_watchman_inventory_client.py │ ├── test_windows_build_parser.py │ └── utils.py ├── jamf │ ├── __init__.py │ ├── data.py │ ├── test_api_client.py │ ├── test_api_views.py │ ├── test_jamf_events.py │ ├── test_jamf_models.py │ ├── test_jamf_setup_views.py │ └── test_jamf_webhook_event_cleanup.py ├── mdm │ ├── __init__.py │ ├── test_account_configuration_command.py │ ├── test_api_acme_issuers_views.py │ ├── test_api_apps_books_views.py │ ├── test_api_artifacts_views.py │ ├── test_api_blueprint_artifacts_views.py │ ├── test_api_blueprints_views.py │ ├── test_api_cert_assets_views.py │ ├── test_api_commands_views.py │ ├── test_api_data_assets_views.py │ ├── test_api_declarations_views.py │ ├── test_api_dep_views.py │ ├── test_api_enrolled_devices_views.py │ ├── test_api_enterprise_apps_views.py │ ├── test_api_filevault_configs_views.py │ ├── test_api_ota_enrollments_views.py │ ├── test_api_profiles_views.py │ ├── test_api_push_certificates_views.py │ ├── test_api_recovery_password_configs_views.py │ ├── test_api_scep_issuers_views.py │ ├── test_api_software_update_enforcements_views.py │ ├── test_api_software_updates_views.py │ ├── test_api_store_apps_views.py │ ├── test_apns.py │ ├── test_apps_books_assets_assignments_sync.py │ ├── test_apps_books_client.py │ ├── test_apps_books_notification_preprocessor.py │ ├── test_artifacts.py │ ├── test_cert_issuer_backends.py │ ├── test_certificate_list_command.py │ ├── test_commands_base.py │ ├── test_commands_scheduling.py │ ├── test_crypto.py │ ├── test_custom_command.py │ ├── test_declarations_linkers.py │ ├── test_declarations_utils.py │ ├── test_declarative_management_command.py │ ├── test_dep.py │ ├── test_dep_enrollment.py │ ├── test_dep_enrollment_public_views.py │ ├── test_device_configured_command.py │ ├── test_device_information_command.py │ ├── test_device_lock_command.py │ ├── test_erase_device_command.py │ ├── test_install_application_command.py │ ├── test_install_enterprise_application_command.py │ ├── test_install_profile_command.py │ ├── test_installed_application_list_command.py │ ├── test_inventory.py │ ├── test_managed_application_list_command.py │ ├── test_management_artifact.py │ ├── test_management_artifact_version.py │ ├── test_management_asset.py │ ├── test_management_blueprint.py │ ├── test_management_blueprint_artifact.py │ ├── test_management_cert_asset.py │ ├── test_management_commands.py │ ├── test_management_data_asset.py │ ├── test_management_declaration.py │ ├── test_management_dep_device.py │ ├── test_management_enrolled_device.py │ ├── test_management_enrolled_user.py │ ├── test_management_enterprise_app.py │ ├── test_management_filevault_config.py │ ├── test_management_profile.py │ ├── test_management_realm_group_tag_mapping.py │ ├── test_management_recovery_password_config.py │ ├── test_management_software_update_enforcement.py │ ├── test_mdm_views.py │ ├── test_metrics_views.py │ ├── test_models.py │ ├── test_ota_enrollment.py │ ├── test_ota_enrollment_public_views.py │ ├── test_payloads.py │ ├── test_profile_list_command.py │ ├── test_push_certificates_provisioning.py │ ├── test_reenroll_command.py │ ├── test_remove_application_command.py │ ├── test_remove_profile_command.py │ ├── test_restart_device_command.py │ ├── test_rotate_filevault_key_command.py │ ├── test_scep_issuers_provisioning.py │ ├── test_security_info_command.py │ ├── test_send_device_notification.py │ ├── test_serializers.py │ ├── test_set_auto_admin_password_command.py │ ├── test_set_firmware_password_command.py │ ├── test_set_recovery_lock_command.py │ ├── test_setup_dep_enrollment.py │ ├── test_setup_dep_enrollment_custom_view.py │ ├── test_setup_dep_virtual_server.py │ ├── test_setup_enrollment_custom_view.py │ ├── test_setup_filevault_command.py │ ├── test_setup_index.py │ ├── test_setup_location.py │ ├── test_setup_ota_enrollment.py │ ├── test_setup_push_certificate.py │ ├── test_setup_scep_issuer.py │ ├── test_setup_user_enrollment.py │ ├── test_software_updates.py │ ├── test_tasks.py │ ├── test_terraform.py │ ├── test_user_enrollment.py │ ├── test_user_enrollment_public_views.py │ ├── test_utils.py │ ├── test_workers.py │ ├── testdata │ │ ├── certificate_list.plist │ │ ├── device_information.plist │ │ ├── installed_application_list.plist │ │ ├── managed_application_list.plist │ │ ├── ota_playload_phase_2 │ │ ├── profile_list.plist │ │ ├── security_info.plist │ │ ├── security_info_ios.plist │ │ ├── server_token_asset_count_notification.json │ │ ├── server_token_associate_success_notification.json │ │ ├── server_token_client_config_response.json │ │ ├── server_token_disassociate_success_notification.json │ │ ├── server_token_test_notification.json │ │ ├── software_lookup_service_response.json │ │ ├── status_report.json │ │ └── test.mobileconfig │ └── utils.py ├── monolith │ ├── __init__.py │ ├── test_api_views.py │ ├── test_models.py │ ├── test_monolith_enrollment_package_api_views.py │ ├── test_munki_api_views.py │ ├── test_provision_cmd.py │ ├── test_repositories.py │ ├── test_repository_provisioning.py │ ├── test_setup_views.py │ ├── test_sync_monolith_repositories_cmd.py │ ├── test_terraform.py │ └── utils.py ├── munki │ ├── __init__.py │ ├── test_api_views.py │ ├── test_compliance_checks.py │ ├── test_machine_actions_views.py │ ├── test_managed_installs.py │ ├── test_metrics_views.py │ ├── test_pre_post_flight_api_views.py │ ├── test_script_check_views.py │ ├── test_setup_views.py │ ├── test_terraform.py │ ├── test_tree_certificates.py │ └── utils.py ├── osquery │ ├── __init__.py │ ├── osquery_load.py │ ├── test_api_views.py │ ├── test_compliance_checks.py │ ├── test_compliance_checks_inventory_views.py │ ├── test_events.py │ ├── test_osquery_api.py │ ├── test_setup_atcs.py │ ├── test_setup_configurations.py │ ├── test_setup_distributed_queries.py │ ├── test_setup_enrollments.py │ ├── test_setup_file_categories.py │ ├── test_setup_overview.py │ ├── test_setup_packs.py │ ├── test_setup_queries.py │ ├── test_terraform.py │ └── utils.py ├── puppet │ ├── __init__.py │ ├── test_events.py │ ├── test_post_report_view.py │ ├── test_report_event_preprocessor.py │ ├── test_setup_views.py │ └── utils.py ├── santa │ ├── __init__.py │ ├── fixtures │ │ └── santa_event_allow_unknown_payload.json │ ├── simulate_client.py │ ├── test_api_views.py │ ├── test_ballot_box.py │ ├── test_ballots_views.py │ ├── test_configuration.py │ ├── test_incidents.py │ ├── test_metrics_views.py │ ├── test_models.py │ ├── test_rule_engine.py │ ├── test_santa_api_views.py │ ├── test_santa_events.py │ ├── test_santa_log_parsing.py │ ├── test_serializers.py │ ├── test_setup_views.py │ ├── test_targets_views.py │ ├── test_tasks.py │ ├── test_terraform.py │ ├── test_up_views.py │ └── utils.py ├── server_accounts │ ├── __init__.py │ ├── test_create_zentral_user_cmd.py │ ├── test_delete_zentral_user_cmd.py │ ├── test_groups_views.py │ ├── test_list_permissions_management_command.py │ ├── test_list_users_management_command.py │ ├── test_nginx_auth_request_view.py │ ├── test_password_reset.py │ ├── test_role_provisioning.py │ ├── test_tasks_views.py │ ├── test_users_models.py │ ├── test_users_views.py │ └── utils.py ├── server_base │ ├── __init__.py │ ├── test_api_views.py │ ├── test_apps.py │ ├── test_celery.py │ ├── test_index.py │ ├── test_management_command_build_custom_error_pages.py │ ├── test_management_command_dump_views.py │ ├── test_management_command_provision.py │ ├── test_management_command_runworker.py │ ├── test_management_command_runworkers.py │ ├── test_metrics_views.py │ ├── test_utils.py │ └── utils.py ├── server_realms │ ├── __init__.py │ ├── test_api_views.py │ ├── test_auth_backend.py │ ├── test_metrics_views.py │ ├── test_realm_backends.py │ ├── test_realm_models.py │ ├── test_realm_scim_views.py │ ├── test_realm_utils.py │ ├── test_realm_views.py │ ├── test_up_views.py │ └── utils.py ├── tools │ └── diff_coverage.py ├── utils │ ├── __init__.py │ ├── http_server.py │ ├── packages.py │ ├── test_certificates.py │ ├── test_db.py │ ├── test_dict_diff.py │ ├── test_json.py │ ├── test_leaky_bucket.py │ ├── test_logging.py │ ├── test_os_version.py │ ├── test_passwords.py │ ├── test_prometheus_metrics_exporter.py │ ├── test_storage.py │ ├── test_terraform.py │ ├── test_text.py │ ├── test_time.py │ └── test_views.py └── wsone │ ├── __init__.py │ ├── test_api_views.py │ ├── test_setup_views.py │ ├── test_webhook_preprocessor.py │ └── test_webhook_view.py ├── tox.ini ├── webpack.config.js └── zentral ├── conf ├── __init__.py ├── buckets.py ├── config.py ├── context_processors.py ├── params.py └── secrets.py ├── contrib ├── google_workspace │ ├── __init__.py │ ├── api_client.py │ ├── api_urls.py │ ├── api_views.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tasks.py │ ├── templates │ │ └── google_workspace │ │ │ ├── connection_confirm_delete.html │ │ │ ├── connection_detail.html │ │ │ ├── connection_form.html │ │ │ ├── connection_list.html │ │ │ ├── grouptagmapping_confirm_delete.html │ │ │ ├── grouptagmapping_form.html │ │ │ └── index.html │ ├── urls.py │ ├── utils.py │ └── views.py ├── inventory │ ├── __init__.py │ ├── api_urls.py │ ├── api_views.py │ ├── apps.py │ ├── clients │ │ ├── __init__.py │ │ ├── base.py │ │ ├── dummy.py │ │ ├── filewave.py │ │ ├── sal.py │ │ └── watchman.py │ ├── compliance_checks.py │ ├── conf.py │ ├── events │ │ └── __init__.py │ ├── exceptions.py │ ├── forms.py │ ├── machine_actions.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── cleanup_inventory_history.py │ │ │ ├── debug_inventory_clients.py │ │ │ ├── export_full_inventory.py │ │ │ └── import_mac_assignments.py │ ├── metrics_urls.py │ ├── metrics_views.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_tags.py │ │ ├── 0003_auto_20160504_1939.py │ │ ├── 0004_auto_20160505_0639.py │ │ ├── 0005_auto_20160602_1239.py │ │ ├── 0006_auto_20160621_1245.py │ │ ├── 0007_make_tag_slugs.py │ │ ├── 0008_auto_20160621_1253.py │ │ ├── 0009_machinesnapshot_archived_at.py │ │ ├── 0010_auto_20161019_1115.py │ │ ├── 0011_machinesnapshot_public_ip_address.py │ │ ├── 0012_auto_20161019_1405.py │ │ ├── 0013_auto_20161026_1328.py │ │ ├── 0014_auto_20161202_1641.py │ │ ├── 0015_auto_20161212_1358.py │ │ ├── 0016_auto_20161212_1457.py │ │ ├── 0017_auto_20161212_2356.py │ │ ├── 0018_auto_20161213_1404.py │ │ ├── 0019_auto_20161213_2209.py │ │ ├── 0020_machinesnapshotcommit_last_seen.py │ │ ├── 0021_auto_20170529_1839.py │ │ ├── 0022_auto_20170530_0724.py │ │ ├── 0023_puppetdb.py │ │ ├── 0024_auto_20170608_1810.py │ │ ├── 0025_machinesnapshotcommit_system_uptime.py │ │ ├── 0026_auto_20171001_1047.py │ │ ├── 0027_enrollmentsecret_enrollmentsecretrequest.py │ │ ├── 0028_auto_20171015_1949.py │ │ ├── 0029_auto_20171016_1602.py │ │ ├── 0030_enrollmentsecret_request_count.py │ │ ├── 0031_auto_20171025_2052.py │ │ ├── 0032_auto_20171107_2157.py │ │ ├── 0033_auto_20171108_1749.py │ │ ├── 0034_auto_20171120_1755.py │ │ ├── 0035_auto_20180211_1908.py │ │ ├── 0036_auto_20180213_1049.py │ │ ├── 0037_auto_20180213_1407.py │ │ ├── 0038_auto_20180623_1214.py │ │ ├── 0039_auto_20180704_1049.py │ │ ├── 0040_auto_20180918_1211.py │ │ ├── 0041_auto_20180927_0935.py │ │ ├── 0042_auto_20190227_1133.py │ │ ├── 0043_auto_20190227_1139.py │ │ ├── 0044_auto_20190327_2121.py │ │ ├── 0045_auto_20190426_1611.py │ │ ├── 0046_auto_20190930_1206.py │ │ ├── 0047_auto_20190930_1244.py │ │ ├── 0048_auto_20190930_1300.py │ │ ├── 0049_machine_snapshot_certificates_on_delete_cascade.py │ │ ├── 0050_auto_20201201_1731.py │ │ ├── 0051_auto_20201202_1025.py │ │ ├── 0052_auto_20210122_1239.py │ │ ├── 0053_osxapp_bundle_display_name.py │ │ ├── 0054_auto_20210317_1142.py │ │ ├── 0055_auto_20210317_2125.py │ │ ├── 0056_machine_snapshot_program_instances_on_delete_cascade.py │ │ ├── 0057_auto_20210701_0601.py │ │ ├── 0058_machine_snapshot_disks_on_delete_cascade.py │ │ ├── 0059_auto_20211210_0940.py │ │ ├── 0060_auto_20211210_0940.py │ │ ├── 0061_jmespathcheck.py │ │ ├── 0062_machinesnapshot_extra_facts.py │ │ ├── 0063_currentmachinesnapshot_last_seen.py │ │ ├── 0064_auto_20220203_1107.py │ │ ├── 0065_auto_20220216_0615.py │ │ ├── 0066_jmespathcheck_platforms.py │ │ ├── 0067_auto_20220311_1417.py │ │ ├── 0068_auto_20220329_0641.py │ │ ├── 0069_auto_20220427_0527.py │ │ ├── 0070_ec2_instance_tags_on_delete_cascade.py │ │ ├── 0071_osversion_version.py │ │ ├── 0072_machinesnapshot_m2m_seq_ids.py │ │ ├── 0073_alter_metabusinessunit_name.py │ │ ├── 0074_auto_20220919_0939.py │ │ ├── 0075_currentmachinesnapshot_tree.py │ │ ├── 0076_remove_currentmachinesnapshot_tree.py │ │ ├── 0077_file_signing_id.py │ │ ├── 0078_file_cdhash.py │ │ ├── 0079_disk_encryption_status_disk_filevault_status_and_more.py │ │ └── __init__.py │ ├── models.py │ ├── preprocessors.py │ ├── serializers.py │ ├── tasks.py │ ├── templates │ │ └── inventory │ │ │ ├── _machine_heartbeats.html │ │ │ ├── _machine_tag_action_probe_config.html │ │ │ ├── android_apps.html │ │ │ ├── archive_machine.html │ │ │ ├── compliancecheck_confirm_delete.html │ │ │ ├── compliancecheck_detail.html │ │ │ ├── compliancecheck_devtool.html │ │ │ ├── compliancecheck_events.html │ │ │ ├── compliancecheck_form.html │ │ │ ├── compliancecheck_list.html │ │ │ ├── deb_packages.html │ │ │ ├── detach_bu.html │ │ │ ├── edit_mbu.html │ │ │ ├── group_list.html │ │ │ ├── ios_apps.html │ │ │ ├── machine_android_apps.html │ │ │ ├── machine_deb_packages.html │ │ │ ├── machine_detail.html │ │ │ ├── machine_events.html │ │ │ ├── machine_incidents.html │ │ │ ├── machine_ios_apps.html │ │ │ ├── machine_list.html │ │ │ ├── machine_macos_app_instances.html │ │ │ ├── machine_profiles.html │ │ │ ├── machine_program_instances.html │ │ │ ├── machine_tags.html │ │ │ ├── macos_apps.html │ │ │ ├── mbu_list.html │ │ │ ├── mbu_machines.html │ │ │ ├── mbu_tags.html │ │ │ ├── metabusinessunit_confirm_delete.html │ │ │ ├── programs.html │ │ │ ├── review_mbu_merge.html │ │ │ ├── tag_confirm_delete.html │ │ │ ├── tag_form.html │ │ │ ├── tag_index.html │ │ │ ├── taxonomy_confirm_delete.html │ │ │ └── taxonomy_form.html │ ├── templatetags │ │ ├── __init__.py │ │ └── inventory_extras.py │ ├── terraform.py │ ├── urls.py │ ├── utils │ │ ├── __init__.py │ │ ├── app_exports.py │ │ ├── cleanup.py │ │ ├── clients.py │ │ ├── db.py │ │ ├── enrollments.py │ │ ├── full_export.py │ │ ├── machine_exports.py │ │ ├── msquery.py │ │ └── tags.py │ ├── views.py │ └── workers.py ├── jamf │ ├── README.md │ ├── __init__.py │ ├── api_client.py │ ├── apps.py │ ├── events │ │ └── __init__.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_tagconfig.py │ │ ├── 0003_jamfinstance_inventory_apps_shard.py │ │ ├── 0004_auto_20211008_1059.py │ │ ├── 0005_auto_20220316_0559.py │ │ ├── 0006_jamfinstance_bearer_token_authentication.py │ │ ├── 0007_jamfinstance_inventory_extension_attributes.py │ │ ├── 0008_auto_20221012_0535.py │ │ └── __init__.py │ ├── models.py │ ├── preprocessors │ │ ├── __init__.py │ │ └── webhook.py │ ├── templates │ │ └── jamf │ │ │ ├── index.html │ │ │ ├── jamfinstance_confirm_delete.html │ │ │ ├── jamfinstance_detail.html │ │ │ ├── jamfinstance_form.html │ │ │ ├── jamfinstance_list.html │ │ │ ├── tagconfig_confirm_delete.html │ │ │ └── tagconfig_form.html │ ├── urls.py │ └── views.py ├── mdm │ ├── __init__.py │ ├── api_urls.py │ ├── api_views │ │ ├── __init__.py │ │ ├── apps_books.py │ │ ├── artifacts.py │ │ ├── blueprints.py │ │ ├── cert_issuers.py │ │ ├── commands.py │ │ ├── dep.py │ │ ├── enrolled_devices.py │ │ ├── filevault_configs.py │ │ ├── ota_enrollments.py │ │ ├── push_certificates.py │ │ ├── recovery_password_configs.py │ │ ├── software_update_enforcements.py │ │ └── software_updates.py │ ├── apns.py │ ├── app_manifest.py │ ├── apps.py │ ├── apps_books.py │ ├── artifacts.py │ ├── assets │ │ └── Apple_iPhone_Device_CA_Fullchain.pem │ ├── cert_issuer_backends │ │ ├── __init__.py │ │ ├── base.py │ │ ├── base_microsoft_ca.py │ │ ├── digicert.py │ │ ├── ident.py │ │ ├── microsoft_ca.py │ │ ├── okta_ca.py │ │ └── static_challenge.py │ ├── commands │ │ ├── __init__.py │ │ ├── account_configuration.py │ │ ├── base.py │ │ ├── certificate_list.py │ │ ├── custom.py │ │ ├── declarative_management.py │ │ ├── device_configured.py │ │ ├── device_information.py │ │ ├── device_lock.py │ │ ├── erase_device.py │ │ ├── install_application.py │ │ ├── install_enterprise_application.py │ │ ├── install_profile.py │ │ ├── installed_application_list.py │ │ ├── managed_application_list.py │ │ ├── profile_list.py │ │ ├── reenroll.py │ │ ├── remove_application.py │ │ ├── remove_profile.py │ │ ├── restart_device.py │ │ ├── rotate_filevault_key.py │ │ ├── scheduling.py │ │ ├── security_info.py │ │ ├── set_auto_admin_password.py │ │ ├── set_firmware_password.py │ │ ├── set_recovery_lock.py │ │ └── setup_filevault.py │ ├── crypto.py │ ├── declarations │ │ ├── __init__.py │ │ ├── cert_asset.py │ │ ├── data_asset.py │ │ ├── declaration.py │ │ ├── exceptions.py │ │ ├── legacy_profile.py │ │ ├── linkers.py │ │ ├── management.py │ │ ├── protocol.py │ │ ├── software_update.py │ │ ├── status_report.py │ │ └── utils.py │ ├── dep.py │ ├── dep_client.py │ ├── events │ │ ├── __init__.py │ │ ├── admin_password.py │ │ ├── apps_books.py │ │ ├── artifacts.py │ │ ├── filevault.py │ │ ├── management.py │ │ ├── mdm.py │ │ └── recovery_password.py │ ├── exceptions.py │ ├── forms.py │ ├── incidents.py │ ├── inventory.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── mdmcerts.py │ │ │ ├── send_device_notification.py │ │ │ ├── sync_apps_books.py │ │ │ ├── sync_dep_devices.py │ │ │ └── sync_software_updates.py │ ├── metrics_urls.py │ ├── metrics_views.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_enrolleddevice.py │ │ ├── 0003_auto_20171107_2206.py │ │ ├── 0004_auto_20171108_0002.py │ │ ├── 0005_auto_20171108_1151.py │ │ ├── 0006_enrolleduser.py │ │ ├── 0007_auto_20180513_1524.py │ │ ├── 0008_auto_20180513_1843.py │ │ ├── 0009_auto_20180515_0843.py │ │ ├── 0010_auto_20180515_0851.py │ │ ├── 0011_enrolleddevice_checkout_at.py │ │ ├── 0012_auto_20180515_1749.py │ │ ├── 0013_auto_20180515_1959.py │ │ ├── 0014_auto_20180515_2124.py │ │ ├── 0015_auto_20180603_2235.py │ │ ├── 0016_auto_20180612_1949.py │ │ ├── 0017_mdmenrollmentpackage.py │ │ ├── 0018_auto_20180706_1321.py │ │ ├── 0019_auto_20180828_1212.py │ │ ├── 0020_auto_20180911_2058.py │ │ ├── 0021_auto_20180916_1809.py │ │ ├── 0022_auto_20180927_0935.py │ │ ├── 0023_auto_20180927_1027.py │ │ ├── 0024_auto_20190227_1147.py │ │ ├── 0025_otaenrollment_realm.py │ │ ├── 0026_auto_20200303_2217.py │ │ ├── 0027_depprofile_realm.py │ │ ├── 0028_depenrollmentsession_realm_user.py │ │ ├── 0029_auto_20200305_1925.py │ │ ├── 0030_auto_20200305_1926.py │ │ ├── 0031_auto_20200305_1931.py │ │ ├── 0032_devicecommand_body.py │ │ ├── 0033_auto_20200305_2322.py │ │ ├── 0034_auto_20200305_2328.py │ │ ├── 0035_auto_20210530_0717.py │ │ ├── 0036_auto_20210530_0858.py │ │ ├── 0037_auto_20210601_0544.py │ │ ├── 0038_auto_20210601_1838.py │ │ ├── 0039_auto_20210603_1620.py │ │ ├── 0040_auto_20210606_1119.py │ │ ├── 0041_enterpriseapp_filename.py │ │ ├── 0042_auto_20210606_1703.py │ │ ├── 0043_enterpriseapp_bundles.py │ │ ├── 0044_enrolleddevice_declarative_management.py │ │ ├── 0045_auto_20210610_0940.py │ │ ├── 0046_auto_20210610_1523.py │ │ ├── 0047_auto_20210612_1119.py │ │ ├── 0048_auto_20220329_0649.py │ │ ├── 0049_auto_20220729_1628.py │ │ ├── 0050_auto_20220730_0847.py │ │ ├── 0051_reenrollmentsession.py │ │ ├── 0052_auto_20220908_1608.py │ │ ├── 0053_auto_20220804_1741.py │ │ ├── 0054_softwareupdate_softwareupdatedeviceid.py │ │ ├── 0055_auto_20220919_0939.py │ │ ├── 0056_auto_20230108_1128.py │ │ ├── 0057_auto_20230112_0905.py │ │ ├── 0058_auto_20230123_1750.py │ │ ├── 0059_auto_20230502_1855.py │ │ ├── 0060_auto_20230221_1518.py │ │ ├── 0061_auto_20230607_1119.py │ │ ├── 0062_enrolleddevice_blocked_at.py │ │ ├── 0063_depenrollment_ios_min_version_and_more.py │ │ ├── 0064_depdevice_asset_tag_depdevice_color_and_more.py │ │ ├── 0065_depvirtualserver_default_enrollment.py │ │ ├── 0066_filevaultconfig_alter_blueprint_options_and_more.py │ │ ├── 0067_recoverypasswordconfig_and_more.py │ │ ├── 0068_reenrollmentsession_first_enrolled_at.py │ │ ├── 0069_enrolleddevice_pending_firmware_password_and_more.py │ │ ├── 0070_enterpriseapp_package_sha256_and_more.py │ │ ├── 0071_alter_artifact_platforms_and_more.py │ │ ├── 0072_softwareupdateenforcement_platforms_and_more.py │ │ ├── 0073_alter_softwareupdate_unique_together_and_more.py │ │ ├── 0074_depenrollment_ios_max_version_and_more.py │ │ ├── 0075_pushcertificate_signed_csr_and_more.py │ │ ├── 0076_depenrollment_username_pattern_and_more.py │ │ ├── 0077_alter_scepconfig_challenge_type.py │ │ ├── 0078_depenrollment_display_name_and_more.py │ │ ├── 0079_remove_pushcertificate_signed_csr_and_more.py │ │ ├── 0080_scepconfig_provisioning_uid.py │ │ ├── 0081_pushcertificate_provisioning_uid_and_more.py │ │ ├── 0082_alter_depenrollment_enrollment_secret_and_more.py │ │ ├── 0083_realmgrouptagmapping.py │ │ ├── 0084_declaration_alter_artifact_type_dataasset_and_more.py │ │ ├── 0085_deviceartifact_install_count_and_more.py │ │ ├── 0086_alter_dataasset_file_alter_enterpriseapp_package.py │ │ ├── 0087_alter_depdevice_color_alter_depdevice_device_family_and_more.py │ │ ├── 0088_alter_depdevice_options_depdevice_disowned_at.py │ │ ├── 0089_enrollmentcustomview_depenrollmentcustomview.py │ │ ├── 0090_acmeissuer_scepissuer_and_more.py │ │ ├── 0091_alter_enrolleddevice_options_and_more.py │ │ ├── 0092_enrolleddevice_last_ip_enrolleduser_last_ip_and_more.py │ │ ├── 0093_remove_depenrollment_scep_config_and_more.py │ │ ├── 0094_alter_artifact_type_certasset.py │ │ ├── 0095_blueprint_default_location_and_more.py │ │ ├── 0096_alter_acmeissuer_backend_alter_scepissuer_backend.py │ │ ├── 0097_devicecommand_apns_device_opti_and_more.py │ │ └── __init__.py │ ├── models.py │ ├── payloads.py │ ├── preprocessors.py │ ├── provisioning.py │ ├── public_urls.py │ ├── public_views │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── base.py │ │ ├── dep.py │ │ ├── mdm.py │ │ ├── ota.py │ │ └── user.py │ ├── push_csr_signers.py │ ├── schema_data │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── declarative │ │ │ └── declarations │ │ │ │ ├── activations │ │ │ │ └── simple.yaml │ │ │ │ ├── assets │ │ │ │ ├── credential.acme.yaml │ │ │ │ ├── credential.certificate.yaml │ │ │ │ ├── credential.identity.yaml │ │ │ │ ├── credential.scep.yaml │ │ │ │ ├── credential.userpassword.yaml │ │ │ │ ├── credentials │ │ │ │ │ ├── acme.yaml │ │ │ │ │ ├── identity.yaml │ │ │ │ │ ├── scep.yaml │ │ │ │ │ └── usernameandpassword.yaml │ │ │ │ ├── data.yaml │ │ │ │ └── useridentity.yaml │ │ │ │ ├── configurations │ │ │ │ ├── account.caldav.yaml │ │ │ │ ├── account.carddav.yaml │ │ │ │ ├── account.exchange.yaml │ │ │ │ ├── account.google.yaml │ │ │ │ ├── account.ldap.yaml │ │ │ │ ├── account.mail.yaml │ │ │ │ ├── account.subscribed-calendar.yaml │ │ │ │ ├── app.managed.yaml │ │ │ │ ├── audio-accessory.settings.yaml │ │ │ │ ├── diskmanagement.settings.yaml │ │ │ │ ├── legacy.interactive.yaml │ │ │ │ ├── legacy.yaml │ │ │ │ ├── management.status-subscriptions.yaml │ │ │ │ ├── management.test.yaml │ │ │ │ ├── math.settings.yaml │ │ │ │ ├── package.yaml │ │ │ │ ├── passcode.settings.yaml │ │ │ │ ├── safari.bookmarks.yaml │ │ │ │ ├── safari.extensions.settings.yaml │ │ │ │ ├── safari.settings.yaml │ │ │ │ ├── screensharing.connection.group.yaml │ │ │ │ ├── screensharing.connection.yaml │ │ │ │ ├── screensharing.host.settings.yaml │ │ │ │ ├── security.certificate.yaml │ │ │ │ ├── security.identity.yaml │ │ │ │ ├── security.passkey.attestation.yaml │ │ │ │ ├── services.background-tasks.yaml │ │ │ │ ├── services.configuration-files.yaml │ │ │ │ ├── softwareupdate.enforcement.specific.yaml │ │ │ │ ├── softwareupdate.settings.yaml │ │ │ │ └── watch.enrollment.yaml │ │ │ │ ├── declarationbase.yaml │ │ │ │ └── management │ │ │ │ ├── organization-info.yaml │ │ │ │ ├── properties.yaml │ │ │ │ └── server-capabilities.yaml │ │ ├── other │ │ │ └── skipkeys.yaml │ │ ├── reference.txt │ │ └── update.sh │ ├── serializers.py │ ├── skip_keys.py │ ├── software_updates.py │ ├── tasks.py │ ├── templates │ │ └── mdm │ │ │ ├── _cert_asset_detail.html │ │ │ ├── _data_asset_detail.html │ │ │ ├── _declaration_detail.html │ │ │ ├── _enrollment_session_info_list.html │ │ │ ├── _enterprise_app_detail.html │ │ │ ├── _inventory_machine_subview.html │ │ │ ├── _profile_detail.html │ │ │ ├── _store_app_detail.html │ │ │ ├── acmeissuer_detail.html │ │ │ ├── acmeissuer_list.html │ │ │ ├── artifact_confirm_delete.html │ │ │ ├── artifact_detail.html │ │ │ ├── artifact_form.html │ │ │ ├── artifact_list.html │ │ │ ├── artifact_upgrade_form.html │ │ │ ├── artifactversion_confirm_delete.html │ │ │ ├── artifactversion_detail.html │ │ │ ├── artifactversion_form.html │ │ │ ├── asset_detail.html │ │ │ ├── asset_list.html │ │ │ ├── assetartifact_form.html │ │ │ ├── associatelocationasset_form.html │ │ │ ├── blueprint_confirm_delete.html │ │ │ ├── blueprint_detail.html │ │ │ ├── blueprint_form.html │ │ │ ├── blueprint_list.html │ │ │ ├── blueprintartifact_confirm_delete.html │ │ │ ├── blueprintartifact_form.html │ │ │ ├── certasset_form.html │ │ │ ├── dataasset_form.html │ │ │ ├── declaration_form.html │ │ │ ├── depdevice_detail.html │ │ │ ├── depdevice_form.html │ │ │ ├── depdevice_list.html │ │ │ ├── depenrollment_check.html │ │ │ ├── depenrollment_detail.html │ │ │ ├── depenrollment_form.html │ │ │ ├── depenrollmentcustomview_confirm_delete.html │ │ │ ├── depenrollmentcustomview_form.html │ │ │ ├── deptoken_renew.html │ │ │ ├── depvirtualserver_connect.html │ │ │ ├── depvirtualserver_detail.html │ │ │ ├── depvirtualserver_form.html │ │ │ ├── depvirtualserver_list.html │ │ │ ├── devicecommand_list.html │ │ │ ├── enrolleddevice_confirm_block.html │ │ │ ├── enrolleddevice_confirm_unblock.html │ │ │ ├── enrolleddevice_create_command.html │ │ │ ├── enrolleddevice_detail.html │ │ │ ├── enrolleddevice_form.html │ │ │ ├── enrolleddevice_list.html │ │ │ ├── enrolleduser_detail.html │ │ │ ├── enrollment_list.html │ │ │ ├── enrollmentcustomview_confirm_delete.html │ │ │ ├── enrollmentcustomview_detail.html │ │ │ ├── enrollmentcustomview_form.html │ │ │ ├── enrollmentcustomview_list.html │ │ │ ├── enterpriseapp_form.html │ │ │ ├── filevaultconfig_confirm_delete.html │ │ │ ├── filevaultconfig_detail.html │ │ │ ├── filevaultconfig_form.html │ │ │ ├── filevaultconfig_list.html │ │ │ ├── index.html │ │ │ ├── location_confirm_delete.html │ │ │ ├── location_detail.html │ │ │ ├── location_form.html │ │ │ ├── location_list.html │ │ │ ├── otaenrollment_detail.html │ │ │ ├── otaenrollment_form.html │ │ │ ├── profile_form.html │ │ │ ├── pushcertificate_confirm_delete.html │ │ │ ├── pushcertificate_detail.html │ │ │ ├── pushcertificate_form.html │ │ │ ├── pushcertificate_list.html │ │ │ ├── realmgrouptagmapping_confirm_delete.html │ │ │ ├── realmgrouptagmapping_form.html │ │ │ ├── realmgrouptagmapping_list.html │ │ │ ├── recoverypasswordconfig_confirm_delete.html │ │ │ ├── recoverypasswordconfig_detail.html │ │ │ ├── recoverypasswordconfig_form.html │ │ │ ├── recoverypasswordconfig_list.html │ │ │ ├── revoke_ota_enrollment.html │ │ │ ├── revoke_user_enrollment.html │ │ │ ├── scepissuer_detail.html │ │ │ ├── scepissuer_list.html │ │ │ ├── softwareupdateenforcement_confirm_delete.html │ │ │ ├── softwareupdateenforcement_detail.html │ │ │ ├── softwareupdateenforcement_form.html │ │ │ ├── softwareupdateenforcement_list.html │ │ │ ├── usercommand_list.html │ │ │ ├── userenrollment_detail.html │ │ │ └── userenrollment_form.html │ ├── terraform.py │ ├── urls.py │ ├── utils.py │ ├── views │ │ ├── __init__.py │ │ ├── cert_issuers.py │ │ ├── dep_enrollments.py │ │ ├── enrollment_custom_views.py │ │ ├── inventory.py │ │ ├── management.py │ │ └── setup.py │ └── workers.py ├── monolith │ ├── __init__.py │ ├── api_urls.py │ ├── api_views.py │ ├── apps.py │ ├── attachments.py │ ├── conf.py │ ├── events │ │ └── __init__.py │ ├── exceptions.py │ ├── forms.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── rebuild_manifest_enrollment_packages.py │ │ │ └── sync_monolith_repositories.py │ ├── metrics_urls.py │ ├── metrics_views.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20160223_1454.py │ │ ├── 0003_auto_20160223_1622.py │ │ ├── 0004_auto_20160223_1631.py │ │ ├── 0005_auto_20160224_0900.py │ │ ├── 0006_auto_20160224_0951.py │ │ ├── 0007_auto_20160224_1137.py │ │ ├── 0008_add_tags.py │ │ ├── 0009_auto_20160505_2240.py │ │ ├── 0010_auto_20160505_2242.py │ │ ├── 0011_auto_20160820_1412.py │ │ ├── 0012_submanifestconfigurationprofile_pkg_info.py │ │ ├── 0013_auto_20160821_1507.py │ │ ├── 0014_submanifestconfigurationprofile_identifier.py │ │ ├── 0015_manifest_mbu_catalog.py │ │ ├── 0016_auto_20160825_2358.py │ │ ├── 0017_manifest_version.py │ │ ├── 0018_auto_20170331_0731.py │ │ ├── 0019_auto_20170331_0758.py │ │ ├── 0020_auto_20170409_1014.py │ │ ├── 0021_auto_20170409_1145.py │ │ ├── 0022_auto_20170410_1431.py │ │ ├── 0023_auto_20170529_1750.py │ │ ├── 0024_auto_20170818_1222.py │ │ ├── 0025_auto_20170919_0932.py │ │ ├── 0026_auto_20170919_1005.py │ │ ├── 0027_auto_20170919_1007.py │ │ ├── 0028_auto_20170919_1416.py │ │ ├── 0029_auto_20170919_1521.py │ │ ├── 0030_printer_trashed_at.py │ │ ├── 0031_auto_20170920_1509.py │ │ ├── 0032_auto_20180411_1654.py │ │ ├── 0033_auto_20180522_1743.py │ │ ├── 0034_auto_20180530_0841.py │ │ ├── 0035_auto_20180903_1053.py │ │ ├── 0036_enrollment_taxonomies.py │ │ ├── 0037_auto_20180919_1429.py │ │ ├── 0038_auto_20190227_1147.py │ │ ├── 0039_auto_20201012_0916.py │ │ ├── 0040_auto_20201012_1432.py │ │ ├── 0041_auto_20201129_1756.py │ │ ├── 0042_auto_20201129_1833.py │ │ ├── 0043_auto_20201129_1839.py │ │ ├── 0044_auto_20201130_0824.py │ │ ├── 0045_auto_20210407_0656.py │ │ ├── 0046_submanifestpkginfo_options.py │ │ ├── 0047_alter_printer_scheme.py │ │ ├── 0048_auto_20220329_0640.py │ │ ├── 0049_auto_20230119_1027.py │ │ ├── 0050_alter_manifest_name.py │ │ ├── 0051_alter_manifestcatalog_unique_together.py │ │ ├── 0052_auto_20230315_1355.py │ │ ├── 0053_delete_submanifestattachment.py │ │ ├── 0054_auto_20230317_0921.py │ │ ├── 0055_alter_catalog_options_alter_manifestcatalog_options_and_more.py │ │ ├── 0056_repository_provisioning_uid.py │ │ ├── 0057_alter_pkginfocategory_name_alter_repository_backend_and_more.py │ │ ├── 0058_alter_manifestenrollmentpackage_file_and_more.py │ │ └── __init__.py │ ├── models.py │ ├── provisioning.py │ ├── public_urls.py │ ├── public_views.py │ ├── repository_backends │ │ ├── README.md │ │ ├── __init__.py │ │ ├── azure.py │ │ ├── base.py │ │ ├── s3.py │ │ └── virtual.py │ ├── serializers.py │ ├── templates │ │ └── monolith │ │ │ ├── _inventory_machine_subview.html │ │ │ ├── catalog_confirm_delete.html │ │ │ ├── catalog_detail.html │ │ │ ├── catalog_form.html │ │ │ ├── catalog_list.html │ │ │ ├── condition_confirm_delete.html │ │ │ ├── condition_detail.html │ │ │ ├── condition_form.html │ │ │ ├── condition_list.html │ │ │ ├── configure_manifest_cache_server.html │ │ │ ├── delete_manifest_catalog.html │ │ │ ├── delete_manifest_enrollment_package.html │ │ │ ├── delete_manifest_sub_manifest.html │ │ │ ├── delete_sub_manifest_pkg_info.html │ │ │ ├── edit_sub_manifest.html │ │ │ ├── edit_sub_manifest_pkg_info.html │ │ │ ├── enrollment_form.html │ │ │ ├── index.html │ │ │ ├── machine_info.html │ │ │ ├── manifest.html │ │ │ ├── manifest_cache_server_setup.html │ │ │ ├── manifest_catalog_form.html │ │ │ ├── manifest_enrollment_package_forms.html │ │ │ ├── manifest_form.html │ │ │ ├── manifest_list.html │ │ │ ├── manifest_sub_manifest_form.html │ │ │ ├── package_form.html │ │ │ ├── pkg_info_name.html │ │ │ ├── pkg_info_name_events.html │ │ │ ├── pkginfo_confirm_delete.html │ │ │ ├── pkginfo_form.html │ │ │ ├── pkginfo_list.html │ │ │ ├── pkginfoname_confirm_delete.html │ │ │ ├── pkginfoname_form.html │ │ │ ├── repository_confirm_delete.html │ │ │ ├── repository_detail.html │ │ │ ├── repository_form.html │ │ │ ├── repository_list.html │ │ │ ├── sub_manifest.html │ │ │ ├── sub_manifest_list.html │ │ │ └── submanifest_confirm_delete.html │ ├── terraform.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── munki │ ├── __init__.py │ ├── api_urls.py │ ├── api_views.py │ ├── apps.py │ ├── compliance_checks.py │ ├── events │ │ └── __init__.py │ ├── forms.py │ ├── incidents.py │ ├── machine_actions.py │ ├── metrics_urls.py │ ├── metrics_views.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20151213_1321.py │ │ ├── 0003_auto_20151213_1521.py │ │ ├── 0004_auto_20180531_1005.py │ │ ├── 0005_auto_20190227_1132.py │ │ ├── 0006_remove_munkistate_binaryinfo_last_seen.py │ │ ├── 0007_auto_20210317_0726.py │ │ ├── 0008_auto_20211012_2023.py │ │ ├── 0009_auto_20211201_1216.py │ │ ├── 0010_configuration_collected_condition_keys.py │ │ ├── 0011_configuration_description.py │ │ ├── 0012_script_checks.py │ │ ├── 0013_scriptcheck_excluded_tags_alter_scriptcheck_tags.py │ │ ├── 0014_munkistate_force_full_sync_at.py │ │ └── __init__.py │ ├── models.py │ ├── osx_package │ │ ├── build.tmpl │ │ │ ├── base.pkg │ │ │ │ └── PackageInfo │ │ │ ├── root │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── zentral │ │ │ │ │ ├── README.txt │ │ │ │ │ └── munki │ │ │ │ │ ├── postflight │ │ │ │ │ ├── preflight │ │ │ │ │ ├── zentral_conditional_items.py │ │ │ │ │ ├── zentral_facts.py │ │ │ │ │ ├── zentral_postflight │ │ │ │ │ └── zentral_preflight │ │ │ └── scripts │ │ │ │ └── postinstall │ │ └── builder.py │ ├── public_urls.py │ ├── public_views.py │ ├── serializers.py │ ├── templates │ │ └── munki │ │ │ ├── configuration_detail.html │ │ │ ├── configuration_events.html │ │ │ ├── configuration_form.html │ │ │ ├── configuration_list.html │ │ │ ├── enrollment_confirm_delete.html │ │ │ ├── enrollment_confirm_version_bump.html │ │ │ ├── enrollment_form.html │ │ │ ├── force_machine_full_sync_confirm.html │ │ │ ├── index.html │ │ │ ├── scriptcheck_confirm_delete.html │ │ │ ├── scriptcheck_detail.html │ │ │ ├── scriptcheck_events.html │ │ │ ├── scriptcheck_form.html │ │ │ └── scriptcheck_list.html │ ├── terraform.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── osquery │ ├── __init__.py │ ├── api_urls.py │ ├── api_views.py │ ├── apps.py │ ├── compliance_checks.py │ ├── conf.py │ ├── events │ │ ├── __init__.py │ │ └── templates │ │ │ └── osquery_result_body.txt │ ├── forms.py │ ├── linux_script │ │ ├── __init__.py │ │ ├── builder.py │ │ └── template.sh │ ├── migrations │ │ ├── 0001_squashed_0008_auto_20161111_1711.py │ │ ├── 0002_auto_20170824_1346.py │ │ ├── 0003_carvesession_archive.py │ │ ├── 0004_auto_20180529_1947.py │ │ ├── 0005_auto_20190227_1132.py │ │ ├── 0006_auto_20190925_1934.py │ │ ├── 0007_auto_20210215_2159.py │ │ ├── 0008_auto_20210323_1844.py │ │ ├── 0009_auto_20210415_1531.py │ │ ├── 0010_auto_20210629_0723.py │ │ ├── 0011_query_compliance_check.py │ │ ├── 0012_auto_20220329_0642.py │ │ ├── 0013_auto_20220328_0913.py │ │ ├── 0014_configuration_inventory_ec2.py │ │ ├── 0015_auto_20220610_0814.py │ │ ├── 0016_alter_configuration_inventory_apps.py │ │ ├── 0017_auto_20230315_0849.py │ │ ├── 0018_alter_packquery_query.py │ │ ├── 0019_query_tag.py │ │ ├── 0020_alter_configuration_inventory_interval.py │ │ ├── 0021_configurationpack_excluded_tags_and_more.py │ │ └── __init__.py │ ├── models.py │ ├── osx_package │ │ ├── __init__.py │ │ ├── build.tmpl │ │ │ ├── base.pkg │ │ │ │ └── PackageInfo │ │ │ ├── root │ │ │ │ ├── Library │ │ │ │ │ └── LaunchDaemons │ │ │ │ │ │ └── pro.zentral.osqueryd.plist │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── zentral │ │ │ │ │ ├── README.txt │ │ │ │ │ └── osquery │ │ │ │ │ ├── README.txt │ │ │ │ │ └── flagfile.txt │ │ │ └── scripts │ │ │ │ ├── postinstall │ │ │ │ └── preinstall │ │ └── builder.py │ ├── packs.py │ ├── powershell_script │ │ ├── __init__.py │ │ ├── builder.py │ │ └── template.ps1 │ ├── public_urls.py │ ├── public_views.py │ ├── releases.py │ ├── serializers.py │ ├── specs │ │ ├── __init__.py │ │ ├── cli_only_flags.txt │ │ └── cli_only_flags_blocklist.txt │ ├── tags.py │ ├── tasks.py │ ├── templates │ │ └── osquery │ │ │ ├── _inventory_machine_subview.html │ │ │ ├── automatictableconstruction_confirm_delete.html │ │ │ ├── automatictableconstruction_detail.html │ │ │ ├── automatictableconstruction_form.html │ │ │ ├── automatictableconstruction_list.html │ │ │ ├── configuration_detail.html │ │ │ ├── configuration_form.html │ │ │ ├── configuration_list.html │ │ │ ├── configurationpack_confirm_delete.html │ │ │ ├── configurationpack_form.html │ │ │ ├── distributedquery_confirm_delete.html │ │ │ ├── distributedquery_detail.html │ │ │ ├── distributedquery_form.html │ │ │ ├── distributedquery_list.html │ │ │ ├── distributedquerymachine_list.html │ │ │ ├── distributedqueryresult_list.html │ │ │ ├── dq_filecarvingsession_list.html │ │ │ ├── enrollment_confirm_delete.html │ │ │ ├── enrollment_confirm_version_bump.html │ │ │ ├── enrollment_form.html │ │ │ ├── filecategory_confirm_delete.html │ │ │ ├── filecategory_detail.html │ │ │ ├── filecategory_form.html │ │ │ ├── filecategory_list.html │ │ │ ├── index.html │ │ │ ├── pack_confirm_delete.html │ │ │ ├── pack_detail.html │ │ │ ├── pack_form.html │ │ │ ├── pack_list.html │ │ │ ├── pack_upload.html │ │ │ ├── packquery_confirm_delete.html │ │ │ ├── packquery_form.html │ │ │ ├── query_confirm_delete.html │ │ │ ├── query_detail.html │ │ │ ├── query_events.html │ │ │ ├── query_form.html │ │ │ └── query_list.html │ ├── terraform.py │ ├── urls.py │ └── views │ │ ├── __init__.py │ │ ├── atcs.py │ │ ├── configurations.py │ │ ├── distributed_queries.py │ │ ├── enrollments.py │ │ ├── file_carving_sessions.py │ │ ├── file_categories.py │ │ ├── index.py │ │ ├── inventory.py │ │ ├── packs.py │ │ ├── queries.py │ │ └── utils.py ├── puppet │ ├── __init__.py │ ├── apps.py │ ├── events │ │ └── __init__.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_instance_report_heartbeat_timeout.py │ │ ├── 0003_auto_20220406_1227.py │ │ └── __init__.py │ ├── models.py │ ├── preprocessors.py │ ├── puppetdb_client.py │ ├── templates │ │ └── puppet │ │ │ ├── index.html │ │ │ ├── instance_confirm_delete.html │ │ │ ├── instance_detail.html │ │ │ ├── instance_events.html │ │ │ ├── instance_form.html │ │ │ └── instance_list.html │ ├── urls.py │ └── views.py └── santa │ ├── __init__.py │ ├── api_urls.py │ ├── api_views.py │ ├── apps.py │ ├── ballot_box.py │ ├── events │ ├── __init__.py │ └── templates │ │ └── santa_event_body.txt │ ├── forms.py │ ├── incidents.py │ ├── metrics_urls.py │ ├── metrics_views.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_collectedapplication_bundle_path.py │ ├── 0003_auto_20180214_1824.py │ ├── 0004_auto_20180423_1459.py │ ├── 0005_enrollment_santa_version.py │ ├── 0006_auto_20180522_1618.py │ ├── 0007_auto_20180603_1644.py │ ├── 0008_auto_20190227_1132.py │ ├── 0009_configuration_file_changes_prefix_filters.py │ ├── 0010_auto_20190603_1543.py │ ├── 0011_configuration_enable_bad_signature_protection.py │ ├── 0012_auto_20200817_1155.py │ ├── 0013_auto_20200817_1425.py │ ├── 0014_auto_20200817_1426.py │ ├── 0015_auto_20200817_1431.py │ ├── 0016_auto_20200818_0337.py │ ├── 0017_auto_20200818_1657.py │ ├── 0018_auto_20210114_0747.py │ ├── 0019_bundle_machinerule_rule_ruleset_target.py │ ├── 0020_auto_20210119_1649.py │ ├── 0021_delete_collectedapplication.py │ ├── 0022_auto_20210121_1745.py │ ├── 0023_auto_20210205_1305.py │ ├── 0024_auto_20210211_2104.py │ ├── 0025_auto_20210921_1517.py │ ├── 0026_configuration_allow_unknown_shard.py │ ├── 0027_auto_20220207_2112.py │ ├── 0028_configuration_enable_all_event_upload_shard.py │ ├── 0029_rule_description.py │ ├── 0030_auto_20220812_0615.py │ ├── 0031_auto_20220812_0925.py │ ├── 0032_auto_20220921_0615.py │ ├── 0033_add_signing_id.py │ ├── 0034_enrolledmachine_cdhash_rule_count_alter_target_type.py │ ├── 0035_target_blocked_count_target_collected_count_and_more.py │ ├── 0036_remove_target_blocked_count_and_more.py │ ├── 0037_configuration_banned_threshold_and_more.py │ ├── 0038_rule_is_voting_rule.py │ ├── 0039_rule_cel_expr_rule_notification_app_name_and_more.py │ └── __init__.py │ ├── models.py │ ├── public_urls.py │ ├── public_views.py │ ├── serializers.py │ ├── tasks.py │ ├── templates │ ├── santa │ │ ├── _ballot_list.html │ │ ├── _inventory_machine_subview.html │ │ ├── ballot_form.html │ │ ├── ballots.html │ │ ├── configuration_confirm_delete.html │ │ ├── configuration_detail.html │ │ ├── configuration_events.html │ │ ├── configuration_form.html │ │ ├── configuration_list.html │ │ ├── configuration_rules.html │ │ ├── enrollment_confirm_delete.html │ │ ├── enrollment_form.html │ │ ├── index.html │ │ ├── pick_rule_binary.html │ │ ├── pick_rule_cdhash.html │ │ ├── pick_rule_certificate.html │ │ ├── pick_rule_signing_id.html │ │ ├── pick_rule_team_id.html │ │ ├── rule_confirm_delete.html │ │ ├── rule_form.html │ │ ├── target_detail.html │ │ ├── target_events.html │ │ ├── targets.html │ │ ├── targetstate_reset.html │ │ ├── votinggroup_confirm_delete.html │ │ └── votinggroup_form.html │ └── user_portal │ │ ├── santa_event_detail.html │ │ └── santa_target_detail.html │ ├── terraform.py │ ├── up_urls.py │ ├── up_views.py │ ├── urls.py │ ├── utils.py │ └── views │ ├── __init__.py │ ├── ballots.py │ ├── index.py │ ├── inventory.py │ ├── setup.py │ └── targets.py ├── core ├── compliance_checks │ ├── __init__.py │ ├── apps.py │ ├── compliance_checks.py │ ├── events │ │ └── __init__.py │ ├── forms.py │ ├── metrics_urls.py │ ├── metrics_views.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tools │ │ └── mSCP │ │ │ ├── README.md │ │ │ ├── build_tf_script_checks.py │ │ │ └── requirements.txt │ ├── urls.py │ ├── utils.py │ └── views.py ├── events │ ├── __init__.py │ ├── base.py │ ├── filter.py │ ├── pipeline.py │ ├── serializers.py │ ├── template_loader.py │ └── templates │ │ ├── base_body.txt │ │ ├── default_body.txt │ │ └── default_subject.txt ├── exceptions.py ├── incidents │ ├── __init__.py │ ├── apps.py │ ├── events │ │ └── __init__.py │ ├── forms.py │ ├── incidents.py │ ├── metrics_urls.py │ ├── metrics_views.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20211201_1224.py │ │ ├── 0003_incident_name.py │ │ ├── 0004_alter_incident_key.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── incidents │ │ │ ├── incident_detail.html │ │ │ ├── incident_events.html │ │ │ ├── incident_form.html │ │ │ ├── index.html │ │ │ └── machineincident_form.html │ ├── templatetags │ │ ├── __init__.py │ │ └── incidents_extras.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── probes │ ├── __init__.py │ ├── action_backends │ │ ├── __init__.py │ │ ├── base.py │ │ ├── http.py │ │ └── slack.py │ ├── api_urls.py │ ├── api_views.py │ ├── apps.py │ ├── conf.py │ ├── forms.py │ ├── incidents.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0001_squashed_0010_auto_20161129_1733.py │ │ ├── 0002_auto_20160602_1001.py │ │ ├── 0002_auto_20161207_1313.py │ │ ├── 0003_auto_20160604_0908.py │ │ ├── 0003_auto_20161207_1654.py │ │ ├── 0004_auto_20161103_1728.py │ │ ├── 0004_auto_20161207_1739.py │ │ ├── 0005_auto_20161104_1343.py │ │ ├── 0005_auto_20161209_1608.py │ │ ├── 0006_auto_20161104_1343.py │ │ ├── 0006_auto_20161209_1625.py │ │ ├── 0007_auto_20161105_1647.py │ │ ├── 0007_probesource_feed_probe_update_available.py │ │ ├── 0008_auto_20161111_1906.py │ │ ├── 0008_auto_20161210_1453.py │ │ ├── 0009_auto_20161127_1928.py │ │ ├── 0009_auto_20161212_1358.py │ │ ├── 0010_auto_20161129_1733.py │ │ ├── 0010_auto_20190925_0255.py │ │ ├── 0011_auto_20190925_0918.py │ │ ├── 0012_auto_20220329_0643.py │ │ ├── 0013_remove_feed_url.py │ │ ├── 0014_action_probesource_actions.py │ │ ├── 0015_alter_feedprobe_unique_together_and_more.py │ │ └── __init__.py │ ├── models.py │ ├── probe.py │ ├── serializers.py │ ├── sync.py │ ├── templates │ │ └── probes │ │ │ ├── clone.html │ │ │ ├── delete.html │ │ │ ├── delete_filter.html │ │ │ ├── filter_form.html │ │ │ ├── form.html │ │ │ ├── index.html │ │ │ ├── payload_filter_form.html │ │ │ ├── probe.html │ │ │ ├── probe_events.html │ │ │ └── syntax_error.html │ ├── templatetags │ │ └── probe_extras.py │ ├── urls.py │ └── views.py ├── queues │ ├── __init__.py │ ├── backends │ │ ├── __init__.py │ │ ├── aws_sns_sqs │ │ │ ├── __init__.py │ │ │ ├── consumer.py │ │ │ ├── sns.py │ │ │ └── sqs.py │ │ ├── base.py │ │ ├── google_pubsub │ │ │ ├── __init__.py │ │ │ └── consumer.py │ │ └── kombu.py │ ├── exceptions.py │ └── workers.py ├── secret_engines │ ├── __init__.py │ └── backends │ │ ├── __init__.py │ │ ├── aws_kms.py │ │ ├── base.py │ │ ├── cleartext.py │ │ ├── fernet.py │ │ └── gcp_kms.py ├── stores │ ├── api_urls.py │ ├── api_views.py │ ├── apps.py │ ├── backends │ │ ├── all.py │ │ ├── base.py │ │ ├── clickhouse.py │ │ ├── elasticsearch.py │ │ ├── es_os_base.py │ │ ├── http.py │ │ ├── kinesis.py │ │ └── opensearch.py │ ├── conf.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── provisioning.py │ ├── serializers.py │ ├── sync.py │ ├── templates │ │ └── stores │ │ │ ├── index.html │ │ │ └── store_detail.html │ ├── urls.py │ └── views │ │ ├── __init__.py │ │ ├── events.py │ │ └── stores.py └── terraform │ ├── api_urls.py │ ├── api_views.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── templates │ └── terraform │ │ ├── index.html │ │ └── state_detail.html │ ├── urls.py │ └── views.py └── utils ├── __init__.py ├── api_views.py ├── apps.py ├── aws.py ├── backend_model.py ├── base64.py ├── boto3.py ├── certificates.py ├── color.py ├── db.py ├── dict.py ├── drf.py ├── external_resources.py ├── forms.py ├── gcs_storage.py ├── http.py ├── iso_3166_1.py ├── iso_639_1.py ├── json.py ├── leaky_bucket.py ├── local_dir.py ├── logging.py ├── model_extras.py ├── mt_models.py ├── os_version.py ├── osx_package.py ├── passwords.py ├── payloads.py ├── prometheus.py ├── provisioning.py ├── requests.py ├── rison.py ├── sql.py ├── ssl.py ├── statsd.py ├── storage.py ├── terraform.py ├── text.py ├── time.py └── views.py /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [np5] 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/osv-scanner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/.github/workflows/osv-scanner.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/SECURITY.md -------------------------------------------------------------------------------- /conf/common/docker/scepserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/common/docker/scepserver/Dockerfile -------------------------------------------------------------------------------- /conf/common/docker/scepserver/openssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/common/docker/scepserver/openssl.conf -------------------------------------------------------------------------------- /conf/mdm/docker/nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/mdm/docker/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /conf/mdm/docker/nginx/conf.d/zentral.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/mdm/docker/nginx/conf.d/zentral.conf -------------------------------------------------------------------------------- /conf/mdm/zentral/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/mdm/zentral/base.json -------------------------------------------------------------------------------- /conf/puppet/zentral/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/puppet/zentral/base.json -------------------------------------------------------------------------------- /conf/start/docker/nginx/conf.d/zentral.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/start/docker/nginx/conf.d/zentral.conf -------------------------------------------------------------------------------- /conf/start/docker/postgres.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/start/docker/postgres.env -------------------------------------------------------------------------------- /conf/start/docker/prometheus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/start/docker/prometheus/Dockerfile -------------------------------------------------------------------------------- /conf/start/docker/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/start/docker/prometheus/prometheus.yml -------------------------------------------------------------------------------- /conf/start/docker/tls/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/start/docker/tls/.gitignore -------------------------------------------------------------------------------- /conf/start/docker/tls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/start/docker/tls/README.md -------------------------------------------------------------------------------- /conf/start/docker/tls/default_server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/start/docker/tls/default_server.crt -------------------------------------------------------------------------------- /conf/start/docker/tls/default_server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/start/docker/tls/default_server.key -------------------------------------------------------------------------------- /conf/start/docker/tls/zentral.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/start/docker/tls/zentral.crt -------------------------------------------------------------------------------- /conf/start/docker/tls/zentral.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/start/docker/tls/zentral.key -------------------------------------------------------------------------------- /conf/start/docker/tls/zentral_ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/start/docker/tls/zentral_ca.crt -------------------------------------------------------------------------------- /conf/start/docker/tls/zentral_dhparam.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/start/docker/tls/zentral_dhparam.pem -------------------------------------------------------------------------------- /conf/start/docker/tls/zentral_fullchain.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/start/docker/tls/zentral_fullchain.crt -------------------------------------------------------------------------------- /conf/start/docker/tls/zentral_pkcs8.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/start/docker/tls/zentral_pkcs8.key -------------------------------------------------------------------------------- /conf/start/zentral/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/start/zentral/base.json -------------------------------------------------------------------------------- /conf/start/zentral/probes/group_change.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/start/zentral/probes/group_change.yml -------------------------------------------------------------------------------- /conf/start/zentral/probes/munki_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/start/zentral/probes/munki_install.yml -------------------------------------------------------------------------------- /conf/start/zentral/probes/osx-attacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/start/zentral/probes/osx-attacks.json -------------------------------------------------------------------------------- /conf/start/zentral/probes/usb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/conf/start/zentral/probes/usb.yml -------------------------------------------------------------------------------- /constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/constraints.txt -------------------------------------------------------------------------------- /docker-compose.common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docker-compose.common.yml -------------------------------------------------------------------------------- /docker-compose.mdm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docker-compose.mdm.yml -------------------------------------------------------------------------------- /docker-compose.puppet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docker-compose.puppet.yml -------------------------------------------------------------------------------- /docker-compose.syslog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docker-compose.syslog.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-entrypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docker-entrypoint.py -------------------------------------------------------------------------------- /docs/apps/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/apps/core.md -------------------------------------------------------------------------------- /docs/apps/inventory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/apps/inventory.md -------------------------------------------------------------------------------- /docs/apps/mdm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/apps/mdm.md -------------------------------------------------------------------------------- /docs/apps/monolith.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/apps/monolith.md -------------------------------------------------------------------------------- /docs/apps/munki.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/apps/munki.md -------------------------------------------------------------------------------- /docs/apps/osquery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/apps/osquery.md -------------------------------------------------------------------------------- /docs/apps/santa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/apps/santa.md -------------------------------------------------------------------------------- /docs/apps/wsone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/apps/wsone.md -------------------------------------------------------------------------------- /docs/architecture/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/architecture/index.md -------------------------------------------------------------------------------- /docs/configuration/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/configuration/api.md -------------------------------------------------------------------------------- /docs/configuration/django.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/configuration/django.md -------------------------------------------------------------------------------- /docs/configuration/entra_id_saml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/configuration/entra_id_saml.md -------------------------------------------------------------------------------- /docs/configuration/google_saml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/configuration/google_saml.md -------------------------------------------------------------------------------- /docs/configuration/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/configuration/index.md -------------------------------------------------------------------------------- /docs/configuration/notifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/configuration/notifier.md -------------------------------------------------------------------------------- /docs/configuration/okta_saml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/configuration/okta_saml.md -------------------------------------------------------------------------------- /docs/configuration/okta_scim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/configuration/okta_scim.md -------------------------------------------------------------------------------- /docs/configuration/onelogin_saml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/configuration/onelogin_saml.md -------------------------------------------------------------------------------- /docs/configuration/secret_engines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/configuration/secret_engines.md -------------------------------------------------------------------------------- /docs/configuration/sso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/configuration/sso.md -------------------------------------------------------------------------------- /docs/configuration/stores.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/configuration/stores.md -------------------------------------------------------------------------------- /docs/configuration/users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/configuration/users.md -------------------------------------------------------------------------------- /docs/deployment/docker-compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/deployment/docker-compose.md -------------------------------------------------------------------------------- /docs/deployment/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/deployment/index.md -------------------------------------------------------------------------------- /docs/development/ee-split.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/development/ee-split.md -------------------------------------------------------------------------------- /docs/development/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/development/index.md -------------------------------------------------------------------------------- /docs/development/secure-coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/development/secure-coding.md -------------------------------------------------------------------------------- /docs/images/apps/inventory/architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/images/apps/inventory/architecture.svg -------------------------------------------------------------------------------- /docs/images/architecture/key_components.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/images/architecture/key_components.svg -------------------------------------------------------------------------------- /docs/images/architecture/modules.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/images/architecture/modules.svg -------------------------------------------------------------------------------- /docs/images/logo_640_160.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/images/logo_640_160.svg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | mkdocs==1.3.1 2 | -------------------------------------------------------------------------------- /docs/theme/zentral.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/docs/theme/zentral.css -------------------------------------------------------------------------------- /ee/server/realms/backends/openidc/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/server/realms/backends/openidc/forms.py -------------------------------------------------------------------------------- /ee/server/realms/backends/openidc/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/server/realms/backends/openidc/lib.py -------------------------------------------------------------------------------- /ee/server/realms/backends/saml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/server/realms/backends/saml/__init__.py -------------------------------------------------------------------------------- /ee/server/realms/backends/saml/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/server/realms/backends/saml/forms.py -------------------------------------------------------------------------------- /ee/server/realms/scim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/server/realms/scim.py -------------------------------------------------------------------------------- /ee/server/realms/scim_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/server/realms/scim_views.py -------------------------------------------------------------------------------- /ee/zentral/contrib/intune/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ee/zentral/contrib/intune/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/intune/api_client.py -------------------------------------------------------------------------------- /ee/zentral/contrib/intune/api_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/intune/api_urls.py -------------------------------------------------------------------------------- /ee/zentral/contrib/intune/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/intune/api_views.py -------------------------------------------------------------------------------- /ee/zentral/contrib/intune/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/intune/apps.py -------------------------------------------------------------------------------- /ee/zentral/contrib/intune/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/intune/forms.py -------------------------------------------------------------------------------- /ee/zentral/contrib/intune/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ee/zentral/contrib/intune/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ee/zentral/contrib/intune/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ee/zentral/contrib/intune/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/intune/models.py -------------------------------------------------------------------------------- /ee/zentral/contrib/intune/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/intune/serializers.py -------------------------------------------------------------------------------- /ee/zentral/contrib/intune/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/intune/tasks.py -------------------------------------------------------------------------------- /ee/zentral/contrib/intune/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/intune/urls.py -------------------------------------------------------------------------------- /ee/zentral/contrib/intune/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/intune/views.py -------------------------------------------------------------------------------- /ee/zentral/contrib/wsone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ee/zentral/contrib/wsone/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/wsone/api_client.py -------------------------------------------------------------------------------- /ee/zentral/contrib/wsone/api_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/wsone/api_urls.py -------------------------------------------------------------------------------- /ee/zentral/contrib/wsone/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/wsone/api_views.py -------------------------------------------------------------------------------- /ee/zentral/contrib/wsone/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/wsone/apps.py -------------------------------------------------------------------------------- /ee/zentral/contrib/wsone/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/wsone/events/__init__.py -------------------------------------------------------------------------------- /ee/zentral/contrib/wsone/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/wsone/forms.py -------------------------------------------------------------------------------- /ee/zentral/contrib/wsone/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ee/zentral/contrib/wsone/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ee/zentral/contrib/wsone/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ee/zentral/contrib/wsone/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/wsone/models.py -------------------------------------------------------------------------------- /ee/zentral/contrib/wsone/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/wsone/serializers.py -------------------------------------------------------------------------------- /ee/zentral/contrib/wsone/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/wsone/tasks.py -------------------------------------------------------------------------------- /ee/zentral/contrib/wsone/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/wsone/urls.py -------------------------------------------------------------------------------- /ee/zentral/contrib/wsone/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/contrib/wsone/views.py -------------------------------------------------------------------------------- /ee/zentral/core/stores/backends/datadog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/core/stores/backends/datadog.py -------------------------------------------------------------------------------- /ee/zentral/core/stores/backends/splunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/ee/zentral/core/stores/backends/splunk.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/requirements_aws.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- 1 | -c constraints.txt 2 | 3 | coverage 4 | -------------------------------------------------------------------------------- /requirements_gcp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/requirements_gcp.txt -------------------------------------------------------------------------------- /server/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/accounts/api_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/api_authentication.py -------------------------------------------------------------------------------- /server/accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/apps.py -------------------------------------------------------------------------------- /server/accounts/auth_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/auth_backends.py -------------------------------------------------------------------------------- /server/accounts/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/events/__init__.py -------------------------------------------------------------------------------- /server/accounts/events/templates/zentral_logout_body.txt: -------------------------------------------------------------------------------- 1 | zentral_login_body.txt -------------------------------------------------------------------------------- /server/accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/forms.py -------------------------------------------------------------------------------- /server/accounts/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/middleware.py -------------------------------------------------------------------------------- /server/accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /server/accounts/migrations/0007_usertotp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/migrations/0007_usertotp.py -------------------------------------------------------------------------------- /server/accounts/migrations/0016_apitoken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/migrations/0016_apitoken.py -------------------------------------------------------------------------------- /server/accounts/migrations/0020_usertask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/migrations/0020_usertask.py -------------------------------------------------------------------------------- /server/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/models.py -------------------------------------------------------------------------------- /server/accounts/password_reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/password_reset.py -------------------------------------------------------------------------------- /server/accounts/password_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/password_validation.py -------------------------------------------------------------------------------- /server/accounts/provisioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/provisioning.py -------------------------------------------------------------------------------- /server/accounts/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/serializers.py -------------------------------------------------------------------------------- /server/accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/urls.py -------------------------------------------------------------------------------- /server/accounts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/utils.py -------------------------------------------------------------------------------- /server/accounts/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/views/__init__.py -------------------------------------------------------------------------------- /server/accounts/views/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/views/auth.py -------------------------------------------------------------------------------- /server/accounts/views/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/views/groups.py -------------------------------------------------------------------------------- /server/accounts/views/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/views/tasks.py -------------------------------------------------------------------------------- /server/accounts/views/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/views/user.py -------------------------------------------------------------------------------- /server/accounts/views/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/accounts/views/users.py -------------------------------------------------------------------------------- /server/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/base/api_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/base/api_urls.py -------------------------------------------------------------------------------- /server/base/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/base/api_views.py -------------------------------------------------------------------------------- /server/base/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/base/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/base/metrics_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/base/metrics_urls.py -------------------------------------------------------------------------------- /server/base/metrics_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/base/metrics_views.py -------------------------------------------------------------------------------- /server/base/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/base/middlewares.py -------------------------------------------------------------------------------- /server/base/notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/base/notifier.py -------------------------------------------------------------------------------- /server/base/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/base/templatetags/base_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/base/templatetags/base_extras.py -------------------------------------------------------------------------------- /server/base/templatetags/task_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/base/templatetags/task_extras.py -------------------------------------------------------------------------------- /server/base/templatetags/ui_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/base/templatetags/ui_extras.py -------------------------------------------------------------------------------- /server/base/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/base/urls.py -------------------------------------------------------------------------------- /server/base/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/base/utils.py -------------------------------------------------------------------------------- /server/base/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/base/views.py -------------------------------------------------------------------------------- /server/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/manage.py -------------------------------------------------------------------------------- /server/realms/api_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/api_urls.py -------------------------------------------------------------------------------- /server/realms/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/api_views.py -------------------------------------------------------------------------------- /server/realms/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/apps.py -------------------------------------------------------------------------------- /server/realms/auth_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/auth_backends.py -------------------------------------------------------------------------------- /server/realms/backends/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/backends/base.py -------------------------------------------------------------------------------- /server/realms/backends/ldap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/backends/ldap/__init__.py -------------------------------------------------------------------------------- /server/realms/backends/ldap/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/backends/ldap/forms.py -------------------------------------------------------------------------------- /server/realms/backends/ldap/public_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/backends/ldap/public_urls.py -------------------------------------------------------------------------------- /server/realms/backends/ldap/public_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/backends/ldap/public_views.py -------------------------------------------------------------------------------- /server/realms/backends/ldap/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/backends/ldap/serializers.py -------------------------------------------------------------------------------- /server/realms/backends/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/backends/registry.py -------------------------------------------------------------------------------- /server/realms/backends/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/backends/views.py -------------------------------------------------------------------------------- /server/realms/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/exceptions.py -------------------------------------------------------------------------------- /server/realms/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/forms.py -------------------------------------------------------------------------------- /server/realms/metrics_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/metrics_urls.py -------------------------------------------------------------------------------- /server/realms/metrics_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/metrics_views.py -------------------------------------------------------------------------------- /server/realms/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/middlewares.py -------------------------------------------------------------------------------- /server/realms/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/migrations/0001_initial.py -------------------------------------------------------------------------------- /server/realms/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/realms/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/models.py -------------------------------------------------------------------------------- /server/realms/public_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/public_urls.py -------------------------------------------------------------------------------- /server/realms/public_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/public_views.py -------------------------------------------------------------------------------- /server/realms/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/serializers.py -------------------------------------------------------------------------------- /server/realms/templates/realms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/templates/realms/index.html -------------------------------------------------------------------------------- /server/realms/up_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/up_views.py -------------------------------------------------------------------------------- /server/realms/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/urls.py -------------------------------------------------------------------------------- /server/realms/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/utils.py -------------------------------------------------------------------------------- /server/realms/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/realms/views.py -------------------------------------------------------------------------------- /server/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/server/__init__.py -------------------------------------------------------------------------------- /server/server/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/server/celery.py -------------------------------------------------------------------------------- /server/server/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/server/settings.py -------------------------------------------------------------------------------- /server/server/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/server/urls.py -------------------------------------------------------------------------------- /server/server/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/server/wsgi.py -------------------------------------------------------------------------------- /server/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/static/favicon.ico -------------------------------------------------------------------------------- /server/static/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/static/jquery/jquery.min.js -------------------------------------------------------------------------------- /server/static/qrious/qrious.4.0.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/static/qrious/qrious.4.0.2.min.js -------------------------------------------------------------------------------- /server/static_src/images/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/static_src/images/logo-dark.svg -------------------------------------------------------------------------------- /server/static_src/images/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/static_src/images/logo-light.svg -------------------------------------------------------------------------------- /server/static_src/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/static_src/js/main.js -------------------------------------------------------------------------------- /server/static_src/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/static_src/js/theme.js -------------------------------------------------------------------------------- /server/static_src/js/user_portal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/static_src/js/user_portal.js -------------------------------------------------------------------------------- /server/static_src/scss/pygments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/static_src/scss/pygments.scss -------------------------------------------------------------------------------- /server/static_src/scss/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/static_src/scss/styles.scss -------------------------------------------------------------------------------- /server/static_src/scss/user_portal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/static_src/scss/user_portal.scss -------------------------------------------------------------------------------- /server/templates/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/400.html -------------------------------------------------------------------------------- /server/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/403.html -------------------------------------------------------------------------------- /server/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/404.html -------------------------------------------------------------------------------- /server/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/500.html -------------------------------------------------------------------------------- /server/templates/_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/_button.html -------------------------------------------------------------------------------- /server/templates/_created_updated_at.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/_created_updated_at.html -------------------------------------------------------------------------------- /server/templates/_empty_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/_empty_results.html -------------------------------------------------------------------------------- /server/templates/_modules_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/_modules_menu.html -------------------------------------------------------------------------------- /server/templates/_no_entities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/_no_entities.html -------------------------------------------------------------------------------- /server/templates/_pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/_pagination.html -------------------------------------------------------------------------------- /server/templates/accounts/add_totp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/accounts/add_totp.html -------------------------------------------------------------------------------- /server/templates/accounts/delete_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/accounts/delete_user.html -------------------------------------------------------------------------------- /server/templates/accounts/group_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/accounts/group_detail.html -------------------------------------------------------------------------------- /server/templates/accounts/group_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/accounts/group_form.html -------------------------------------------------------------------------------- /server/templates/accounts/group_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/accounts/group_list.html -------------------------------------------------------------------------------- /server/templates/accounts/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/accounts/profile.html -------------------------------------------------------------------------------- /server/templates/accounts/profile_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/accounts/profile_form.html -------------------------------------------------------------------------------- /server/templates/accounts/task_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/accounts/task_detail.html -------------------------------------------------------------------------------- /server/templates/accounts/task_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/accounts/task_list.html -------------------------------------------------------------------------------- /server/templates/accounts/tasks/_time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/accounts/tasks/_time.html -------------------------------------------------------------------------------- /server/templates/accounts/tasks/_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/accounts/tasks/_user.html -------------------------------------------------------------------------------- /server/templates/accounts/user_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/accounts/user_detail.html -------------------------------------------------------------------------------- /server/templates/accounts/user_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/accounts/user_form.html -------------------------------------------------------------------------------- /server/templates/accounts/user_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/accounts/user_list.html -------------------------------------------------------------------------------- /server/templates/accounts/verify_totp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/accounts/verify_totp.html -------------------------------------------------------------------------------- /server/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/base.html -------------------------------------------------------------------------------- /server/templates/base/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/base/index.html -------------------------------------------------------------------------------- /server/templates/base_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/base_error.html -------------------------------------------------------------------------------- /server/templates/custom_error_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/custom_error_page.html -------------------------------------------------------------------------------- /server/templates/forms/django/forms/default.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/div.html" %} 2 | -------------------------------------------------------------------------------- /server/templates/forms/django/forms/errors/dict/default.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/errors/dict/ul.html" %} 2 | -------------------------------------------------------------------------------- /server/templates/forms/django/forms/errors/list/default.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/errors/list/ul.html" %} 2 | -------------------------------------------------------------------------------- /server/templates/forms/django/forms/widgets/checkbox.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /server/templates/forms/django/forms/widgets/checkbox_option.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input_option.html" %} 2 | -------------------------------------------------------------------------------- /server/templates/forms/django/forms/widgets/checkbox_select.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /server/templates/forms/django/forms/widgets/date.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /server/templates/forms/django/forms/widgets/datetime.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /server/templates/forms/django/forms/widgets/email.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /server/templates/forms/django/forms/widgets/file.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /server/templates/forms/django/forms/widgets/hidden.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /server/templates/forms/django/forms/widgets/number.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /server/templates/forms/django/forms/widgets/password.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /server/templates/forms/django/forms/widgets/text.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /server/templates/forms/django/forms/widgets/time.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /server/templates/forms/django/forms/widgets/url.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /server/templates/registration/invitation_subject.txt: -------------------------------------------------------------------------------- 1 | Invitation to Zentral 2 | -------------------------------------------------------------------------------- /server/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/registration/login.html -------------------------------------------------------------------------------- /server/templates/registration/password_reset_subject.txt: -------------------------------------------------------------------------------- 1 | Password reset for Zentral 2 | -------------------------------------------------------------------------------- /server/templates/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /server/templates/toggle_theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/toggle_theme.html -------------------------------------------------------------------------------- /server/templates/user_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/server/templates/user_menu.html -------------------------------------------------------------------------------- /tests/conf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conf/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/conf/base.json -------------------------------------------------------------------------------- /tests/conf/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/conf/test_config.py -------------------------------------------------------------------------------- /tests/core_compliance_checks/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_compliance_checks/test_models.py -------------------------------------------------------------------------------- /tests/core_compliance_checks/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_compliance_checks/test_views.py -------------------------------------------------------------------------------- /tests/core_events/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core_events/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_events/test_base.py -------------------------------------------------------------------------------- /tests/core_events/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_events/test_filter.py -------------------------------------------------------------------------------- /tests/core_events/test_from_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_events/test_from_request.py -------------------------------------------------------------------------------- /tests/core_events/test_probes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_events/test_probes.py -------------------------------------------------------------------------------- /tests/core_events/test_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_events/test_serialization.py -------------------------------------------------------------------------------- /tests/core_events/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_events/utils.py -------------------------------------------------------------------------------- /tests/core_incidents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core_incidents/test_metrics_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_incidents/test_metrics_views.py -------------------------------------------------------------------------------- /tests/core_incidents/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_incidents/test_utils.py -------------------------------------------------------------------------------- /tests/core_incidents/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_incidents/test_views.py -------------------------------------------------------------------------------- /tests/core_probes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core_probes/test_api_action_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_probes/test_api_action_views.py -------------------------------------------------------------------------------- /tests/core_probes/test_api_probe_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_probes/test_api_probe_views.py -------------------------------------------------------------------------------- /tests/core_probes/test_http_post_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_probes/test_http_post_action.py -------------------------------------------------------------------------------- /tests/core_probes/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_probes/test_models.py -------------------------------------------------------------------------------- /tests/core_probes/test_probe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_probes/test_probe.py -------------------------------------------------------------------------------- /tests/core_probes/test_probe_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_probes/test_probe_views.py -------------------------------------------------------------------------------- /tests/core_probes/test_probes_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_probes/test_probes_conf.py -------------------------------------------------------------------------------- /tests/core_probes/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_probes/utils.py -------------------------------------------------------------------------------- /tests/core_queues/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core_queues/test_aws_sns_sqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_queues/test_aws_sns_sqs.py -------------------------------------------------------------------------------- /tests/core_queues/test_workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_queues/test_workers.py -------------------------------------------------------------------------------- /tests/core_secret_engines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core_secret_engines/test_aws_kms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_secret_engines/test_aws_kms.py -------------------------------------------------------------------------------- /tests/core_secret_engines/test_cleartext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_secret_engines/test_cleartext.py -------------------------------------------------------------------------------- /tests/core_secret_engines/test_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_secret_engines/test_conf.py -------------------------------------------------------------------------------- /tests/core_secret_engines/test_fernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_secret_engines/test_fernet.py -------------------------------------------------------------------------------- /tests/core_secret_engines/test_gcp_kms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_secret_engines/test_gcp_kms.py -------------------------------------------------------------------------------- /tests/core_stores/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_stores/__init__.py -------------------------------------------------------------------------------- /tests/core_stores/test_api_store_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_stores/test_api_store_views.py -------------------------------------------------------------------------------- /tests/core_stores/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_stores/test_base.py -------------------------------------------------------------------------------- /tests/core_stores/test_clickhouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_stores/test_clickhouse.py -------------------------------------------------------------------------------- /tests/core_stores/test_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_stores/test_conf.py -------------------------------------------------------------------------------- /tests/core_stores/test_datadog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_stores/test_datadog.py -------------------------------------------------------------------------------- /tests/core_stores/test_elasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_stores/test_elasticsearch.py -------------------------------------------------------------------------------- /tests/core_stores/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_stores/test_http.py -------------------------------------------------------------------------------- /tests/core_stores/test_kinesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_stores/test_kinesis.py -------------------------------------------------------------------------------- /tests/core_stores/test_opensearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_stores/test_opensearch.py -------------------------------------------------------------------------------- /tests/core_stores/test_panther.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_stores/test_panther.py -------------------------------------------------------------------------------- /tests/core_stores/test_snowflake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_stores/test_snowflake.py -------------------------------------------------------------------------------- /tests/core_stores/test_splunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_stores/test_splunk.py -------------------------------------------------------------------------------- /tests/core_stores/test_store_serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_stores/test_store_serializers.py -------------------------------------------------------------------------------- /tests/core_stores/test_store_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_stores/test_store_views.py -------------------------------------------------------------------------------- /tests/core_stores/test_sumo_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_stores/test_sumo_logic.py -------------------------------------------------------------------------------- /tests/core_stores/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_stores/utils.py -------------------------------------------------------------------------------- /tests/core_terraform/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core_terraform/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_terraform/test_models.py -------------------------------------------------------------------------------- /tests/core_terraform/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_terraform/test_views.py -------------------------------------------------------------------------------- /tests/core_terraform/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/core_terraform/utils.py -------------------------------------------------------------------------------- /tests/google_workspace/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/google_workspace/test_api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/google_workspace/test_api_client.py -------------------------------------------------------------------------------- /tests/google_workspace/test_api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/google_workspace/test_api_views.py -------------------------------------------------------------------------------- /tests/google_workspace/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/google_workspace/test_tasks.py -------------------------------------------------------------------------------- /tests/google_workspace/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/google_workspace/test_utils.py -------------------------------------------------------------------------------- /tests/intune/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/intune/test_api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/intune/test_api_views.py -------------------------------------------------------------------------------- /tests/intune/test_setup_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/intune/test_setup_views.py -------------------------------------------------------------------------------- /tests/inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/inventory/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_api.py -------------------------------------------------------------------------------- /tests/inventory/test_apps_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_apps_views.py -------------------------------------------------------------------------------- /tests/inventory/test_clean_ip_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_clean_ip_address.py -------------------------------------------------------------------------------- /tests/inventory/test_compliance_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_compliance_checks.py -------------------------------------------------------------------------------- /tests/inventory/test_exports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_exports.py -------------------------------------------------------------------------------- /tests/inventory/test_incidents_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_incidents_views.py -------------------------------------------------------------------------------- /tests/inventory/test_inventory_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_inventory_clients.py -------------------------------------------------------------------------------- /tests/inventory/test_inventory_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_inventory_extras.py -------------------------------------------------------------------------------- /tests/inventory/test_machine_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_machine_snapshot.py -------------------------------------------------------------------------------- /tests/inventory/test_machine_tags_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_machine_tags_views.py -------------------------------------------------------------------------------- /tests/inventory/test_macos_build_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_macos_build_parser.py -------------------------------------------------------------------------------- /tests/inventory/test_management_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_management_commands.py -------------------------------------------------------------------------------- /tests/inventory/test_metrics_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_metrics_views.py -------------------------------------------------------------------------------- /tests/inventory/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_models.py -------------------------------------------------------------------------------- /tests/inventory/test_ms_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_ms_query.py -------------------------------------------------------------------------------- /tests/inventory/test_preprocessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_preprocessors.py -------------------------------------------------------------------------------- /tests/inventory/test_search_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_search_views.py -------------------------------------------------------------------------------- /tests/inventory/test_setup_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_setup_views.py -------------------------------------------------------------------------------- /tests/inventory/test_tag_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_tag_views.py -------------------------------------------------------------------------------- /tests/inventory/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_tasks.py -------------------------------------------------------------------------------- /tests/inventory/test_update_machine_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_update_machine_tags.py -------------------------------------------------------------------------------- /tests/inventory/test_utils_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_utils_db.py -------------------------------------------------------------------------------- /tests/inventory/test_utils_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/test_utils_tags.py -------------------------------------------------------------------------------- /tests/inventory/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/inventory/utils.py -------------------------------------------------------------------------------- /tests/jamf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/jamf/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/jamf/data.py -------------------------------------------------------------------------------- /tests/jamf/test_api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/jamf/test_api_client.py -------------------------------------------------------------------------------- /tests/jamf/test_api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/jamf/test_api_views.py -------------------------------------------------------------------------------- /tests/jamf/test_jamf_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/jamf/test_jamf_events.py -------------------------------------------------------------------------------- /tests/jamf/test_jamf_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/jamf/test_jamf_models.py -------------------------------------------------------------------------------- /tests/jamf/test_jamf_setup_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/jamf/test_jamf_setup_views.py -------------------------------------------------------------------------------- /tests/mdm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mdm/test_api_acme_issuers_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_api_acme_issuers_views.py -------------------------------------------------------------------------------- /tests/mdm/test_api_apps_books_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_api_apps_books_views.py -------------------------------------------------------------------------------- /tests/mdm/test_api_artifacts_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_api_artifacts_views.py -------------------------------------------------------------------------------- /tests/mdm/test_api_blueprints_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_api_blueprints_views.py -------------------------------------------------------------------------------- /tests/mdm/test_api_cert_assets_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_api_cert_assets_views.py -------------------------------------------------------------------------------- /tests/mdm/test_api_commands_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_api_commands_views.py -------------------------------------------------------------------------------- /tests/mdm/test_api_data_assets_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_api_data_assets_views.py -------------------------------------------------------------------------------- /tests/mdm/test_api_declarations_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_api_declarations_views.py -------------------------------------------------------------------------------- /tests/mdm/test_api_dep_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_api_dep_views.py -------------------------------------------------------------------------------- /tests/mdm/test_api_enterprise_apps_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_api_enterprise_apps_views.py -------------------------------------------------------------------------------- /tests/mdm/test_api_profiles_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_api_profiles_views.py -------------------------------------------------------------------------------- /tests/mdm/test_api_scep_issuers_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_api_scep_issuers_views.py -------------------------------------------------------------------------------- /tests/mdm/test_api_store_apps_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_api_store_apps_views.py -------------------------------------------------------------------------------- /tests/mdm/test_apns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_apns.py -------------------------------------------------------------------------------- /tests/mdm/test_apps_books_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_apps_books_client.py -------------------------------------------------------------------------------- /tests/mdm/test_artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_artifacts.py -------------------------------------------------------------------------------- /tests/mdm/test_cert_issuer_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_cert_issuer_backends.py -------------------------------------------------------------------------------- /tests/mdm/test_commands_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_commands_base.py -------------------------------------------------------------------------------- /tests/mdm/test_commands_scheduling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_commands_scheduling.py -------------------------------------------------------------------------------- /tests/mdm/test_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_crypto.py -------------------------------------------------------------------------------- /tests/mdm/test_custom_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_custom_command.py -------------------------------------------------------------------------------- /tests/mdm/test_declarations_linkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_declarations_linkers.py -------------------------------------------------------------------------------- /tests/mdm/test_declarations_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_declarations_utils.py -------------------------------------------------------------------------------- /tests/mdm/test_dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_dep.py -------------------------------------------------------------------------------- /tests/mdm/test_dep_enrollment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_dep_enrollment.py -------------------------------------------------------------------------------- /tests/mdm/test_device_lock_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_device_lock_command.py -------------------------------------------------------------------------------- /tests/mdm/test_erase_device_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_erase_device_command.py -------------------------------------------------------------------------------- /tests/mdm/test_install_profile_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_install_profile_command.py -------------------------------------------------------------------------------- /tests/mdm/test_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_inventory.py -------------------------------------------------------------------------------- /tests/mdm/test_management_artifact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_management_artifact.py -------------------------------------------------------------------------------- /tests/mdm/test_management_asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_management_asset.py -------------------------------------------------------------------------------- /tests/mdm/test_management_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_management_blueprint.py -------------------------------------------------------------------------------- /tests/mdm/test_management_cert_asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_management_cert_asset.py -------------------------------------------------------------------------------- /tests/mdm/test_management_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_management_commands.py -------------------------------------------------------------------------------- /tests/mdm/test_management_data_asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_management_data_asset.py -------------------------------------------------------------------------------- /tests/mdm/test_management_declaration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_management_declaration.py -------------------------------------------------------------------------------- /tests/mdm/test_management_dep_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_management_dep_device.py -------------------------------------------------------------------------------- /tests/mdm/test_management_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_management_profile.py -------------------------------------------------------------------------------- /tests/mdm/test_mdm_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_mdm_views.py -------------------------------------------------------------------------------- /tests/mdm/test_metrics_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_metrics_views.py -------------------------------------------------------------------------------- /tests/mdm/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_models.py -------------------------------------------------------------------------------- /tests/mdm/test_ota_enrollment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_ota_enrollment.py -------------------------------------------------------------------------------- /tests/mdm/test_payloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_payloads.py -------------------------------------------------------------------------------- /tests/mdm/test_profile_list_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_profile_list_command.py -------------------------------------------------------------------------------- /tests/mdm/test_reenroll_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_reenroll_command.py -------------------------------------------------------------------------------- /tests/mdm/test_remove_profile_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_remove_profile_command.py -------------------------------------------------------------------------------- /tests/mdm/test_restart_device_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_restart_device_command.py -------------------------------------------------------------------------------- /tests/mdm/test_security_info_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_security_info_command.py -------------------------------------------------------------------------------- /tests/mdm/test_serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_serializers.py -------------------------------------------------------------------------------- /tests/mdm/test_setup_dep_enrollment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_setup_dep_enrollment.py -------------------------------------------------------------------------------- /tests/mdm/test_setup_filevault_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_setup_filevault_command.py -------------------------------------------------------------------------------- /tests/mdm/test_setup_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_setup_index.py -------------------------------------------------------------------------------- /tests/mdm/test_setup_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_setup_location.py -------------------------------------------------------------------------------- /tests/mdm/test_setup_ota_enrollment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_setup_ota_enrollment.py -------------------------------------------------------------------------------- /tests/mdm/test_setup_push_certificate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_setup_push_certificate.py -------------------------------------------------------------------------------- /tests/mdm/test_setup_scep_issuer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_setup_scep_issuer.py -------------------------------------------------------------------------------- /tests/mdm/test_setup_user_enrollment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_setup_user_enrollment.py -------------------------------------------------------------------------------- /tests/mdm/test_software_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_software_updates.py -------------------------------------------------------------------------------- /tests/mdm/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_tasks.py -------------------------------------------------------------------------------- /tests/mdm/test_terraform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_terraform.py -------------------------------------------------------------------------------- /tests/mdm/test_user_enrollment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_user_enrollment.py -------------------------------------------------------------------------------- /tests/mdm/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_utils.py -------------------------------------------------------------------------------- /tests/mdm/test_workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/test_workers.py -------------------------------------------------------------------------------- /tests/mdm/testdata/certificate_list.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/testdata/certificate_list.plist -------------------------------------------------------------------------------- /tests/mdm/testdata/ota_playload_phase_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/testdata/ota_playload_phase_2 -------------------------------------------------------------------------------- /tests/mdm/testdata/profile_list.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/testdata/profile_list.plist -------------------------------------------------------------------------------- /tests/mdm/testdata/security_info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/testdata/security_info.plist -------------------------------------------------------------------------------- /tests/mdm/testdata/status_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/testdata/status_report.json -------------------------------------------------------------------------------- /tests/mdm/testdata/test.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/testdata/test.mobileconfig -------------------------------------------------------------------------------- /tests/mdm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/mdm/utils.py -------------------------------------------------------------------------------- /tests/monolith/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/monolith/test_api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/monolith/test_api_views.py -------------------------------------------------------------------------------- /tests/monolith/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/monolith/test_models.py -------------------------------------------------------------------------------- /tests/monolith/test_munki_api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/monolith/test_munki_api_views.py -------------------------------------------------------------------------------- /tests/monolith/test_provision_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/monolith/test_provision_cmd.py -------------------------------------------------------------------------------- /tests/monolith/test_repositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/monolith/test_repositories.py -------------------------------------------------------------------------------- /tests/monolith/test_setup_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/monolith/test_setup_views.py -------------------------------------------------------------------------------- /tests/monolith/test_terraform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/monolith/test_terraform.py -------------------------------------------------------------------------------- /tests/monolith/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/monolith/utils.py -------------------------------------------------------------------------------- /tests/munki/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/munki/test_api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/munki/test_api_views.py -------------------------------------------------------------------------------- /tests/munki/test_compliance_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/munki/test_compliance_checks.py -------------------------------------------------------------------------------- /tests/munki/test_machine_actions_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/munki/test_machine_actions_views.py -------------------------------------------------------------------------------- /tests/munki/test_managed_installs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/munki/test_managed_installs.py -------------------------------------------------------------------------------- /tests/munki/test_metrics_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/munki/test_metrics_views.py -------------------------------------------------------------------------------- /tests/munki/test_script_check_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/munki/test_script_check_views.py -------------------------------------------------------------------------------- /tests/munki/test_setup_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/munki/test_setup_views.py -------------------------------------------------------------------------------- /tests/munki/test_terraform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/munki/test_terraform.py -------------------------------------------------------------------------------- /tests/munki/test_tree_certificates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/munki/test_tree_certificates.py -------------------------------------------------------------------------------- /tests/munki/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/munki/utils.py -------------------------------------------------------------------------------- /tests/osquery/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/osquery/osquery_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/osquery/osquery_load.py -------------------------------------------------------------------------------- /tests/osquery/test_api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/osquery/test_api_views.py -------------------------------------------------------------------------------- /tests/osquery/test_compliance_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/osquery/test_compliance_checks.py -------------------------------------------------------------------------------- /tests/osquery/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/osquery/test_events.py -------------------------------------------------------------------------------- /tests/osquery/test_osquery_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/osquery/test_osquery_api.py -------------------------------------------------------------------------------- /tests/osquery/test_setup_atcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/osquery/test_setup_atcs.py -------------------------------------------------------------------------------- /tests/osquery/test_setup_enrollments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/osquery/test_setup_enrollments.py -------------------------------------------------------------------------------- /tests/osquery/test_setup_overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/osquery/test_setup_overview.py -------------------------------------------------------------------------------- /tests/osquery/test_setup_packs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/osquery/test_setup_packs.py -------------------------------------------------------------------------------- /tests/osquery/test_setup_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/osquery/test_setup_queries.py -------------------------------------------------------------------------------- /tests/osquery/test_terraform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/osquery/test_terraform.py -------------------------------------------------------------------------------- /tests/osquery/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/osquery/utils.py -------------------------------------------------------------------------------- /tests/puppet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/puppet/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/puppet/test_events.py -------------------------------------------------------------------------------- /tests/puppet/test_post_report_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/puppet/test_post_report_view.py -------------------------------------------------------------------------------- /tests/puppet/test_setup_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/puppet/test_setup_views.py -------------------------------------------------------------------------------- /tests/puppet/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/puppet/utils.py -------------------------------------------------------------------------------- /tests/santa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/santa/simulate_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/santa/simulate_client.py -------------------------------------------------------------------------------- /tests/santa/test_api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/santa/test_api_views.py -------------------------------------------------------------------------------- /tests/santa/test_ballot_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/santa/test_ballot_box.py -------------------------------------------------------------------------------- /tests/santa/test_ballots_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/santa/test_ballots_views.py -------------------------------------------------------------------------------- /tests/santa/test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/santa/test_configuration.py -------------------------------------------------------------------------------- /tests/santa/test_incidents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/santa/test_incidents.py -------------------------------------------------------------------------------- /tests/santa/test_metrics_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/santa/test_metrics_views.py -------------------------------------------------------------------------------- /tests/santa/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/santa/test_models.py -------------------------------------------------------------------------------- /tests/santa/test_rule_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/santa/test_rule_engine.py -------------------------------------------------------------------------------- /tests/santa/test_santa_api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/santa/test_santa_api_views.py -------------------------------------------------------------------------------- /tests/santa/test_santa_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/santa/test_santa_events.py -------------------------------------------------------------------------------- /tests/santa/test_santa_log_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/santa/test_santa_log_parsing.py -------------------------------------------------------------------------------- /tests/santa/test_serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/santa/test_serializers.py -------------------------------------------------------------------------------- /tests/santa/test_setup_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/santa/test_setup_views.py -------------------------------------------------------------------------------- /tests/santa/test_targets_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/santa/test_targets_views.py -------------------------------------------------------------------------------- /tests/santa/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/santa/test_tasks.py -------------------------------------------------------------------------------- /tests/santa/test_terraform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/santa/test_terraform.py -------------------------------------------------------------------------------- /tests/santa/test_up_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/santa/test_up_views.py -------------------------------------------------------------------------------- /tests/santa/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/santa/utils.py -------------------------------------------------------------------------------- /tests/server_accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/server_accounts/test_tasks_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/server_accounts/test_tasks_views.py -------------------------------------------------------------------------------- /tests/server_accounts/test_users_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/server_accounts/test_users_views.py -------------------------------------------------------------------------------- /tests/server_accounts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/server_accounts/utils.py -------------------------------------------------------------------------------- /tests/server_base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/server_base/test_api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/server_base/test_api_views.py -------------------------------------------------------------------------------- /tests/server_base/test_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/server_base/test_apps.py -------------------------------------------------------------------------------- /tests/server_base/test_celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/server_base/test_celery.py -------------------------------------------------------------------------------- /tests/server_base/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/server_base/test_index.py -------------------------------------------------------------------------------- /tests/server_base/test_metrics_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/server_base/test_metrics_views.py -------------------------------------------------------------------------------- /tests/server_base/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/server_base/test_utils.py -------------------------------------------------------------------------------- /tests/server_base/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/server_base/utils.py -------------------------------------------------------------------------------- /tests/server_realms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/server_realms/test_api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/server_realms/test_api_views.py -------------------------------------------------------------------------------- /tests/server_realms/test_auth_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/server_realms/test_auth_backend.py -------------------------------------------------------------------------------- /tests/server_realms/test_metrics_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/server_realms/test_metrics_views.py -------------------------------------------------------------------------------- /tests/server_realms/test_realm_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/server_realms/test_realm_models.py -------------------------------------------------------------------------------- /tests/server_realms/test_realm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/server_realms/test_realm_utils.py -------------------------------------------------------------------------------- /tests/server_realms/test_realm_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/server_realms/test_realm_views.py -------------------------------------------------------------------------------- /tests/server_realms/test_up_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/server_realms/test_up_views.py -------------------------------------------------------------------------------- /tests/server_realms/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/server_realms/utils.py -------------------------------------------------------------------------------- /tests/tools/diff_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/tools/diff_coverage.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/utils/http_server.py -------------------------------------------------------------------------------- /tests/utils/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/utils/packages.py -------------------------------------------------------------------------------- /tests/utils/test_certificates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/utils/test_certificates.py -------------------------------------------------------------------------------- /tests/utils/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/utils/test_db.py -------------------------------------------------------------------------------- /tests/utils/test_dict_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/utils/test_dict_diff.py -------------------------------------------------------------------------------- /tests/utils/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/utils/test_json.py -------------------------------------------------------------------------------- /tests/utils/test_leaky_bucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/utils/test_leaky_bucket.py -------------------------------------------------------------------------------- /tests/utils/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/utils/test_logging.py -------------------------------------------------------------------------------- /tests/utils/test_os_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/utils/test_os_version.py -------------------------------------------------------------------------------- /tests/utils/test_passwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/utils/test_passwords.py -------------------------------------------------------------------------------- /tests/utils/test_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/utils/test_storage.py -------------------------------------------------------------------------------- /tests/utils/test_terraform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/utils/test_terraform.py -------------------------------------------------------------------------------- /tests/utils/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/utils/test_text.py -------------------------------------------------------------------------------- /tests/utils/test_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/utils/test_time.py -------------------------------------------------------------------------------- /tests/utils/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/utils/test_views.py -------------------------------------------------------------------------------- /tests/wsone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/wsone/test_api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/wsone/test_api_views.py -------------------------------------------------------------------------------- /tests/wsone/test_setup_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/wsone/test_setup_views.py -------------------------------------------------------------------------------- /tests/wsone/test_webhook_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/wsone/test_webhook_preprocessor.py -------------------------------------------------------------------------------- /tests/wsone/test_webhook_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tests/wsone/test_webhook_view.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/tox.ini -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/webpack.config.js -------------------------------------------------------------------------------- /zentral/conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/conf/__init__.py -------------------------------------------------------------------------------- /zentral/conf/buckets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/conf/buckets.py -------------------------------------------------------------------------------- /zentral/conf/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/conf/config.py -------------------------------------------------------------------------------- /zentral/conf/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/conf/context_processors.py -------------------------------------------------------------------------------- /zentral/conf/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/conf/params.py -------------------------------------------------------------------------------- /zentral/conf/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/conf/secrets.py -------------------------------------------------------------------------------- /zentral/contrib/google_workspace/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/google_workspace/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/google_workspace/apps.py -------------------------------------------------------------------------------- /zentral/contrib/google_workspace/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/google_workspace/forms.py -------------------------------------------------------------------------------- /zentral/contrib/google_workspace/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/google_workspace/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/google_workspace/tasks.py -------------------------------------------------------------------------------- /zentral/contrib/google_workspace/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/google_workspace/urls.py -------------------------------------------------------------------------------- /zentral/contrib/google_workspace/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/google_workspace/utils.py -------------------------------------------------------------------------------- /zentral/contrib/google_workspace/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/google_workspace/views.py -------------------------------------------------------------------------------- /zentral/contrib/inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/inventory/api_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/inventory/api_urls.py -------------------------------------------------------------------------------- /zentral/contrib/inventory/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/inventory/api_views.py -------------------------------------------------------------------------------- /zentral/contrib/inventory/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/inventory/apps.py -------------------------------------------------------------------------------- /zentral/contrib/inventory/clients/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/inventory/clients/base.py -------------------------------------------------------------------------------- /zentral/contrib/inventory/clients/sal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/inventory/clients/sal.py -------------------------------------------------------------------------------- /zentral/contrib/inventory/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/inventory/conf.py -------------------------------------------------------------------------------- /zentral/contrib/inventory/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/inventory/exceptions.py -------------------------------------------------------------------------------- /zentral/contrib/inventory/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/inventory/forms.py -------------------------------------------------------------------------------- /zentral/contrib/inventory/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/inventory/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/inventory/metrics_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/inventory/metrics_urls.py -------------------------------------------------------------------------------- /zentral/contrib/inventory/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/inventory/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/inventory/models.py -------------------------------------------------------------------------------- /zentral/contrib/inventory/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/inventory/serializers.py -------------------------------------------------------------------------------- /zentral/contrib/inventory/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/inventory/tasks.py -------------------------------------------------------------------------------- /zentral/contrib/inventory/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/inventory/terraform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/inventory/terraform.py -------------------------------------------------------------------------------- /zentral/contrib/inventory/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/inventory/urls.py -------------------------------------------------------------------------------- /zentral/contrib/inventory/utils/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/inventory/utils/db.py -------------------------------------------------------------------------------- /zentral/contrib/inventory/utils/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/inventory/utils/tags.py -------------------------------------------------------------------------------- /zentral/contrib/inventory/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/inventory/views.py -------------------------------------------------------------------------------- /zentral/contrib/inventory/workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/inventory/workers.py -------------------------------------------------------------------------------- /zentral/contrib/jamf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/jamf/README.md -------------------------------------------------------------------------------- /zentral/contrib/jamf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/jamf/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/jamf/api_client.py -------------------------------------------------------------------------------- /zentral/contrib/jamf/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/jamf/apps.py -------------------------------------------------------------------------------- /zentral/contrib/jamf/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/jamf/events/__init__.py -------------------------------------------------------------------------------- /zentral/contrib/jamf/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/jamf/forms.py -------------------------------------------------------------------------------- /zentral/contrib/jamf/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/jamf/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/jamf/models.py -------------------------------------------------------------------------------- /zentral/contrib/jamf/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/jamf/urls.py -------------------------------------------------------------------------------- /zentral/contrib/jamf/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/jamf/views.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/mdm/api_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/api_urls.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/api_views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/api_views/__init__.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/api_views/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/api_views/commands.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/api_views/dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/api_views/dep.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/apns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/apns.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/app_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/app_manifest.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/apps.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/apps_books.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/apps_books.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/artifacts.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/commands/__init__.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/commands/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/commands/base.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/commands/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/commands/custom.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/commands/reenroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/commands/reenroll.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/crypto.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/declarations/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/declarations/utils.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/dep.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/dep_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/dep_client.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/events/__init__.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/events/apps_books.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/events/apps_books.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/events/artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/events/artifacts.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/events/filevault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/events/filevault.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/events/management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/events/management.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/events/mdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/events/mdm.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/exceptions.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/forms.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/incidents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/incidents.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/inventory.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/mdm/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/mdm/metrics_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/metrics_urls.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/metrics_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/metrics_views.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/mdm/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/models.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/payloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/payloads.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/preprocessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/preprocessors.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/provisioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/provisioning.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/public_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/public_urls.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/public_views/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/public_views/apps.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/public_views/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/public_views/base.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/public_views/dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/public_views/dep.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/public_views/mdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/public_views/mdm.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/public_views/ota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/public_views/ota.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/public_views/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/public_views/user.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/push_csr_signers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/push_csr_signers.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/schema_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/schema_data/README.md -------------------------------------------------------------------------------- /zentral/contrib/mdm/schema_data/reference.txt: -------------------------------------------------------------------------------- 1 | 8d9958d 2 | -------------------------------------------------------------------------------- /zentral/contrib/mdm/schema_data/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/schema_data/update.sh -------------------------------------------------------------------------------- /zentral/contrib/mdm/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/serializers.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/skip_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/skip_keys.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/software_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/software_updates.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/tasks.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/terraform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/terraform.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/urls.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/utils.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/views/__init__.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/views/cert_issuers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/views/cert_issuers.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/views/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/views/inventory.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/views/management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/views/management.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/views/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/views/setup.py -------------------------------------------------------------------------------- /zentral/contrib/mdm/workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/mdm/workers.py -------------------------------------------------------------------------------- /zentral/contrib/monolith/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/monolith/api_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/monolith/api_urls.py -------------------------------------------------------------------------------- /zentral/contrib/monolith/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/monolith/api_views.py -------------------------------------------------------------------------------- /zentral/contrib/monolith/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/monolith/apps.py -------------------------------------------------------------------------------- /zentral/contrib/monolith/attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/monolith/attachments.py -------------------------------------------------------------------------------- /zentral/contrib/monolith/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/monolith/conf.py -------------------------------------------------------------------------------- /zentral/contrib/monolith/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/monolith/exceptions.py -------------------------------------------------------------------------------- /zentral/contrib/monolith/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/monolith/forms.py -------------------------------------------------------------------------------- /zentral/contrib/monolith/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/monolith/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/monolith/metrics_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/monolith/metrics_urls.py -------------------------------------------------------------------------------- /zentral/contrib/monolith/metrics_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/monolith/metrics_views.py -------------------------------------------------------------------------------- /zentral/contrib/monolith/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/monolith/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/monolith/models.py -------------------------------------------------------------------------------- /zentral/contrib/monolith/provisioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/monolith/provisioning.py -------------------------------------------------------------------------------- /zentral/contrib/monolith/public_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/monolith/public_urls.py -------------------------------------------------------------------------------- /zentral/contrib/monolith/public_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/monolith/public_views.py -------------------------------------------------------------------------------- /zentral/contrib/monolith/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/monolith/serializers.py -------------------------------------------------------------------------------- /zentral/contrib/monolith/terraform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/monolith/terraform.py -------------------------------------------------------------------------------- /zentral/contrib/monolith/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/monolith/urls.py -------------------------------------------------------------------------------- /zentral/contrib/monolith/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/monolith/utils.py -------------------------------------------------------------------------------- /zentral/contrib/monolith/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/monolith/views.py -------------------------------------------------------------------------------- /zentral/contrib/munki/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/munki/api_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/munki/api_urls.py -------------------------------------------------------------------------------- /zentral/contrib/munki/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/munki/api_views.py -------------------------------------------------------------------------------- /zentral/contrib/munki/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/munki/apps.py -------------------------------------------------------------------------------- /zentral/contrib/munki/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/munki/events/__init__.py -------------------------------------------------------------------------------- /zentral/contrib/munki/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/munki/forms.py -------------------------------------------------------------------------------- /zentral/contrib/munki/incidents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/munki/incidents.py -------------------------------------------------------------------------------- /zentral/contrib/munki/machine_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/munki/machine_actions.py -------------------------------------------------------------------------------- /zentral/contrib/munki/metrics_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/munki/metrics_urls.py -------------------------------------------------------------------------------- /zentral/contrib/munki/metrics_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/munki/metrics_views.py -------------------------------------------------------------------------------- /zentral/contrib/munki/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/munki/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/munki/models.py -------------------------------------------------------------------------------- /zentral/contrib/munki/public_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/munki/public_urls.py -------------------------------------------------------------------------------- /zentral/contrib/munki/public_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/munki/public_views.py -------------------------------------------------------------------------------- /zentral/contrib/munki/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/munki/serializers.py -------------------------------------------------------------------------------- /zentral/contrib/munki/terraform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/munki/terraform.py -------------------------------------------------------------------------------- /zentral/contrib/munki/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/munki/urls.py -------------------------------------------------------------------------------- /zentral/contrib/munki/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/munki/utils.py -------------------------------------------------------------------------------- /zentral/contrib/munki/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/munki/views.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/osquery/api_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/api_urls.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/api_views.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/apps.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/conf.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/forms.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/linux_script/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/osquery/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/osquery/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/models.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/osx_package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/osquery/packs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/packs.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/powershell_script/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/osquery/public_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/public_urls.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/public_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/public_views.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/releases.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/serializers.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/specs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/specs/__init__.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/tags.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/tasks.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/terraform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/terraform.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/urls.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/views/__init__.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/views/atcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/views/atcs.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/views/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/views/index.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/views/packs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/views/packs.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/views/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/views/queries.py -------------------------------------------------------------------------------- /zentral/contrib/osquery/views/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/osquery/views/utils.py -------------------------------------------------------------------------------- /zentral/contrib/puppet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/puppet/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/puppet/apps.py -------------------------------------------------------------------------------- /zentral/contrib/puppet/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/puppet/events/__init__.py -------------------------------------------------------------------------------- /zentral/contrib/puppet/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/puppet/forms.py -------------------------------------------------------------------------------- /zentral/contrib/puppet/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/puppet/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/puppet/models.py -------------------------------------------------------------------------------- /zentral/contrib/puppet/preprocessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/puppet/preprocessors.py -------------------------------------------------------------------------------- /zentral/contrib/puppet/puppetdb_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/puppet/puppetdb_client.py -------------------------------------------------------------------------------- /zentral/contrib/puppet/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/puppet/urls.py -------------------------------------------------------------------------------- /zentral/contrib/puppet/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/puppet/views.py -------------------------------------------------------------------------------- /zentral/contrib/santa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/santa/api_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/api_urls.py -------------------------------------------------------------------------------- /zentral/contrib/santa/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/api_views.py -------------------------------------------------------------------------------- /zentral/contrib/santa/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/apps.py -------------------------------------------------------------------------------- /zentral/contrib/santa/ballot_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/ballot_box.py -------------------------------------------------------------------------------- /zentral/contrib/santa/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/events/__init__.py -------------------------------------------------------------------------------- /zentral/contrib/santa/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/forms.py -------------------------------------------------------------------------------- /zentral/contrib/santa/incidents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/incidents.py -------------------------------------------------------------------------------- /zentral/contrib/santa/metrics_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/metrics_urls.py -------------------------------------------------------------------------------- /zentral/contrib/santa/metrics_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/metrics_views.py -------------------------------------------------------------------------------- /zentral/contrib/santa/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/contrib/santa/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/models.py -------------------------------------------------------------------------------- /zentral/contrib/santa/public_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/public_urls.py -------------------------------------------------------------------------------- /zentral/contrib/santa/public_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/public_views.py -------------------------------------------------------------------------------- /zentral/contrib/santa/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/serializers.py -------------------------------------------------------------------------------- /zentral/contrib/santa/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/tasks.py -------------------------------------------------------------------------------- /zentral/contrib/santa/terraform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/terraform.py -------------------------------------------------------------------------------- /zentral/contrib/santa/up_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/up_urls.py -------------------------------------------------------------------------------- /zentral/contrib/santa/up_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/up_views.py -------------------------------------------------------------------------------- /zentral/contrib/santa/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/urls.py -------------------------------------------------------------------------------- /zentral/contrib/santa/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/utils.py -------------------------------------------------------------------------------- /zentral/contrib/santa/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/views/__init__.py -------------------------------------------------------------------------------- /zentral/contrib/santa/views/ballots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/views/ballots.py -------------------------------------------------------------------------------- /zentral/contrib/santa/views/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/views/index.py -------------------------------------------------------------------------------- /zentral/contrib/santa/views/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/views/inventory.py -------------------------------------------------------------------------------- /zentral/contrib/santa/views/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/views/setup.py -------------------------------------------------------------------------------- /zentral/contrib/santa/views/targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/contrib/santa/views/targets.py -------------------------------------------------------------------------------- /zentral/core/compliance_checks/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/compliance_checks/apps.py -------------------------------------------------------------------------------- /zentral/core/compliance_checks/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/compliance_checks/forms.py -------------------------------------------------------------------------------- /zentral/core/compliance_checks/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/core/compliance_checks/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/compliance_checks/models.py -------------------------------------------------------------------------------- /zentral/core/compliance_checks/tools/mSCP/requirements.txt: -------------------------------------------------------------------------------- 1 | pyyaml<7 2 | -------------------------------------------------------------------------------- /zentral/core/compliance_checks/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/compliance_checks/urls.py -------------------------------------------------------------------------------- /zentral/core/compliance_checks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/compliance_checks/utils.py -------------------------------------------------------------------------------- /zentral/core/compliance_checks/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/compliance_checks/views.py -------------------------------------------------------------------------------- /zentral/core/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/events/__init__.py -------------------------------------------------------------------------------- /zentral/core/events/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/events/base.py -------------------------------------------------------------------------------- /zentral/core/events/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/events/filter.py -------------------------------------------------------------------------------- /zentral/core/events/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/events/pipeline.py -------------------------------------------------------------------------------- /zentral/core/events/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/events/serializers.py -------------------------------------------------------------------------------- /zentral/core/events/template_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/events/template_loader.py -------------------------------------------------------------------------------- /zentral/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/exceptions.py -------------------------------------------------------------------------------- /zentral/core/incidents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/incidents/__init__.py -------------------------------------------------------------------------------- /zentral/core/incidents/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/incidents/apps.py -------------------------------------------------------------------------------- /zentral/core/incidents/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/incidents/events/__init__.py -------------------------------------------------------------------------------- /zentral/core/incidents/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/incidents/forms.py -------------------------------------------------------------------------------- /zentral/core/incidents/incidents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/incidents/incidents.py -------------------------------------------------------------------------------- /zentral/core/incidents/metrics_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/incidents/metrics_urls.py -------------------------------------------------------------------------------- /zentral/core/incidents/metrics_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/incidents/metrics_views.py -------------------------------------------------------------------------------- /zentral/core/incidents/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/core/incidents/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/incidents/models.py -------------------------------------------------------------------------------- /zentral/core/incidents/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/core/incidents/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/incidents/urls.py -------------------------------------------------------------------------------- /zentral/core/incidents/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/incidents/utils.py -------------------------------------------------------------------------------- /zentral/core/incidents/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/incidents/views.py -------------------------------------------------------------------------------- /zentral/core/probes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/core/probes/api_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/probes/api_urls.py -------------------------------------------------------------------------------- /zentral/core/probes/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/probes/api_views.py -------------------------------------------------------------------------------- /zentral/core/probes/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/probes/apps.py -------------------------------------------------------------------------------- /zentral/core/probes/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/probes/conf.py -------------------------------------------------------------------------------- /zentral/core/probes/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/probes/forms.py -------------------------------------------------------------------------------- /zentral/core/probes/incidents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/probes/incidents.py -------------------------------------------------------------------------------- /zentral/core/probes/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/core/probes/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/probes/models.py -------------------------------------------------------------------------------- /zentral/core/probes/probe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/probes/probe.py -------------------------------------------------------------------------------- /zentral/core/probes/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/probes/serializers.py -------------------------------------------------------------------------------- /zentral/core/probes/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/probes/sync.py -------------------------------------------------------------------------------- /zentral/core/probes/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/probes/urls.py -------------------------------------------------------------------------------- /zentral/core/probes/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/probes/views.py -------------------------------------------------------------------------------- /zentral/core/queues/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/queues/__init__.py -------------------------------------------------------------------------------- /zentral/core/queues/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/core/queues/backends/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/queues/backends/base.py -------------------------------------------------------------------------------- /zentral/core/queues/backends/kombu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/queues/backends/kombu.py -------------------------------------------------------------------------------- /zentral/core/queues/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/queues/exceptions.py -------------------------------------------------------------------------------- /zentral/core/queues/workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/queues/workers.py -------------------------------------------------------------------------------- /zentral/core/secret_engines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/secret_engines/__init__.py -------------------------------------------------------------------------------- /zentral/core/secret_engines/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/core/stores/api_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/stores/api_urls.py -------------------------------------------------------------------------------- /zentral/core/stores/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/stores/api_views.py -------------------------------------------------------------------------------- /zentral/core/stores/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/stores/apps.py -------------------------------------------------------------------------------- /zentral/core/stores/backends/all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/stores/backends/all.py -------------------------------------------------------------------------------- /zentral/core/stores/backends/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/stores/backends/base.py -------------------------------------------------------------------------------- /zentral/core/stores/backends/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/stores/backends/http.py -------------------------------------------------------------------------------- /zentral/core/stores/backends/kinesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/stores/backends/kinesis.py -------------------------------------------------------------------------------- /zentral/core/stores/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/stores/conf.py -------------------------------------------------------------------------------- /zentral/core/stores/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/core/stores/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/stores/models.py -------------------------------------------------------------------------------- /zentral/core/stores/provisioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/stores/provisioning.py -------------------------------------------------------------------------------- /zentral/core/stores/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/stores/serializers.py -------------------------------------------------------------------------------- /zentral/core/stores/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/stores/sync.py -------------------------------------------------------------------------------- /zentral/core/stores/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/stores/urls.py -------------------------------------------------------------------------------- /zentral/core/stores/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/stores/views/__init__.py -------------------------------------------------------------------------------- /zentral/core/stores/views/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/stores/views/events.py -------------------------------------------------------------------------------- /zentral/core/stores/views/stores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/stores/views/stores.py -------------------------------------------------------------------------------- /zentral/core/terraform/api_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/terraform/api_urls.py -------------------------------------------------------------------------------- /zentral/core/terraform/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/terraform/api_views.py -------------------------------------------------------------------------------- /zentral/core/terraform/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/terraform/apps.py -------------------------------------------------------------------------------- /zentral/core/terraform/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/core/terraform/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/terraform/models.py -------------------------------------------------------------------------------- /zentral/core/terraform/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/terraform/urls.py -------------------------------------------------------------------------------- /zentral/core/terraform/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/core/terraform/views.py -------------------------------------------------------------------------------- /zentral/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zentral/utils/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/api_views.py -------------------------------------------------------------------------------- /zentral/utils/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/apps.py -------------------------------------------------------------------------------- /zentral/utils/aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/aws.py -------------------------------------------------------------------------------- /zentral/utils/backend_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/backend_model.py -------------------------------------------------------------------------------- /zentral/utils/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/base64.py -------------------------------------------------------------------------------- /zentral/utils/boto3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/boto3.py -------------------------------------------------------------------------------- /zentral/utils/certificates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/certificates.py -------------------------------------------------------------------------------- /zentral/utils/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/color.py -------------------------------------------------------------------------------- /zentral/utils/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/db.py -------------------------------------------------------------------------------- /zentral/utils/dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/dict.py -------------------------------------------------------------------------------- /zentral/utils/drf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/drf.py -------------------------------------------------------------------------------- /zentral/utils/external_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/external_resources.py -------------------------------------------------------------------------------- /zentral/utils/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/forms.py -------------------------------------------------------------------------------- /zentral/utils/gcs_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/gcs_storage.py -------------------------------------------------------------------------------- /zentral/utils/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/http.py -------------------------------------------------------------------------------- /zentral/utils/iso_3166_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/iso_3166_1.py -------------------------------------------------------------------------------- /zentral/utils/iso_639_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/iso_639_1.py -------------------------------------------------------------------------------- /zentral/utils/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/json.py -------------------------------------------------------------------------------- /zentral/utils/leaky_bucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/leaky_bucket.py -------------------------------------------------------------------------------- /zentral/utils/local_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/local_dir.py -------------------------------------------------------------------------------- /zentral/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/logging.py -------------------------------------------------------------------------------- /zentral/utils/model_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/model_extras.py -------------------------------------------------------------------------------- /zentral/utils/mt_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/mt_models.py -------------------------------------------------------------------------------- /zentral/utils/os_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/os_version.py -------------------------------------------------------------------------------- /zentral/utils/osx_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/osx_package.py -------------------------------------------------------------------------------- /zentral/utils/passwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/passwords.py -------------------------------------------------------------------------------- /zentral/utils/payloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/payloads.py -------------------------------------------------------------------------------- /zentral/utils/prometheus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/prometheus.py -------------------------------------------------------------------------------- /zentral/utils/provisioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/provisioning.py -------------------------------------------------------------------------------- /zentral/utils/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/requests.py -------------------------------------------------------------------------------- /zentral/utils/rison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/rison.py -------------------------------------------------------------------------------- /zentral/utils/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/sql.py -------------------------------------------------------------------------------- /zentral/utils/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/ssl.py -------------------------------------------------------------------------------- /zentral/utils/statsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/statsd.py -------------------------------------------------------------------------------- /zentral/utils/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/storage.py -------------------------------------------------------------------------------- /zentral/utils/terraform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/terraform.py -------------------------------------------------------------------------------- /zentral/utils/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/text.py -------------------------------------------------------------------------------- /zentral/utils/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/time.py -------------------------------------------------------------------------------- /zentral/utils/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zentralopensource/zentral/HEAD/zentral/utils/views.py --------------------------------------------------------------------------------