├── .env ├── LICENSE ├── README.md ├── docker-compose.yml ├── docker ├── dev_certs │ ├── iris_dev_cert.pem │ └── iris_dev_key.pem └── nginx │ ├── Dockerfile │ ├── entrypoint.sh │ └── nginx.conf ├── grafana └── provisioning │ ├── dashboards │ ├── default.yaml │ └── docker.json │ └── datasources │ └── datasources.yaml ├── install_velocistack ├── intelowl ├── configuration │ ├── Kibana-Saved-Conf.ndjson │ ├── analyzer_config.json │ ├── connector_config.json │ ├── cyberchef_recipes.json │ ├── intel_owl.ini │ ├── ldap_config.py │ ├── nginx │ │ ├── django_server.conf │ │ ├── errors.conf │ │ ├── flower_http.conf │ │ ├── flower_https.conf │ │ ├── http.conf │ │ ├── https.conf │ │ └── locations.conf │ ├── radius_config.py │ └── service_account_keyfile_example.json └── docker │ ├── .env │ ├── .env.start.test.template │ ├── .version │ ├── Dockerfile │ ├── Dockerfile_nginx │ ├── ci.override.yml │ ├── default.yml │ ├── elasticsearch.override.yml │ ├── entrypoints │ ├── celery_beat.sh │ ├── celery_default.sh │ ├── celery_local.sh │ ├── celery_long.sh │ ├── flower.sh │ └── uwsgi.sh │ ├── env_file_app │ ├── env_file_app_ci │ ├── env_file_app_template │ ├── env_file_integrations │ ├── env_file_integrations_template │ ├── env_file_postgres │ ├── env_file_postgres_template │ ├── flower.override.yml │ ├── multi-queue.override.yml │ ├── scripts │ ├── coverage_test.sh │ ├── initdb.sh │ ├── manage.sh │ ├── tail-logs.sh │ ├── test_analyzers.sh │ └── watchman_install.sh │ ├── test.flower.override.yml │ ├── test.multi-queue.override.yml │ ├── test.override.yml │ └── traefik.override.yml ├── iris ├── CODESTYLE.md ├── CONFIGURATION.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── certificates │ ├── rootCA │ │ ├── irisRootCACert.pem │ │ ├── irisRootCACert.srl │ │ └── irisRootCAKey.pem │ └── web_certificates │ │ ├── iris_dev_cert.pem │ │ └── iris_dev_key.pem ├── deploy │ ├── eks_manifest │ │ ├── Makefile │ │ ├── README.md │ │ ├── admin │ │ │ ├── claim.yml │ │ │ ├── kustomization.yml │ │ │ ├── namespace.yml │ │ │ └── storageclass.yml │ │ ├── app │ │ │ ├── configmap.yml │ │ │ ├── deployment.yml │ │ │ ├── ingress.yml │ │ │ ├── kustomization.yml │ │ │ ├── secrets.yml │ │ │ └── service.yml │ │ ├── images │ │ │ ├── alb-dns.png │ │ │ ├── app-image-update.png │ │ │ ├── db-image-update.png │ │ │ ├── ingress.png │ │ │ └── worker-image-update.png │ │ ├── psql │ │ │ ├── deployment.yml │ │ │ ├── kustomization.yml │ │ │ ├── secrets.yml │ │ │ └── service.yml │ │ ├── rabbitmq │ │ │ ├── deployment.yml │ │ │ ├── kustomization.yml │ │ │ └── service.yml │ │ └── worker │ │ │ ├── configmap.yml │ │ │ ├── deployment.yml │ │ │ ├── kustomization.yml │ │ │ ├── secrets.yml │ │ │ └── service.yml │ └── kubernetes │ │ ├── Makefile │ │ ├── README.md │ │ ├── TODO.md │ │ └── charts │ │ ├── Chart.yaml │ │ ├── certificates │ │ ├── rootCA │ │ │ ├── irisRootCACert.pem │ │ │ ├── irisRootCACert.srl │ │ │ └── irisRootCAKey.pem │ │ └── web_certificates │ │ │ ├── iris_dev_cert.pem │ │ │ └── iris_dev_key.pem │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── iris_app.yaml │ │ ├── iris_worker.yaml │ │ ├── nginx_ingress.yaml │ │ ├── postgres.yaml │ │ └── rabbitmq.yaml │ │ └── values.yaml ├── docker-compose.yml ├── docker │ ├── db │ │ ├── Dockerfile │ │ └── create_user.sh │ ├── nginx │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ └── nginx.conf │ └── webApp │ │ ├── Dockerfile │ │ ├── iris-entrypoint.sh │ │ └── wait-for-iriswebapp.sh ├── img │ ├── demo_timeline.png │ └── timeline_speed.gif ├── scripts │ └── gunicorn-cfg.py ├── source │ ├── app │ │ ├── __init__.py │ │ ├── alembic.ini │ │ ├── alembic │ │ │ ├── README │ │ │ ├── alembic_utils.py │ │ │ ├── env.py │ │ │ ├── script.py.mako │ │ │ └── versions │ │ │ │ ├── 00b43bc4e8ac_add_prevent_post_init_to_register_case_.py │ │ │ │ ├── 0db700644a4f_add_tags_to_assets.py │ │ │ │ ├── 10a7616f3cc7_add_module_types.py │ │ │ │ ├── 11e066542a88_add_deletion_confirmation_option.py │ │ │ │ ├── 1df4adfa3160_add_customer_extended_fields.py │ │ │ │ ├── 20447ecb2245_objects_uuid_field.py │ │ │ │ ├── 20a9c0fd56e1_add_parent_event_in_events.py │ │ │ │ ├── 2604f6962838_add_case_state.py │ │ │ │ ├── 2a4a8330b908_adding_ioc_and_assets_enrichments.py │ │ │ │ ├── 2df770a4989c_add_objects_attributes.py │ │ │ │ ├── 3204e9116233_add_event_flag.py │ │ │ │ ├── 35c095f8be2b_case_templates_note_groups_to_.py │ │ │ │ ├── 3a4d4f15bd69_rename_opened_to_open.py │ │ │ │ ├── 4ecdfcb34f7c_add_compromise_status_to_assets.py │ │ │ │ ├── 50f28953a485_add_uniqueness_to_tags_table.py │ │ │ │ ├── 65168cb6cc90_reviewer_in_case.py │ │ │ │ ├── 6a3b3b627d45_add_ioc_type.py │ │ │ │ ├── 79a9a54e8f9d_add_server_settings_updates_info.py │ │ │ │ ├── 7cc588444b79_migrate_user_int_to_big_int.py │ │ │ │ ├── 874ba5e5da44_add_task_log_api_field.py │ │ │ │ ├── 875edc4adb40_migrate_task_assignee.py │ │ │ │ ├── 92ecbf0f6d10_add_user_external_id.py │ │ │ │ ├── 9e4947a207a6_add_modification_history_to_case_objects.py │ │ │ │ ├── a3eb60654ec4_add_cases_status.py │ │ │ │ ├── a929ef458490_add_activity_no_display_field.py │ │ │ │ ├── ad4e0cd17597_add_ioctype_validation.py │ │ │ │ ├── b664ca1203a4_add_dark_mode.py │ │ │ │ ├── c29ef01617f5_migrate_notes_directories.py │ │ │ │ ├── c773a35c280f_update_tasks_status.py │ │ │ │ ├── c832bd69f827_evidence_file_size_int_to_bigint.py │ │ │ │ ├── c959c298ca00_add_classification_history_closing_note_.py │ │ │ │ ├── ca93d4b54571_add_created_by_in_events.py │ │ │ │ ├── cd519d2d24df_password_policy_edition.py │ │ │ │ ├── d207b4d13385_add_severity_to_cases.py │ │ │ │ ├── d6c49c5435c2_add_evidence_type_to_evidences.py │ │ │ │ ├── db93d5c4c0aa_add_service_account_and_minibar_in_users.py │ │ │ │ ├── e0df2de997cc_add_namespace_to_tags.py │ │ │ │ ├── e33dd011fb87_resolution_status_in_alerts.py │ │ │ │ ├── f727badcc4e1_add_alert_in_comments.py │ │ │ │ ├── fcc375ed37d1_access_control_migration.py │ │ │ │ └── ff917e2ab02e_asset_type_custom_icons.py │ │ ├── blueprints │ │ │ ├── __init__.py │ │ │ ├── activities │ │ │ │ ├── __init__.py │ │ │ │ ├── activities_routes.py │ │ │ │ └── templates │ │ │ │ │ └── activities.html │ │ │ ├── alerts │ │ │ │ ├── __init__.py │ │ │ │ ├── alerts_routes.py │ │ │ │ └── templates │ │ │ │ │ ├── alerts.html │ │ │ │ │ ├── modal_enrichment.html │ │ │ │ │ ├── modal_escalate.html │ │ │ │ │ └── modal_new_alert_owner.html │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ └── api_routes.py │ │ │ ├── case │ │ │ │ ├── __init__.py │ │ │ │ ├── case_assets_routes.py │ │ │ │ ├── case_comments.py │ │ │ │ ├── case_graphs_routes.py │ │ │ │ ├── case_ioc_routes.py │ │ │ │ ├── case_notes_routes.py │ │ │ │ ├── case_rfiles_routes.py │ │ │ │ ├── case_routes.py │ │ │ │ ├── case_tasks_routes.py │ │ │ │ ├── case_timeline_routes.py │ │ │ │ └── templates │ │ │ │ │ ├── case-nav.html │ │ │ │ │ ├── case-nav_landing.html │ │ │ │ │ ├── case.html │ │ │ │ │ ├── case_assets.html │ │ │ │ │ ├── case_graph.html │ │ │ │ │ ├── case_graph_timeline.html │ │ │ │ │ ├── case_ioc.html │ │ │ │ │ ├── case_md_helper.html │ │ │ │ │ ├── case_notes_v2.html │ │ │ │ │ ├── case_rfile.html │ │ │ │ │ ├── case_tasks.html │ │ │ │ │ ├── case_timeline.html │ │ │ │ │ ├── modal_add_case_asset.html │ │ │ │ │ ├── modal_add_case_event.html │ │ │ │ │ ├── modal_add_case_ioc.html │ │ │ │ │ ├── modal_add_case_multi_asset.html │ │ │ │ │ ├── modal_add_case_rfile.html │ │ │ │ │ ├── modal_add_case_task.html │ │ │ │ │ ├── modal_add_graph_asset.html │ │ │ │ │ ├── modal_case_pipelines.html │ │ │ │ │ ├── modal_conversation.html │ │ │ │ │ ├── modal_help_filter_tm.html │ │ │ │ │ ├── modal_note_edit.html │ │ │ │ │ └── select_case.html │ │ │ ├── context │ │ │ │ ├── __init__.py │ │ │ │ └── context.py │ │ │ ├── dashboard │ │ │ │ ├── __init__.py │ │ │ │ ├── dashboard_routes.py │ │ │ │ └── templates │ │ │ │ │ ├── index.html │ │ │ │ │ └── modal_add_global_task.html │ │ │ ├── datastore │ │ │ │ ├── __init__.py │ │ │ │ ├── datastore_routes.py │ │ │ │ └── templates │ │ │ │ │ ├── modal_ds_file.html │ │ │ │ │ ├── modal_ds_file_info.html │ │ │ │ │ ├── modal_ds_multi_files.html │ │ │ │ │ └── modal_help_filter_ds.html │ │ │ ├── demo_landing │ │ │ │ ├── __init__.py │ │ │ │ ├── demo_landing.py │ │ │ │ └── templates │ │ │ │ │ └── demo-landing.html │ │ │ ├── dim_tasks │ │ │ │ ├── __init__.py │ │ │ │ ├── dim_tasks.py │ │ │ │ └── templates │ │ │ │ │ ├── dim_tasks.html │ │ │ │ │ └── modal_task_info.html │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ └── filters_routes.py │ │ │ ├── login │ │ │ │ ├── __init__.py │ │ │ │ ├── login_routes.py │ │ │ │ └── templates │ │ │ │ │ └── login.html │ │ │ ├── manage │ │ │ │ ├── __init__.py │ │ │ │ ├── manage_access_control.py │ │ │ │ ├── manage_alerts_status_routes.py │ │ │ │ ├── manage_analysis_status_routes.py │ │ │ │ ├── manage_assets.py │ │ │ │ ├── manage_assets_type_routes.py │ │ │ │ ├── manage_attributes_routes.py │ │ │ │ ├── manage_case_classifications.py │ │ │ │ ├── manage_case_state.py │ │ │ │ ├── manage_case_templates_routes.py │ │ │ │ ├── manage_cases_routes.py │ │ │ │ ├── manage_customers_routes.py │ │ │ │ ├── manage_event_categories_routes.py │ │ │ │ ├── manage_evidence_types_route.py │ │ │ │ ├── manage_groups.py │ │ │ │ ├── manage_ioc_types_routes.py │ │ │ │ ├── manage_modules_routes.py │ │ │ │ ├── manage_objects_routes.py │ │ │ │ ├── manage_severities_routes.py │ │ │ │ ├── manage_srv_settings_routes.py │ │ │ │ ├── manage_tags.py │ │ │ │ ├── manage_task_status_routes.py │ │ │ │ ├── manage_templates_routes.py │ │ │ │ ├── manage_tlps_routes.py │ │ │ │ ├── manage_users.py │ │ │ │ └── templates │ │ │ │ │ ├── access_control │ │ │ │ │ ├── manage_access-control.html │ │ │ │ │ ├── manage_user_audit.html │ │ │ │ │ ├── modal_add_group.html │ │ │ │ │ ├── modal_add_group_cac.html │ │ │ │ │ ├── modal_add_group_members.html │ │ │ │ │ ├── modal_add_user.html │ │ │ │ │ ├── modal_add_user_cac.html │ │ │ │ │ ├── modal_cac_to_groups.html │ │ │ │ │ ├── modal_case_audit.html │ │ │ │ │ ├── modal_manage_user_customers.html │ │ │ │ │ ├── modal_manage_user_groups.html │ │ │ │ │ └── modal_user_audit.html │ │ │ │ │ ├── manage_attributes.html │ │ │ │ │ ├── manage_case_templates.html │ │ │ │ │ ├── manage_cases.html │ │ │ │ │ ├── manage_customer_view.html │ │ │ │ │ ├── manage_customers.html │ │ │ │ │ ├── manage_make_update.html │ │ │ │ │ ├── manage_modules.html │ │ │ │ │ ├── manage_objects.html │ │ │ │ │ ├── manage_srv_settings.html │ │ │ │ │ ├── manage_templates.html │ │ │ │ │ ├── modal_add_asset_type.html │ │ │ │ │ ├── modal_add_attribute.html │ │ │ │ │ ├── modal_add_case.html │ │ │ │ │ ├── modal_add_customer.html │ │ │ │ │ ├── modal_add_ioc_type.html │ │ │ │ │ ├── modal_add_module.html │ │ │ │ │ ├── modal_add_report_template.html │ │ │ │ │ ├── modal_case_classification.html │ │ │ │ │ ├── modal_case_info_from_case.html │ │ │ │ │ ├── modal_case_state.html │ │ │ │ │ ├── modal_case_template.html │ │ │ │ │ ├── modal_customer_add_contact.html │ │ │ │ │ ├── modal_evidence_types.html │ │ │ │ │ ├── modal_module_info.html │ │ │ │ │ ├── modal_preview_attribute.html │ │ │ │ │ ├── modal_server_updates.html │ │ │ │ │ ├── modal_update_parameter.html │ │ │ │ │ └── modal_upload_case_template.html │ │ │ ├── overview │ │ │ │ ├── __init__.py │ │ │ │ ├── overview_routes.py │ │ │ │ └── templates │ │ │ │ │ └── overview.html │ │ │ ├── profile │ │ │ │ ├── __init__.py │ │ │ │ ├── profile_routes.py │ │ │ │ └── templates │ │ │ │ │ ├── modal_pwd_user.html │ │ │ │ │ └── profile.html │ │ │ ├── reports │ │ │ │ ├── __init__.py │ │ │ │ └── reports_route.py │ │ │ └── search │ │ │ │ ├── __init__.py │ │ │ │ ├── search_routes.py │ │ │ │ └── templates │ │ │ │ └── search.html │ │ ├── configuration.py │ │ ├── datamgmt │ │ │ ├── __init__.py │ │ │ ├── activities │ │ │ │ ├── __init__.py │ │ │ │ └── activities_db.py │ │ │ ├── alerts │ │ │ │ ├── __init__.py │ │ │ │ └── alerts_db.py │ │ │ ├── case │ │ │ │ ├── __init__.py │ │ │ │ ├── case_assets_db.py │ │ │ │ ├── case_comments.py │ │ │ │ ├── case_db.py │ │ │ │ ├── case_events_db.py │ │ │ │ ├── case_iocs_db.py │ │ │ │ ├── case_notes_db.py │ │ │ │ ├── case_rfiles_db.py │ │ │ │ └── case_tasks_db.py │ │ │ ├── client │ │ │ │ ├── __init__.py │ │ │ │ └── client_db.py │ │ │ ├── context │ │ │ │ ├── __init__.py │ │ │ │ └── context_db.py │ │ │ ├── dashboard │ │ │ │ ├── __init__.py │ │ │ │ └── dashboard_db.py │ │ │ ├── datastore │ │ │ │ ├── __init__.py │ │ │ │ └── datastore_db.py │ │ │ ├── exceptions │ │ │ │ ├── ElementExceptions.py │ │ │ │ └── __init__.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ └── filters_db.py │ │ │ ├── iris_engine │ │ │ │ ├── __init__.py │ │ │ │ ├── evidence_storage.py │ │ │ │ └── modules_db.py │ │ │ ├── manage │ │ │ │ ├── __init__.py │ │ │ │ ├── manage_access_control_db.py │ │ │ │ ├── manage_assets_db.py │ │ │ │ ├── manage_attribute_db.py │ │ │ │ ├── manage_case_classifications_db.py │ │ │ │ ├── manage_case_objs.py │ │ │ │ ├── manage_case_state_db.py │ │ │ │ ├── manage_case_templates_db.py │ │ │ │ ├── manage_cases_db.py │ │ │ │ ├── manage_common.py │ │ │ │ ├── manage_evidence_types_db.py │ │ │ │ ├── manage_groups_db.py │ │ │ │ ├── manage_srv_settings_db.py │ │ │ │ ├── manage_tags_db.py │ │ │ │ └── manage_users_db.py │ │ │ ├── overview │ │ │ │ ├── __init__.py │ │ │ │ └── overview_db.py │ │ │ ├── reporter │ │ │ │ ├── __init__.py │ │ │ │ └── report_db.py │ │ │ └── states.py │ │ ├── flask_dropzone │ │ │ ├── __init__.py │ │ │ ├── static │ │ │ │ ├── dropzone.min.css │ │ │ │ └── dropzone.min.js │ │ │ └── utils.py │ │ ├── forms.py │ │ ├── iris_engine │ │ │ ├── __init__.py │ │ │ ├── access_control │ │ │ │ ├── __init__.py │ │ │ │ ├── ldap_handler.py │ │ │ │ └── utils.py │ │ │ ├── backup │ │ │ │ ├── __init__.py │ │ │ │ └── backup.py │ │ │ ├── demo_builder.py │ │ │ ├── module_handler │ │ │ │ ├── __init__.py │ │ │ │ └── module_handler.py │ │ │ ├── reporter │ │ │ │ ├── ImageHandler.py │ │ │ │ ├── __init__.py │ │ │ │ └── reporter.py │ │ │ ├── tasker │ │ │ │ ├── __init__.py │ │ │ │ ├── celery.py │ │ │ │ └── tasks.py │ │ │ ├── updater │ │ │ │ ├── __init__.py │ │ │ │ └── updater.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── collab.py │ │ │ │ ├── common.py │ │ │ │ └── tracker.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── alerts.py │ │ │ ├── authorization.py │ │ │ ├── cases.py │ │ │ └── models.py │ │ ├── post_init.py │ │ ├── resources │ │ │ └── misp.classification.taxonomy.json │ │ ├── schema │ │ │ ├── __init__.py │ │ │ └── marshables.py │ │ ├── static │ │ │ └── assets │ │ │ │ ├── css │ │ │ │ ├── alerts.css │ │ │ │ ├── atlantis.css │ │ │ │ ├── atlantis.css.map │ │ │ │ ├── atlantis.min.css │ │ │ │ ├── bootstrap-datetime.css │ │ │ │ ├── bootstrap-multiselect.min.css │ │ │ │ ├── bootstrap-select.css.map │ │ │ │ ├── bootstrap-select.min.css │ │ │ │ ├── bootstrap-slider.min.css │ │ │ │ ├── bootstrap-tagsinput.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── case.css │ │ │ │ ├── dark-theme.css │ │ │ │ ├── dataTables.buttons.min.css │ │ │ │ ├── dataTables.contextualActions.min.css │ │ │ │ ├── dataTables.group.min.css │ │ │ │ ├── dataTables.responsive.css │ │ │ │ ├── dataTables.searchBuilder.css │ │ │ │ ├── dataTables.select.min.css │ │ │ │ ├── demo.css │ │ │ │ ├── dropzone.css │ │ │ │ ├── fa.css │ │ │ │ ├── fonts.css │ │ │ │ ├── fonts.min.css │ │ │ │ ├── icons │ │ │ │ │ ├── tl-icons.ttf │ │ │ │ │ ├── tl-icons.woff │ │ │ │ │ └── tl-icons.woff2 │ │ │ │ ├── latos.css │ │ │ │ ├── login │ │ │ │ │ └── login.css │ │ │ │ ├── select2.css │ │ │ │ ├── suggestags.css │ │ │ │ ├── tags.css │ │ │ │ ├── timeline.css │ │ │ │ ├── vis.graph.css │ │ │ │ └── vis.min.css │ │ │ │ ├── fonts │ │ │ │ ├── flaticon │ │ │ │ │ ├── Flaticon.eot │ │ │ │ │ ├── Flaticon.svg │ │ │ │ │ ├── Flaticon.ttf │ │ │ │ │ ├── Flaticon.woff │ │ │ │ │ ├── _flaticon.scss │ │ │ │ │ ├── flaticon.css │ │ │ │ │ └── flaticon.html │ │ │ │ ├── fontawesome │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ │ └── fa-v4compatibility.woff2 │ │ │ │ ├── lato │ │ │ │ │ ├── Lato-Black.ttf │ │ │ │ │ ├── Lato-BlackItalic.ttf │ │ │ │ │ ├── Lato-Bold.ttf │ │ │ │ │ ├── Lato-BoldItalic.ttf │ │ │ │ │ ├── Lato-Italic.ttf │ │ │ │ │ ├── Lato-Light.ttf │ │ │ │ │ ├── Lato-LightItalic.ttf │ │ │ │ │ ├── Lato-Regular.ttf │ │ │ │ │ ├── Lato-Thin.ttf │ │ │ │ │ ├── Lato-ThinItalic.ttf │ │ │ │ │ └── OFL.txt │ │ │ │ ├── simple-line-icons │ │ │ │ │ ├── Simple-Line-Icons.eot │ │ │ │ │ ├── Simple-Line-Icons.svg │ │ │ │ │ ├── Simple-Line-Icons.ttf │ │ │ │ │ ├── Simple-Line-Icons.woff │ │ │ │ │ └── Simple-Line-Icons.woff2 │ │ │ │ └── summernote │ │ │ │ │ ├── summernote.eot │ │ │ │ │ ├── summernote.ttf │ │ │ │ │ └── summernote.woff │ │ │ │ ├── img │ │ │ │ ├── graph │ │ │ │ │ ├── bell-solid.png │ │ │ │ │ ├── briefcase.png │ │ │ │ │ ├── desktop.png │ │ │ │ │ ├── firewall.png │ │ │ │ │ ├── ioc_desktop.png │ │ │ │ │ ├── ioc_firewall.png │ │ │ │ │ ├── ioc_phone.png │ │ │ │ │ ├── ioc_question-mark.png │ │ │ │ │ ├── ioc_router.png │ │ │ │ │ ├── ioc_server.png │ │ │ │ │ ├── ioc_switch.png │ │ │ │ │ ├── ioc_user.png │ │ │ │ │ ├── ioc_vpn.png │ │ │ │ │ ├── ioc_wifi.png │ │ │ │ │ ├── ioc_windows_desktop.png │ │ │ │ │ ├── ioc_windows_server.png │ │ │ │ │ ├── phone.png │ │ │ │ │ ├── question-mark.png │ │ │ │ │ ├── router.png │ │ │ │ │ ├── server.png │ │ │ │ │ ├── switch.png │ │ │ │ │ ├── user.png │ │ │ │ │ ├── virus-covid-solid.png │ │ │ │ │ ├── vpn.png │ │ │ │ │ ├── wifi.png │ │ │ │ │ ├── windows_desktop.png │ │ │ │ │ └── windows_server.png │ │ │ │ ├── iris_logo-black.png │ │ │ │ ├── loader.gif │ │ │ │ ├── loader_cubes.gif │ │ │ │ ├── logo-alone-2-black.png │ │ │ │ ├── logo-alone-2-blue.png │ │ │ │ ├── logo-alone-2.png │ │ │ │ ├── logo-full-blue.png │ │ │ │ ├── logo-white-2.png │ │ │ │ ├── logo-white.png │ │ │ │ ├── logo.ico │ │ │ │ └── profile.jpg │ │ │ │ ├── js │ │ │ │ ├── atlantis.min.js │ │ │ │ ├── core │ │ │ │ │ ├── bootstrap-datetimepicker.min.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── charts.js │ │ │ │ │ ├── crypto.core.js │ │ │ │ │ ├── crypto.md5.js │ │ │ │ │ ├── jquery.3.2.1.min.js │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ ├── moments.min.js │ │ │ │ │ ├── popper.min.js │ │ │ │ │ └── socket.io.js │ │ │ │ ├── iris │ │ │ │ │ ├── activities.js │ │ │ │ │ ├── alerts.js │ │ │ │ │ ├── case.asset.js │ │ │ │ │ ├── case.common.js │ │ │ │ │ ├── case.graph.js │ │ │ │ │ ├── case.ioc.js │ │ │ │ │ ├── case.js │ │ │ │ │ ├── case.notes.js │ │ │ │ │ ├── case.pipelines.js │ │ │ │ │ ├── case.rfiles.js │ │ │ │ │ ├── case.summary.js │ │ │ │ │ ├── case.tasks.js │ │ │ │ │ ├── case.timeline.js │ │ │ │ │ ├── case.timeline.visu.js │ │ │ │ │ ├── comments.js │ │ │ │ │ ├── common.js │ │ │ │ │ ├── crc32.js │ │ │ │ │ ├── dashboard.js │ │ │ │ │ ├── datastore.js │ │ │ │ │ ├── datatablesUtils.js │ │ │ │ │ ├── dim_tasks.js │ │ │ │ │ ├── manage.attributes.js │ │ │ │ │ ├── manage.audit.cases.js │ │ │ │ │ ├── manage.audit.users.js │ │ │ │ │ ├── manage.case.templates.js │ │ │ │ │ ├── manage.cases.common.js │ │ │ │ │ ├── manage.cases.js │ │ │ │ │ ├── manage.customers.js │ │ │ │ │ ├── manage.groups.js │ │ │ │ │ ├── manage.modules.js │ │ │ │ │ ├── manage.objects.js │ │ │ │ │ ├── manage.server.settings.js │ │ │ │ │ ├── manage.templates.js │ │ │ │ │ ├── manage.users.js │ │ │ │ │ ├── overview.js │ │ │ │ │ ├── search.js │ │ │ │ │ ├── updates.handler.js │ │ │ │ │ ├── user.js │ │ │ │ │ └── view.customers.js │ │ │ │ ├── landing │ │ │ │ │ └── demo-landing.js │ │ │ │ ├── plugin │ │ │ │ │ ├── ace │ │ │ │ │ │ └── src-noconflict │ │ │ │ │ │ │ ├── ace.js │ │ │ │ │ │ │ ├── ext-beautify.js │ │ │ │ │ │ │ ├── ext-code_lens.js │ │ │ │ │ │ │ ├── ext-elastic_tabstops_lite.js │ │ │ │ │ │ │ ├── ext-emmet.js │ │ │ │ │ │ │ ├── ext-error_marker.js │ │ │ │ │ │ │ ├── ext-keybinding_menu.js │ │ │ │ │ │ │ ├── ext-language_tools.js │ │ │ │ │ │ │ ├── ext-linking.js │ │ │ │ │ │ │ ├── ext-modelist.js │ │ │ │ │ │ │ ├── ext-options.js │ │ │ │ │ │ │ ├── ext-prompt.js │ │ │ │ │ │ │ ├── ext-rtl.js │ │ │ │ │ │ │ ├── ext-searchbox.js │ │ │ │ │ │ │ ├── ext-settings_menu.js │ │ │ │ │ │ │ ├── ext-spellcheck.js │ │ │ │ │ │ │ ├── ext-split.js │ │ │ │ │ │ │ ├── ext-static_highlight.js │ │ │ │ │ │ │ ├── ext-statusbar.js │ │ │ │ │ │ │ ├── ext-textarea.js │ │ │ │ │ │ │ ├── ext-themelist.js │ │ │ │ │ │ │ ├── ext-whitespace.js │ │ │ │ │ │ │ ├── keybinding-emacs.js │ │ │ │ │ │ │ ├── keybinding-sublime.js │ │ │ │ │ │ │ ├── keybinding-vim.js │ │ │ │ │ │ │ ├── keybinding-vscode.js │ │ │ │ │ │ │ ├── mode-abap.js │ │ │ │ │ │ │ ├── mode-abc.js │ │ │ │ │ │ │ ├── mode-actionscript.js │ │ │ │ │ │ │ ├── mode-ada.js │ │ │ │ │ │ │ ├── mode-alda.js │ │ │ │ │ │ │ ├── mode-apache_conf.js │ │ │ │ │ │ │ ├── mode-apex.js │ │ │ │ │ │ │ ├── mode-applescript.js │ │ │ │ │ │ │ ├── mode-aql.js │ │ │ │ │ │ │ ├── mode-asciidoc.js │ │ │ │ │ │ │ ├── mode-asl.js │ │ │ │ │ │ │ ├── mode-assembly_x86.js │ │ │ │ │ │ │ ├── mode-autohotkey.js │ │ │ │ │ │ │ ├── mode-batchfile.js │ │ │ │ │ │ │ ├── mode-bro.js │ │ │ │ │ │ │ ├── mode-c9search.js │ │ │ │ │ │ │ ├── mode-c_cpp.js │ │ │ │ │ │ │ ├── mode-cirru.js │ │ │ │ │ │ │ ├── mode-clojure.js │ │ │ │ │ │ │ ├── mode-cobol.js │ │ │ │ │ │ │ ├── mode-coffee.js │ │ │ │ │ │ │ ├── mode-coldfusion.js │ │ │ │ │ │ │ ├── mode-crystal.js │ │ │ │ │ │ │ ├── mode-csharp.js │ │ │ │ │ │ │ ├── mode-csound_document.js │ │ │ │ │ │ │ ├── mode-csound_orchestra.js │ │ │ │ │ │ │ ├── mode-csound_score.js │ │ │ │ │ │ │ ├── mode-csp.js │ │ │ │ │ │ │ ├── mode-css.js │ │ │ │ │ │ │ ├── mode-curly.js │ │ │ │ │ │ │ ├── mode-d.js │ │ │ │ │ │ │ ├── mode-dart.js │ │ │ │ │ │ │ ├── mode-diff.js │ │ │ │ │ │ │ ├── mode-django.js │ │ │ │ │ │ │ ├── mode-dockerfile.js │ │ │ │ │ │ │ ├── mode-dot.js │ │ │ │ │ │ │ ├── mode-drools.js │ │ │ │ │ │ │ ├── mode-edifact.js │ │ │ │ │ │ │ ├── mode-eiffel.js │ │ │ │ │ │ │ ├── mode-ejs.js │ │ │ │ │ │ │ ├── mode-elixir.js │ │ │ │ │ │ │ ├── mode-elm.js │ │ │ │ │ │ │ ├── mode-erlang.js │ │ │ │ │ │ │ ├── mode-forth.js │ │ │ │ │ │ │ ├── mode-fortran.js │ │ │ │ │ │ │ ├── mode-fsharp.js │ │ │ │ │ │ │ ├── mode-fsl.js │ │ │ │ │ │ │ ├── mode-ftl.js │ │ │ │ │ │ │ ├── mode-gcode.js │ │ │ │ │ │ │ ├── mode-gherkin.js │ │ │ │ │ │ │ ├── mode-gitignore.js │ │ │ │ │ │ │ ├── mode-glsl.js │ │ │ │ │ │ │ ├── mode-gobstones.js │ │ │ │ │ │ │ ├── mode-golang.js │ │ │ │ │ │ │ ├── mode-graphqlschema.js │ │ │ │ │ │ │ ├── mode-groovy.js │ │ │ │ │ │ │ ├── mode-haml.js │ │ │ │ │ │ │ ├── mode-handlebars.js │ │ │ │ │ │ │ ├── mode-haskell.js │ │ │ │ │ │ │ ├── mode-haskell_cabal.js │ │ │ │ │ │ │ ├── mode-haxe.js │ │ │ │ │ │ │ ├── mode-hjson.js │ │ │ │ │ │ │ ├── mode-html.js │ │ │ │ │ │ │ ├── mode-html_elixir.js │ │ │ │ │ │ │ ├── mode-html_ruby.js │ │ │ │ │ │ │ ├── mode-ini.js │ │ │ │ │ │ │ ├── mode-io.js │ │ │ │ │ │ │ ├── mode-jack.js │ │ │ │ │ │ │ ├── mode-jade.js │ │ │ │ │ │ │ ├── mode-java.js │ │ │ │ │ │ │ ├── mode-javascript.js │ │ │ │ │ │ │ ├── mode-json.js │ │ │ │ │ │ │ ├── mode-json5.js │ │ │ │ │ │ │ ├── mode-jsoniq.js │ │ │ │ │ │ │ ├── mode-jsp.js │ │ │ │ │ │ │ ├── mode-jssm.js │ │ │ │ │ │ │ ├── mode-jsx.js │ │ │ │ │ │ │ ├── mode-julia.js │ │ │ │ │ │ │ ├── mode-kotlin.js │ │ │ │ │ │ │ ├── mode-latex.js │ │ │ │ │ │ │ ├── mode-less.js │ │ │ │ │ │ │ ├── mode-liquid.js │ │ │ │ │ │ │ ├── mode-lisp.js │ │ │ │ │ │ │ ├── mode-livescript.js │ │ │ │ │ │ │ ├── mode-logiql.js │ │ │ │ │ │ │ ├── mode-logtalk.js │ │ │ │ │ │ │ ├── mode-lsl.js │ │ │ │ │ │ │ ├── mode-lua.js │ │ │ │ │ │ │ ├── mode-luapage.js │ │ │ │ │ │ │ ├── mode-lucene.js │ │ │ │ │ │ │ ├── mode-makefile.js │ │ │ │ │ │ │ ├── mode-markdown.js │ │ │ │ │ │ │ ├── mode-mask.js │ │ │ │ │ │ │ ├── mode-matlab.js │ │ │ │ │ │ │ ├── mode-maze.js │ │ │ │ │ │ │ ├── mode-mediawiki.js │ │ │ │ │ │ │ ├── mode-mel.js │ │ │ │ │ │ │ ├── mode-mixal.js │ │ │ │ │ │ │ ├── mode-mushcode.js │ │ │ │ │ │ │ ├── mode-mysql.js │ │ │ │ │ │ │ ├── mode-nginx.js │ │ │ │ │ │ │ ├── mode-nim.js │ │ │ │ │ │ │ ├── mode-nix.js │ │ │ │ │ │ │ ├── mode-nsis.js │ │ │ │ │ │ │ ├── mode-nunjucks.js │ │ │ │ │ │ │ ├── mode-objectivec.js │ │ │ │ │ │ │ ├── mode-ocaml.js │ │ │ │ │ │ │ ├── mode-pascal.js │ │ │ │ │ │ │ ├── mode-perl.js │ │ │ │ │ │ │ ├── mode-perl6.js │ │ │ │ │ │ │ ├── mode-pgsql.js │ │ │ │ │ │ │ ├── mode-php.js │ │ │ │ │ │ │ ├── mode-php_laravel_blade.js │ │ │ │ │ │ │ ├── mode-pig.js │ │ │ │ │ │ │ ├── mode-plain_text.js │ │ │ │ │ │ │ ├── mode-powershell.js │ │ │ │ │ │ │ ├── mode-praat.js │ │ │ │ │ │ │ ├── mode-prisma.js │ │ │ │ │ │ │ ├── mode-prolog.js │ │ │ │ │ │ │ ├── mode-properties.js │ │ │ │ │ │ │ ├── mode-protobuf.js │ │ │ │ │ │ │ ├── mode-puppet.js │ │ │ │ │ │ │ ├── mode-python.js │ │ │ │ │ │ │ ├── mode-qml.js │ │ │ │ │ │ │ ├── mode-r.js │ │ │ │ │ │ │ ├── mode-razor.js │ │ │ │ │ │ │ ├── mode-rdoc.js │ │ │ │ │ │ │ ├── mode-red.js │ │ │ │ │ │ │ ├── mode-redshift.js │ │ │ │ │ │ │ ├── mode-rhtml.js │ │ │ │ │ │ │ ├── mode-rst.js │ │ │ │ │ │ │ ├── mode-ruby.js │ │ │ │ │ │ │ ├── mode-rust.js │ │ │ │ │ │ │ ├── mode-sass.js │ │ │ │ │ │ │ ├── mode-scad.js │ │ │ │ │ │ │ ├── mode-scala.js │ │ │ │ │ │ │ ├── mode-scheme.js │ │ │ │ │ │ │ ├── mode-scss.js │ │ │ │ │ │ │ ├── mode-sh.js │ │ │ │ │ │ │ ├── mode-sjs.js │ │ │ │ │ │ │ ├── mode-slim.js │ │ │ │ │ │ │ ├── mode-smarty.js │ │ │ │ │ │ │ ├── mode-snippets.js │ │ │ │ │ │ │ ├── mode-soy_template.js │ │ │ │ │ │ │ ├── mode-space.js │ │ │ │ │ │ │ ├── mode-sparql.js │ │ │ │ │ │ │ ├── mode-sql.js │ │ │ │ │ │ │ ├── mode-sqlserver.js │ │ │ │ │ │ │ ├── mode-stylus.js │ │ │ │ │ │ │ ├── mode-svg.js │ │ │ │ │ │ │ ├── mode-swift.js │ │ │ │ │ │ │ ├── mode-tcl.js │ │ │ │ │ │ │ ├── mode-terraform.js │ │ │ │ │ │ │ ├── mode-tex.js │ │ │ │ │ │ │ ├── mode-text.js │ │ │ │ │ │ │ ├── mode-textile.js │ │ │ │ │ │ │ ├── mode-toml.js │ │ │ │ │ │ │ ├── mode-tsx.js │ │ │ │ │ │ │ ├── mode-turtle.js │ │ │ │ │ │ │ ├── mode-twig.js │ │ │ │ │ │ │ ├── mode-typescript.js │ │ │ │ │ │ │ ├── mode-vala.js │ │ │ │ │ │ │ ├── mode-vbscript.js │ │ │ │ │ │ │ ├── mode-velocity.js │ │ │ │ │ │ │ ├── mode-verilog.js │ │ │ │ │ │ │ ├── mode-vhdl.js │ │ │ │ │ │ │ ├── mode-visualforce.js │ │ │ │ │ │ │ ├── mode-wollok.js │ │ │ │ │ │ │ ├── mode-xml.js │ │ │ │ │ │ │ ├── mode-xquery.js │ │ │ │ │ │ │ ├── mode-yaml.js │ │ │ │ │ │ │ ├── mode-zeek.js │ │ │ │ │ │ │ ├── snippets │ │ │ │ │ │ │ ├── abap.js │ │ │ │ │ │ │ ├── abc.js │ │ │ │ │ │ │ ├── actionscript.js │ │ │ │ │ │ │ ├── ada.js │ │ │ │ │ │ │ ├── alda.js │ │ │ │ │ │ │ ├── apache_conf.js │ │ │ │ │ │ │ ├── apex.js │ │ │ │ │ │ │ ├── applescript.js │ │ │ │ │ │ │ ├── aql.js │ │ │ │ │ │ │ ├── asciidoc.js │ │ │ │ │ │ │ ├── asl.js │ │ │ │ │ │ │ ├── assembly_x86.js │ │ │ │ │ │ │ ├── autohotkey.js │ │ │ │ │ │ │ ├── batchfile.js │ │ │ │ │ │ │ ├── bro.js │ │ │ │ │ │ │ ├── c9search.js │ │ │ │ │ │ │ ├── c_cpp.js │ │ │ │ │ │ │ ├── cirru.js │ │ │ │ │ │ │ ├── clojure.js │ │ │ │ │ │ │ ├── cobol.js │ │ │ │ │ │ │ ├── coffee.js │ │ │ │ │ │ │ ├── coldfusion.js │ │ │ │ │ │ │ ├── crystal.js │ │ │ │ │ │ │ ├── csharp.js │ │ │ │ │ │ │ ├── csound_document.js │ │ │ │ │ │ │ ├── csound_orchestra.js │ │ │ │ │ │ │ ├── csound_score.js │ │ │ │ │ │ │ ├── csp.js │ │ │ │ │ │ │ ├── css.js │ │ │ │ │ │ │ ├── curly.js │ │ │ │ │ │ │ ├── d.js │ │ │ │ │ │ │ ├── dart.js │ │ │ │ │ │ │ ├── diff.js │ │ │ │ │ │ │ ├── django.js │ │ │ │ │ │ │ ├── dockerfile.js │ │ │ │ │ │ │ ├── dot.js │ │ │ │ │ │ │ ├── drools.js │ │ │ │ │ │ │ ├── edifact.js │ │ │ │ │ │ │ ├── eiffel.js │ │ │ │ │ │ │ ├── ejs.js │ │ │ │ │ │ │ ├── elixir.js │ │ │ │ │ │ │ ├── elm.js │ │ │ │ │ │ │ ├── erlang.js │ │ │ │ │ │ │ ├── forth.js │ │ │ │ │ │ │ ├── fortran.js │ │ │ │ │ │ │ ├── fsharp.js │ │ │ │ │ │ │ ├── fsl.js │ │ │ │ │ │ │ ├── ftl.js │ │ │ │ │ │ │ ├── gcode.js │ │ │ │ │ │ │ ├── gherkin.js │ │ │ │ │ │ │ ├── gitignore.js │ │ │ │ │ │ │ ├── glsl.js │ │ │ │ │ │ │ ├── gobstones.js │ │ │ │ │ │ │ ├── golang.js │ │ │ │ │ │ │ ├── graphqlschema.js │ │ │ │ │ │ │ ├── groovy.js │ │ │ │ │ │ │ ├── haml.js │ │ │ │ │ │ │ ├── handlebars.js │ │ │ │ │ │ │ ├── haskell.js │ │ │ │ │ │ │ ├── haskell_cabal.js │ │ │ │ │ │ │ ├── haxe.js │ │ │ │ │ │ │ ├── hjson.js │ │ │ │ │ │ │ ├── html.js │ │ │ │ │ │ │ ├── html_elixir.js │ │ │ │ │ │ │ ├── html_ruby.js │ │ │ │ │ │ │ ├── ini.js │ │ │ │ │ │ │ ├── io.js │ │ │ │ │ │ │ ├── jack.js │ │ │ │ │ │ │ ├── jade.js │ │ │ │ │ │ │ ├── java.js │ │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ │ ├── json.js │ │ │ │ │ │ │ ├── json5.js │ │ │ │ │ │ │ ├── jsoniq.js │ │ │ │ │ │ │ ├── jsp.js │ │ │ │ │ │ │ ├── jssm.js │ │ │ │ │ │ │ ├── jsx.js │ │ │ │ │ │ │ ├── julia.js │ │ │ │ │ │ │ ├── kotlin.js │ │ │ │ │ │ │ ├── latex.js │ │ │ │ │ │ │ ├── less.js │ │ │ │ │ │ │ ├── liquid.js │ │ │ │ │ │ │ ├── lisp.js │ │ │ │ │ │ │ ├── livescript.js │ │ │ │ │ │ │ ├── logiql.js │ │ │ │ │ │ │ ├── logtalk.js │ │ │ │ │ │ │ ├── lsl.js │ │ │ │ │ │ │ ├── lua.js │ │ │ │ │ │ │ ├── luapage.js │ │ │ │ │ │ │ ├── lucene.js │ │ │ │ │ │ │ ├── makefile.js │ │ │ │ │ │ │ ├── markdown.js │ │ │ │ │ │ │ ├── mask.js │ │ │ │ │ │ │ ├── matlab.js │ │ │ │ │ │ │ ├── maze.js │ │ │ │ │ │ │ ├── mediawiki.js │ │ │ │ │ │ │ ├── mel.js │ │ │ │ │ │ │ ├── mixal.js │ │ │ │ │ │ │ ├── mushcode.js │ │ │ │ │ │ │ ├── mysql.js │ │ │ │ │ │ │ ├── nginx.js │ │ │ │ │ │ │ ├── nim.js │ │ │ │ │ │ │ ├── nix.js │ │ │ │ │ │ │ ├── nsis.js │ │ │ │ │ │ │ ├── nunjucks.js │ │ │ │ │ │ │ ├── objectivec.js │ │ │ │ │ │ │ ├── ocaml.js │ │ │ │ │ │ │ ├── pascal.js │ │ │ │ │ │ │ ├── perl.js │ │ │ │ │ │ │ ├── perl6.js │ │ │ │ │ │ │ ├── pgsql.js │ │ │ │ │ │ │ ├── php.js │ │ │ │ │ │ │ ├── php_laravel_blade.js │ │ │ │ │ │ │ ├── pig.js │ │ │ │ │ │ │ ├── plain_text.js │ │ │ │ │ │ │ ├── powershell.js │ │ │ │ │ │ │ ├── praat.js │ │ │ │ │ │ │ ├── prisma.js │ │ │ │ │ │ │ ├── prolog.js │ │ │ │ │ │ │ ├── properties.js │ │ │ │ │ │ │ ├── protobuf.js │ │ │ │ │ │ │ ├── puppet.js │ │ │ │ │ │ │ ├── python.js │ │ │ │ │ │ │ ├── qml.js │ │ │ │ │ │ │ ├── r.js │ │ │ │ │ │ │ ├── razor.js │ │ │ │ │ │ │ ├── rdoc.js │ │ │ │ │ │ │ ├── red.js │ │ │ │ │ │ │ ├── redshift.js │ │ │ │ │ │ │ ├── rhtml.js │ │ │ │ │ │ │ ├── rst.js │ │ │ │ │ │ │ ├── ruby.js │ │ │ │ │ │ │ ├── rust.js │ │ │ │ │ │ │ ├── sass.js │ │ │ │ │ │ │ ├── scad.js │ │ │ │ │ │ │ ├── scala.js │ │ │ │ │ │ │ ├── scheme.js │ │ │ │ │ │ │ ├── scss.js │ │ │ │ │ │ │ ├── sh.js │ │ │ │ │ │ │ ├── sjs.js │ │ │ │ │ │ │ ├── slim.js │ │ │ │ │ │ │ ├── smarty.js │ │ │ │ │ │ │ ├── snippets.js │ │ │ │ │ │ │ ├── soy_template.js │ │ │ │ │ │ │ ├── space.js │ │ │ │ │ │ │ ├── sparql.js │ │ │ │ │ │ │ ├── sql.js │ │ │ │ │ │ │ ├── sqlserver.js │ │ │ │ │ │ │ ├── stylus.js │ │ │ │ │ │ │ ├── svg.js │ │ │ │ │ │ │ ├── swift.js │ │ │ │ │ │ │ ├── tcl.js │ │ │ │ │ │ │ ├── terraform.js │ │ │ │ │ │ │ ├── tex.js │ │ │ │ │ │ │ ├── text.js │ │ │ │ │ │ │ ├── textile.js │ │ │ │ │ │ │ ├── toml.js │ │ │ │ │ │ │ ├── tsx.js │ │ │ │ │ │ │ ├── turtle.js │ │ │ │ │ │ │ ├── twig.js │ │ │ │ │ │ │ ├── typescript.js │ │ │ │ │ │ │ ├── vala.js │ │ │ │ │ │ │ ├── vbscript.js │ │ │ │ │ │ │ ├── velocity.js │ │ │ │ │ │ │ ├── verilog.js │ │ │ │ │ │ │ ├── vhdl.js │ │ │ │ │ │ │ ├── visualforce.js │ │ │ │ │ │ │ ├── wollok.js │ │ │ │ │ │ │ ├── xml.js │ │ │ │ │ │ │ ├── xquery.js │ │ │ │ │ │ │ ├── yaml.js │ │ │ │ │ │ │ └── zeek.js │ │ │ │ │ │ │ ├── theme-ambiance.js │ │ │ │ │ │ │ ├── theme-chaos.js │ │ │ │ │ │ │ ├── theme-chrome.js │ │ │ │ │ │ │ ├── theme-clouds.js │ │ │ │ │ │ │ ├── theme-clouds_midnight.js │ │ │ │ │ │ │ ├── theme-cobalt.js │ │ │ │ │ │ │ ├── theme-crimson_editor.js │ │ │ │ │ │ │ ├── theme-dawn.js │ │ │ │ │ │ │ ├── theme-dracula.js │ │ │ │ │ │ │ ├── theme-dreamweaver.js │ │ │ │ │ │ │ ├── theme-eclipse.js │ │ │ │ │ │ │ ├── theme-github.js │ │ │ │ │ │ │ ├── theme-gob.js │ │ │ │ │ │ │ ├── theme-gruvbox.js │ │ │ │ │ │ │ ├── theme-idle_fingers.js │ │ │ │ │ │ │ ├── theme-iplastic.js │ │ │ │ │ │ │ ├── theme-iris_night.js │ │ │ │ │ │ │ ├── theme-katzenmilch.js │ │ │ │ │ │ │ ├── theme-kr_theme.js │ │ │ │ │ │ │ ├── theme-kuroir.js │ │ │ │ │ │ │ ├── theme-merbivore.js │ │ │ │ │ │ │ ├── theme-merbivore_soft.js │ │ │ │ │ │ │ ├── theme-mono_industrial.js │ │ │ │ │ │ │ ├── theme-monokai.js │ │ │ │ │ │ │ ├── theme-nord_dark.js │ │ │ │ │ │ │ ├── theme-pastel_on_dark.js │ │ │ │ │ │ │ ├── theme-solarized_dark.js │ │ │ │ │ │ │ ├── theme-solarized_light.js │ │ │ │ │ │ │ ├── theme-sqlserver.js │ │ │ │ │ │ │ ├── theme-terminal.js │ │ │ │ │ │ │ ├── theme-textmate.js │ │ │ │ │ │ │ ├── theme-tomorrow.js │ │ │ │ │ │ │ ├── theme-tomorrow_night.js │ │ │ │ │ │ │ ├── theme-tomorrow_night_blue.js │ │ │ │ │ │ │ ├── theme-tomorrow_night_bright.js │ │ │ │ │ │ │ ├── theme-tomorrow_night_eighties.js │ │ │ │ │ │ │ ├── theme-twilight.js │ │ │ │ │ │ │ ├── theme-vibrant_ink.js │ │ │ │ │ │ │ ├── theme-xcode.js │ │ │ │ │ │ │ ├── worker-coffee.js │ │ │ │ │ │ │ ├── worker-css.js │ │ │ │ │ │ │ ├── worker-html.js │ │ │ │ │ │ │ ├── worker-javascript.js │ │ │ │ │ │ │ ├── worker-json.js │ │ │ │ │ │ │ ├── worker-lua.js │ │ │ │ │ │ │ ├── worker-php.js │ │ │ │ │ │ │ ├── worker-xml.js │ │ │ │ │ │ │ └── worker-xquery.js │ │ │ │ │ ├── bootstrap-notify │ │ │ │ │ │ └── bootstrap-notify.min.js │ │ │ │ │ ├── bootstrap-slider │ │ │ │ │ │ └── bootstrap-slider.min.js │ │ │ │ │ ├── chart-circle │ │ │ │ │ │ └── circles.min.js │ │ │ │ │ ├── chart.js │ │ │ │ │ │ └── chart.min.js │ │ │ │ │ ├── datatables │ │ │ │ │ │ ├── buttons.colVis.min.js │ │ │ │ │ │ ├── buttons.html5.min.js │ │ │ │ │ │ ├── buttons.print.min.js │ │ │ │ │ │ ├── dataTables.buttons.min.js │ │ │ │ │ │ ├── dataTables.cellEdit.js │ │ │ │ │ │ ├── dataTables.contextualActions.min.js │ │ │ │ │ │ ├── dataTables.dateTime.min.js │ │ │ │ │ │ ├── dataTables.group.min.js │ │ │ │ │ │ ├── dataTables.responsive.min.js │ │ │ │ │ │ ├── dataTables.searchBuilder.bs4.js │ │ │ │ │ │ ├── dataTables.searchBuilder.js │ │ │ │ │ │ ├── dataTables.select.min.js │ │ │ │ │ │ ├── datatables.min.js │ │ │ │ │ │ ├── pdfmake.min.js │ │ │ │ │ │ └── pdfmake.vfs.fonts.min.js │ │ │ │ │ ├── dropzone │ │ │ │ │ │ ├── dropzone-amd-module.js │ │ │ │ │ │ ├── dropzone.js │ │ │ │ │ │ └── dropzone.js.map │ │ │ │ │ ├── html2canvas │ │ │ │ │ │ └── html2canvas.min.js │ │ │ │ │ ├── jquery-scrollbar │ │ │ │ │ │ └── jquery.scrollbar.min.js │ │ │ │ │ ├── jquery-ui-1.12.1.custom │ │ │ │ │ │ └── jquery-ui.min.js │ │ │ │ │ ├── jquery-ui-touch-punch │ │ │ │ │ │ └── jquery.ui.touch-punch.min.js │ │ │ │ │ ├── jquery.sparkline │ │ │ │ │ │ └── jquery.sparkline.min.js │ │ │ │ │ ├── jqvmap │ │ │ │ │ │ ├── jquery.vmap.min.js │ │ │ │ │ │ └── maps │ │ │ │ │ │ │ ├── continents │ │ │ │ │ │ │ ├── jquery.vmap.africa.js │ │ │ │ │ │ │ ├── jquery.vmap.asia.js │ │ │ │ │ │ │ ├── jquery.vmap.australia.js │ │ │ │ │ │ │ ├── jquery.vmap.europe.js │ │ │ │ │ │ │ ├── jquery.vmap.north-america.js │ │ │ │ │ │ │ └── jquery.vmap.south-america.js │ │ │ │ │ │ │ ├── jquery.vmap.algeria.js │ │ │ │ │ │ │ ├── jquery.vmap.argentina.js │ │ │ │ │ │ │ ├── jquery.vmap.brazil.js │ │ │ │ │ │ │ ├── jquery.vmap.canada.js │ │ │ │ │ │ │ ├── jquery.vmap.croatia.js │ │ │ │ │ │ │ ├── jquery.vmap.europe.js │ │ │ │ │ │ │ ├── jquery.vmap.france.js │ │ │ │ │ │ │ ├── jquery.vmap.germany.js │ │ │ │ │ │ │ ├── jquery.vmap.greece.js │ │ │ │ │ │ │ ├── jquery.vmap.indonesia.js │ │ │ │ │ │ │ ├── jquery.vmap.iran.js │ │ │ │ │ │ │ ├── jquery.vmap.iraq.js │ │ │ │ │ │ │ ├── jquery.vmap.new_regions_france.js │ │ │ │ │ │ │ ├── jquery.vmap.russia.js │ │ │ │ │ │ │ ├── jquery.vmap.serbia.js │ │ │ │ │ │ │ ├── jquery.vmap.tunisia.js │ │ │ │ │ │ │ ├── jquery.vmap.turkey.js │ │ │ │ │ │ │ ├── jquery.vmap.ukraine.js │ │ │ │ │ │ │ ├── jquery.vmap.usa.counties.js │ │ │ │ │ │ │ ├── jquery.vmap.usa.districts.js │ │ │ │ │ │ │ ├── jquery.vmap.usa.js │ │ │ │ │ │ │ └── jquery.vmap.world.js │ │ │ │ │ ├── select │ │ │ │ │ │ ├── ajax-bootstrap-picker.js │ │ │ │ │ │ ├── bootstrap-multiselect.min.js │ │ │ │ │ │ ├── bootstrap-select.min.js │ │ │ │ │ │ └── select2.js │ │ │ │ │ ├── showdown │ │ │ │ │ │ └── showdown.min.js │ │ │ │ │ ├── sortable │ │ │ │ │ │ └── sortable.js │ │ │ │ │ ├── sweetalert │ │ │ │ │ │ └── sweetalert.min.js │ │ │ │ │ ├── tagsinput │ │ │ │ │ │ ├── bootstrap-tagsinput.js │ │ │ │ │ │ ├── suggesttag.js │ │ │ │ │ │ └── typeahead.bundle.js │ │ │ │ │ ├── vis │ │ │ │ │ │ ├── vis-network.min.js │ │ │ │ │ │ ├── vis.graph.js │ │ │ │ │ │ └── vis.min.js │ │ │ │ │ ├── webfont │ │ │ │ │ │ └── webfont.min.js │ │ │ │ │ └── xss │ │ │ │ │ │ └── xss.js │ │ │ │ └── timeline.js │ │ │ │ └── sass │ │ │ │ ├── atlantis.scss │ │ │ │ └── atlantis │ │ │ │ ├── _background.scss │ │ │ │ ├── _components.scss │ │ │ │ ├── _flaticon.scss │ │ │ │ ├── _font-awesome.scss │ │ │ │ ├── _layouts-colors.scss │ │ │ │ ├── _layouts.scss │ │ │ │ ├── _opacity.scss │ │ │ │ ├── _outlinefocus.scss │ │ │ │ ├── _plugins.scss │ │ │ │ ├── _responsive-horizontal.scss │ │ │ │ ├── _responsive.scss │ │ │ │ ├── _typography.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── components │ │ │ │ ├── _activityfeed.scss │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _avatars.scss │ │ │ │ ├── _badges.scss │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _cards.scss │ │ │ │ ├── _charts.scss │ │ │ │ ├── _colorinputs.scss │ │ │ │ ├── _dropdowns.scss │ │ │ │ ├── _gutters.scss │ │ │ │ ├── _imagecheck.scss │ │ │ │ ├── _inputs.scss │ │ │ │ ├── _listgroup.scss │ │ │ │ ├── _loader.scss │ │ │ │ ├── _maps.scss │ │ │ │ ├── _modals.scss │ │ │ │ ├── _navbars.scss │ │ │ │ ├── _navsearch.scss │ │ │ │ ├── _navtabs.scss │ │ │ │ ├── _paginations.scss │ │ │ │ ├── _popovers.scss │ │ │ │ ├── _progress.scss │ │ │ │ ├── _selectgroup.scss │ │ │ │ ├── _sliders.scss │ │ │ │ ├── _stamps.scss │ │ │ │ ├── _tables.scss │ │ │ │ └── _timeline.scss │ │ │ │ └── plugins │ │ │ │ ├── _animate.scss │ │ │ │ ├── _datatables.scss │ │ │ │ ├── _jqueryscrollbar.scss │ │ │ │ ├── _jqueryui.scss │ │ │ │ └── _sweetalert.scss │ │ ├── templates │ │ │ ├── docx_reports │ │ │ │ ├── iris_activity_report_template.docx │ │ │ │ └── iris_report_template.docx │ │ │ ├── includes │ │ │ │ ├── datastore-sidebar.html │ │ │ │ ├── footer.html │ │ │ │ ├── footer_case.html │ │ │ │ ├── header_case.html │ │ │ │ ├── navigation.html │ │ │ │ ├── navigation_ext.html │ │ │ │ ├── quick-sidebar.html │ │ │ │ ├── scripts.html │ │ │ │ ├── sidebar_handler.html │ │ │ │ └── sidenav.html │ │ │ ├── layouts │ │ │ │ ├── default.html │ │ │ │ ├── default_centered.html │ │ │ │ ├── default_ext.html │ │ │ │ └── static-default.html │ │ │ ├── modals │ │ │ │ ├── add_customer.html │ │ │ │ ├── modal_attributes_nav.html │ │ │ │ └── modal_attributes_tabs.html │ │ │ └── pages │ │ │ │ ├── error-403.html │ │ │ │ └── error-404.html │ │ ├── util.py │ │ └── views.py │ ├── dependencies │ │ ├── DFIR-IRIS_pkey.asc │ │ ├── docx_generator-0.8.0-py3-none-any.whl │ │ ├── evtx2splunk-2.0.1-py3-none-any.whl │ │ ├── evtxdump_binaries │ │ │ ├── event_bind.json │ │ │ └── linux │ │ │ │ └── x64 │ │ │ │ ├── evtx_dump │ │ │ │ └── fd │ │ ├── iris_check_module-1.0.1-py3-none-any.whl │ │ ├── iris_evtx-1.2.0-py3-none-any.whl │ │ ├── iris_intelowl_module-0.1.0-py3-none-any.whl │ │ ├── iris_interface-1.2.0-py3-none-any.whl │ │ ├── iris_misp_module-1.2.0-py3-none-any.whl │ │ ├── iris_misp_module-1.3.0-py3-none-any.whl │ │ ├── iris_vt_module-1.2.0-py3-none-any.whl │ │ ├── iris_vt_module-1.2.1-py3-none-any.whl │ │ ├── iris_webhooks_module-1.0.2-py3-none-any.whl │ │ └── iris_webhooks_module-1.0.4-py3-none-any.whl │ ├── requirements.txt │ ├── run.py │ ├── scripts │ │ └── iris_updater.sh │ └── tests │ │ ├── __init__.py │ │ ├── clean_database.py │ │ ├── performance │ │ ├── __init__.py │ │ └── test_burst_db_interaction.py │ │ ├── test_helper.py │ │ └── unit │ │ ├── __init__.py │ │ ├── blueprints │ │ ├── __init__.py │ │ ├── case │ │ │ ├── __init__.py │ │ │ ├── test_case_rfiles_routes.py │ │ │ └── test_case_tasks_routes.py │ │ └── manage │ │ │ ├── __init__.py │ │ │ └── test_manage_modules_routes.py │ │ └── datamgmt │ │ ├── __init__.py │ │ └── client │ │ ├── __init__.py │ │ └── test_client_db.py ├── tests │ ├── README.md │ ├── data │ │ └── basic.env │ ├── docker_compose.py │ ├── iris.py │ ├── requirements.txt │ ├── rest_api.py │ ├── server_timeout_error.py │ ├── tests.py │ └── tests_which_require_a_clean_slate.py └── upgrades │ └── upgrade_to_2.0.0.py ├── kibana └── scripts │ └── setup-kibana.sh ├── nginx.conf ├── nginx ├── certs │ ├── ca.pem │ ├── ca.srl │ ├── nginx.crt │ ├── nginx.csr │ ├── openssl.cnf │ └── secret.yaml └── nginx.conf ├── prometheus └── prometheus.yml ├── velociraptor ├── Dockerfile ├── add_iris_velo_module ├── custom │ └── Custom │ │ ├── Elastic │ │ └── Flows │ │ │ └── Upload.yaml │ │ ├── Server │ │ └── IRIS │ │ │ └── Module │ │ │ └── Create.yaml │ │ └── Welcome.yaml └── entrypoint └── zinc └── Dockerfile /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/.env -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/dev_certs/iris_dev_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/docker/dev_certs/iris_dev_cert.pem -------------------------------------------------------------------------------- /docker/dev_certs/iris_dev_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/docker/dev_certs/iris_dev_key.pem -------------------------------------------------------------------------------- /docker/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/docker/nginx/Dockerfile -------------------------------------------------------------------------------- /docker/nginx/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/docker/nginx/entrypoint.sh -------------------------------------------------------------------------------- /docker/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/docker/nginx/nginx.conf -------------------------------------------------------------------------------- /grafana/provisioning/dashboards/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/grafana/provisioning/dashboards/default.yaml -------------------------------------------------------------------------------- /grafana/provisioning/dashboards/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/grafana/provisioning/dashboards/docker.json -------------------------------------------------------------------------------- /grafana/provisioning/datasources/datasources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/grafana/provisioning/datasources/datasources.yaml -------------------------------------------------------------------------------- /install_velocistack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/install_velocistack -------------------------------------------------------------------------------- /intelowl/configuration/Kibana-Saved-Conf.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/configuration/Kibana-Saved-Conf.ndjson -------------------------------------------------------------------------------- /intelowl/configuration/analyzer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/configuration/analyzer_config.json -------------------------------------------------------------------------------- /intelowl/configuration/connector_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/configuration/connector_config.json -------------------------------------------------------------------------------- /intelowl/configuration/cyberchef_recipes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/configuration/cyberchef_recipes.json -------------------------------------------------------------------------------- /intelowl/configuration/intel_owl.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/configuration/intel_owl.ini -------------------------------------------------------------------------------- /intelowl/configuration/ldap_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/configuration/ldap_config.py -------------------------------------------------------------------------------- /intelowl/configuration/nginx/django_server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/configuration/nginx/django_server.conf -------------------------------------------------------------------------------- /intelowl/configuration/nginx/errors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/configuration/nginx/errors.conf -------------------------------------------------------------------------------- /intelowl/configuration/nginx/flower_http.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/configuration/nginx/flower_http.conf -------------------------------------------------------------------------------- /intelowl/configuration/nginx/flower_https.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/configuration/nginx/flower_https.conf -------------------------------------------------------------------------------- /intelowl/configuration/nginx/http.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/configuration/nginx/http.conf -------------------------------------------------------------------------------- /intelowl/configuration/nginx/https.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/configuration/nginx/https.conf -------------------------------------------------------------------------------- /intelowl/configuration/nginx/locations.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/configuration/nginx/locations.conf -------------------------------------------------------------------------------- /intelowl/configuration/radius_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/configuration/radius_config.py -------------------------------------------------------------------------------- /intelowl/configuration/service_account_keyfile_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/configuration/service_account_keyfile_example.json -------------------------------------------------------------------------------- /intelowl/docker/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/.env -------------------------------------------------------------------------------- /intelowl/docker/.env.start.test.template: -------------------------------------------------------------------------------- 1 | # Disabling repo_downloader.sh 2 | REPO_DOWNLOADER_ENABLED=false 3 | -------------------------------------------------------------------------------- /intelowl/docker/.version: -------------------------------------------------------------------------------- 1 | REACT_APP_INTELOWL_VERSION="v4.0.0" -------------------------------------------------------------------------------- /intelowl/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/Dockerfile -------------------------------------------------------------------------------- /intelowl/docker/Dockerfile_nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/Dockerfile_nginx -------------------------------------------------------------------------------- /intelowl/docker/ci.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/ci.override.yml -------------------------------------------------------------------------------- /intelowl/docker/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/default.yml -------------------------------------------------------------------------------- /intelowl/docker/elasticsearch.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/elasticsearch.override.yml -------------------------------------------------------------------------------- /intelowl/docker/entrypoints/celery_beat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/entrypoints/celery_beat.sh -------------------------------------------------------------------------------- /intelowl/docker/entrypoints/celery_default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/entrypoints/celery_default.sh -------------------------------------------------------------------------------- /intelowl/docker/entrypoints/celery_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/entrypoints/celery_local.sh -------------------------------------------------------------------------------- /intelowl/docker/entrypoints/celery_long.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/entrypoints/celery_long.sh -------------------------------------------------------------------------------- /intelowl/docker/entrypoints/flower.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/entrypoints/flower.sh -------------------------------------------------------------------------------- /intelowl/docker/entrypoints/uwsgi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/entrypoints/uwsgi.sh -------------------------------------------------------------------------------- /intelowl/docker/env_file_app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/env_file_app -------------------------------------------------------------------------------- /intelowl/docker/env_file_app_ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/env_file_app_ci -------------------------------------------------------------------------------- /intelowl/docker/env_file_app_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/env_file_app_template -------------------------------------------------------------------------------- /intelowl/docker/env_file_integrations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/env_file_integrations -------------------------------------------------------------------------------- /intelowl/docker/env_file_integrations_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/env_file_integrations_template -------------------------------------------------------------------------------- /intelowl/docker/env_file_postgres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/env_file_postgres -------------------------------------------------------------------------------- /intelowl/docker/env_file_postgres_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/env_file_postgres_template -------------------------------------------------------------------------------- /intelowl/docker/flower.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/flower.override.yml -------------------------------------------------------------------------------- /intelowl/docker/multi-queue.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/multi-queue.override.yml -------------------------------------------------------------------------------- /intelowl/docker/scripts/coverage_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/scripts/coverage_test.sh -------------------------------------------------------------------------------- /intelowl/docker/scripts/initdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/scripts/initdb.sh -------------------------------------------------------------------------------- /intelowl/docker/scripts/manage.sh: -------------------------------------------------------------------------------- 1 | docker exec -ti intelowl_uwsgi python3 manage.py $@ 2 | -------------------------------------------------------------------------------- /intelowl/docker/scripts/tail-logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/scripts/tail-logs.sh -------------------------------------------------------------------------------- /intelowl/docker/scripts/test_analyzers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/scripts/test_analyzers.sh -------------------------------------------------------------------------------- /intelowl/docker/scripts/watchman_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/scripts/watchman_install.sh -------------------------------------------------------------------------------- /intelowl/docker/test.flower.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/test.flower.override.yml -------------------------------------------------------------------------------- /intelowl/docker/test.multi-queue.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/test.multi-queue.override.yml -------------------------------------------------------------------------------- /intelowl/docker/test.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/test.override.yml -------------------------------------------------------------------------------- /intelowl/docker/traefik.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/intelowl/docker/traefik.override.yml -------------------------------------------------------------------------------- /iris/CODESTYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/CODESTYLE.md -------------------------------------------------------------------------------- /iris/CONFIGURATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/CONFIGURATION.md -------------------------------------------------------------------------------- /iris/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/CONTRIBUTING.md -------------------------------------------------------------------------------- /iris/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/LICENSE.txt -------------------------------------------------------------------------------- /iris/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/README.md -------------------------------------------------------------------------------- /iris/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/SECURITY.md -------------------------------------------------------------------------------- /iris/certificates/rootCA/irisRootCACert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/certificates/rootCA/irisRootCACert.pem -------------------------------------------------------------------------------- /iris/certificates/rootCA/irisRootCACert.srl: -------------------------------------------------------------------------------- 1 | 52366C4851D9245D91B07E288C197FE8DA976FA9 2 | -------------------------------------------------------------------------------- /iris/certificates/rootCA/irisRootCAKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/certificates/rootCA/irisRootCAKey.pem -------------------------------------------------------------------------------- /iris/certificates/web_certificates/iris_dev_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/certificates/web_certificates/iris_dev_cert.pem -------------------------------------------------------------------------------- /iris/certificates/web_certificates/iris_dev_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/certificates/web_certificates/iris_dev_key.pem -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/Makefile -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/README.md -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/admin/claim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/admin/claim.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/admin/kustomization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/admin/kustomization.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/admin/namespace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/admin/namespace.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/admin/storageclass.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/admin/storageclass.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/app/configmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/app/configmap.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/app/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/app/deployment.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/app/ingress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/app/ingress.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/app/kustomization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/app/kustomization.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/app/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/app/secrets.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/app/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/app/service.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/images/alb-dns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/images/alb-dns.png -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/images/app-image-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/images/app-image-update.png -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/images/db-image-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/images/db-image-update.png -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/images/ingress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/images/ingress.png -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/images/worker-image-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/images/worker-image-update.png -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/psql/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/psql/deployment.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/psql/kustomization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/psql/kustomization.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/psql/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/psql/secrets.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/psql/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/psql/service.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/rabbitmq/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/rabbitmq/deployment.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/rabbitmq/kustomization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/rabbitmq/kustomization.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/rabbitmq/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/rabbitmq/service.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/worker/configmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/worker/configmap.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/worker/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/worker/deployment.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/worker/kustomization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/worker/kustomization.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/worker/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/worker/secrets.yml -------------------------------------------------------------------------------- /iris/deploy/eks_manifest/worker/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/eks_manifest/worker/service.yml -------------------------------------------------------------------------------- /iris/deploy/kubernetes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/kubernetes/Makefile -------------------------------------------------------------------------------- /iris/deploy/kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/kubernetes/README.md -------------------------------------------------------------------------------- /iris/deploy/kubernetes/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/kubernetes/TODO.md -------------------------------------------------------------------------------- /iris/deploy/kubernetes/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/kubernetes/charts/Chart.yaml -------------------------------------------------------------------------------- /iris/deploy/kubernetes/charts/certificates/rootCA/irisRootCACert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/kubernetes/charts/certificates/rootCA/irisRootCACert.pem -------------------------------------------------------------------------------- /iris/deploy/kubernetes/charts/certificates/rootCA/irisRootCACert.srl: -------------------------------------------------------------------------------- 1 | 52366C4851D9245D91B07E288C197FE8DA976FA9 2 | -------------------------------------------------------------------------------- /iris/deploy/kubernetes/charts/certificates/rootCA/irisRootCAKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/kubernetes/charts/certificates/rootCA/irisRootCAKey.pem -------------------------------------------------------------------------------- /iris/deploy/kubernetes/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/kubernetes/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /iris/deploy/kubernetes/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/kubernetes/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /iris/deploy/kubernetes/charts/templates/iris_app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/kubernetes/charts/templates/iris_app.yaml -------------------------------------------------------------------------------- /iris/deploy/kubernetes/charts/templates/iris_worker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/kubernetes/charts/templates/iris_worker.yaml -------------------------------------------------------------------------------- /iris/deploy/kubernetes/charts/templates/nginx_ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/kubernetes/charts/templates/nginx_ingress.yaml -------------------------------------------------------------------------------- /iris/deploy/kubernetes/charts/templates/postgres.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/kubernetes/charts/templates/postgres.yaml -------------------------------------------------------------------------------- /iris/deploy/kubernetes/charts/templates/rabbitmq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/kubernetes/charts/templates/rabbitmq.yaml -------------------------------------------------------------------------------- /iris/deploy/kubernetes/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/deploy/kubernetes/charts/values.yaml -------------------------------------------------------------------------------- /iris/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/docker-compose.yml -------------------------------------------------------------------------------- /iris/docker/db/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/docker/db/Dockerfile -------------------------------------------------------------------------------- /iris/docker/db/create_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/docker/db/create_user.sh -------------------------------------------------------------------------------- /iris/docker/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/docker/nginx/Dockerfile -------------------------------------------------------------------------------- /iris/docker/nginx/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/docker/nginx/entrypoint.sh -------------------------------------------------------------------------------- /iris/docker/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/docker/nginx/nginx.conf -------------------------------------------------------------------------------- /iris/docker/webApp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/docker/webApp/Dockerfile -------------------------------------------------------------------------------- /iris/docker/webApp/iris-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/docker/webApp/iris-entrypoint.sh -------------------------------------------------------------------------------- /iris/docker/webApp/wait-for-iriswebapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/docker/webApp/wait-for-iriswebapp.sh -------------------------------------------------------------------------------- /iris/img/demo_timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/img/demo_timeline.png -------------------------------------------------------------------------------- /iris/img/timeline_speed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/img/timeline_speed.gif -------------------------------------------------------------------------------- /iris/scripts/gunicorn-cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/scripts/gunicorn-cfg.py -------------------------------------------------------------------------------- /iris/source/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/__init__.py -------------------------------------------------------------------------------- /iris/source/app/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic.ini -------------------------------------------------------------------------------- /iris/source/app/alembic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /iris/source/app/alembic/alembic_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/alembic_utils.py -------------------------------------------------------------------------------- /iris/source/app/alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/env.py -------------------------------------------------------------------------------- /iris/source/app/alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/script.py.mako -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/0db700644a4f_add_tags_to_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/0db700644a4f_add_tags_to_assets.py -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/10a7616f3cc7_add_module_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/10a7616f3cc7_add_module_types.py -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/20447ecb2245_objects_uuid_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/20447ecb2245_objects_uuid_field.py -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/2604f6962838_add_case_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/2604f6962838_add_case_state.py -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/2df770a4989c_add_objects_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/2df770a4989c_add_objects_attributes.py -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/3204e9116233_add_event_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/3204e9116233_add_event_flag.py -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/3a4d4f15bd69_rename_opened_to_open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/3a4d4f15bd69_rename_opened_to_open.py -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/65168cb6cc90_reviewer_in_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/65168cb6cc90_reviewer_in_case.py -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/6a3b3b627d45_add_ioc_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/6a3b3b627d45_add_ioc_type.py -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/874ba5e5da44_add_task_log_api_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/874ba5e5da44_add_task_log_api_field.py -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/875edc4adb40_migrate_task_assignee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/875edc4adb40_migrate_task_assignee.py -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/92ecbf0f6d10_add_user_external_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/92ecbf0f6d10_add_user_external_id.py -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/a3eb60654ec4_add_cases_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/a3eb60654ec4_add_cases_status.py -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/ad4e0cd17597_add_ioctype_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/ad4e0cd17597_add_ioctype_validation.py -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/b664ca1203a4_add_dark_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/b664ca1203a4_add_dark_mode.py -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/c773a35c280f_update_tasks_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/c773a35c280f_update_tasks_status.py -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/cd519d2d24df_password_policy_edition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/cd519d2d24df_password_policy_edition.py -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/d207b4d13385_add_severity_to_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/d207b4d13385_add_severity_to_cases.py -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/e0df2de997cc_add_namespace_to_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/e0df2de997cc_add_namespace_to_tags.py -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/f727badcc4e1_add_alert_in_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/f727badcc4e1_add_alert_in_comments.py -------------------------------------------------------------------------------- /iris/source/app/alembic/versions/ff917e2ab02e_asset_type_custom_icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/alembic/versions/ff917e2ab02e_asset_type_custom_icons.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/blueprints/activities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/blueprints/activities/activities_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/activities/activities_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/activities/templates/activities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/activities/templates/activities.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/alerts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/blueprints/alerts/alerts_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/alerts/alerts_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/alerts/templates/alerts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/alerts/templates/alerts.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/alerts/templates/modal_enrichment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/alerts/templates/modal_enrichment.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/alerts/templates/modal_escalate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/alerts/templates/modal_escalate.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/alerts/templates/modal_new_alert_owner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/alerts/templates/modal_new_alert_owner.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/blueprints/api/api_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/api/api_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/__init__.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/case_assets_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/case_assets_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/case_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/case_comments.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/case_graphs_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/case_graphs_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/case_ioc_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/case_ioc_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/case_notes_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/case_notes_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/case_rfiles_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/case_rfiles_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/case_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/case_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/case_tasks_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/case_tasks_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/case_timeline_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/case_timeline_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/case-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/case-nav.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/case-nav_landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/case-nav_landing.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/case.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/case.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/case_assets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/case_assets.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/case_graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/case_graph.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/case_graph_timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/case_graph_timeline.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/case_ioc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/case_ioc.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/case_md_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/case_md_helper.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/case_notes_v2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/case_notes_v2.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/case_rfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/case_rfile.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/case_tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/case_tasks.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/case_timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/case_timeline.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/modal_add_case_asset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/modal_add_case_asset.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/modal_add_case_event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/modal_add_case_event.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/modal_add_case_ioc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/modal_add_case_ioc.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/modal_add_case_rfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/modal_add_case_rfile.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/modal_add_case_task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/modal_add_case_task.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/modal_add_graph_asset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/modal_add_graph_asset.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/modal_case_pipelines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/modal_case_pipelines.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/modal_conversation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/modal_conversation.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/modal_help_filter_tm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/modal_help_filter_tm.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/modal_note_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/modal_note_edit.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/case/templates/select_case.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/case/templates/select_case.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/context/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/context/__init__.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/context/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/context/context.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/blueprints/dashboard/dashboard_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/dashboard/dashboard_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/dashboard/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/dashboard/templates/index.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/datastore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/blueprints/datastore/datastore_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/datastore/datastore_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/datastore/templates/modal_ds_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/datastore/templates/modal_ds_file.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/datastore/templates/modal_ds_file_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/datastore/templates/modal_ds_file_info.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/datastore/templates/modal_ds_multi_files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/datastore/templates/modal_ds_multi_files.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/datastore/templates/modal_help_filter_ds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/datastore/templates/modal_help_filter_ds.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/demo_landing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/blueprints/demo_landing/demo_landing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/demo_landing/demo_landing.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/demo_landing/templates/demo-landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/demo_landing/templates/demo-landing.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/dim_tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/blueprints/dim_tasks/dim_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/dim_tasks/dim_tasks.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/dim_tasks/templates/dim_tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/dim_tasks/templates/dim_tasks.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/dim_tasks/templates/modal_task_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/dim_tasks/templates/modal_task_info.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/blueprints/filters/filters_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/filters/filters_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/login/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/blueprints/login/login_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/login/login_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/login/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/login/templates/login.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_access_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_access_control.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_alerts_status_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_alerts_status_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_analysis_status_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_analysis_status_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_assets.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_assets_type_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_assets_type_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_attributes_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_attributes_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_case_classifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_case_classifications.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_case_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_case_state.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_case_templates_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_case_templates_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_cases_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_cases_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_customers_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_customers_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_event_categories_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_event_categories_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_evidence_types_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_evidence_types_route.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_groups.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_ioc_types_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_ioc_types_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_modules_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_modules_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_objects_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_objects_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_severities_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_severities_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_srv_settings_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_srv_settings_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_tags.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_task_status_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_task_status_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_templates_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_templates_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_tlps_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_tlps_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/manage_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/manage_users.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/manage_attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/manage_attributes.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/manage_case_templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/manage_case_templates.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/manage_cases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/manage_cases.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/manage_customer_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/manage_customer_view.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/manage_customers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/manage_customers.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/manage_make_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/manage_make_update.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/manage_modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/manage_modules.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/manage_objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/manage_objects.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/manage_srv_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/manage_srv_settings.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/manage_templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/manage_templates.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/modal_add_asset_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/modal_add_asset_type.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/modal_add_attribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/modal_add_attribute.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/modal_add_case.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/modal_add_case.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/modal_add_customer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/modal_add_customer.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/modal_add_ioc_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/modal_add_ioc_type.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/modal_add_module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/modal_add_module.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/modal_case_state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/modal_case_state.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/modal_case_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/modal_case_template.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/modal_evidence_types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/modal_evidence_types.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/modal_module_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/modal_module_info.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/modal_preview_attribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/modal_preview_attribute.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/modal_server_updates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/modal_server_updates.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/manage/templates/modal_update_parameter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/manage/templates/modal_update_parameter.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/overview/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/blueprints/overview/overview_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/overview/overview_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/overview/templates/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/overview/templates/overview.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/profile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/blueprints/profile/profile_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/profile/profile_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/profile/templates/modal_pwd_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/profile/templates/modal_pwd_user.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/profile/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/profile/templates/profile.html -------------------------------------------------------------------------------- /iris/source/app/blueprints/reports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/reports/__init__.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/reports/reports_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/reports/reports_route.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/blueprints/search/search_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/search/search_routes.py -------------------------------------------------------------------------------- /iris/source/app/blueprints/search/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/blueprints/search/templates/search.html -------------------------------------------------------------------------------- /iris/source/app/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/configuration.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/datamgmt/activities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/datamgmt/activities/activities_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/activities/activities_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/alerts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/datamgmt/alerts/alerts_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/alerts/alerts_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/case/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/datamgmt/case/case_assets_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/case/case_assets_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/case/case_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/case/case_comments.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/case/case_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/case/case_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/case/case_events_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/case/case_events_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/case/case_iocs_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/case/case_iocs_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/case/case_notes_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/case/case_notes_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/case/case_rfiles_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/case/case_rfiles_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/case/case_tasks_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/case/case_tasks_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/datamgmt/client/client_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/client/client_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/context/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/datamgmt/context/context_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/context/context_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/datamgmt/dashboard/dashboard_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/dashboard/dashboard_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/datastore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/datamgmt/datastore/datastore_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/datastore/datastore_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/exceptions/ElementExceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/exceptions/ElementExceptions.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/exceptions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/datamgmt/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/datamgmt/filters/filters_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/filters/filters_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/iris_engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/datamgmt/iris_engine/evidence_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/iris_engine/evidence_storage.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/iris_engine/modules_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/iris_engine/modules_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/datamgmt/manage/manage_access_control_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/manage/manage_access_control_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/manage/manage_assets_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/manage/manage_assets_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/manage/manage_attribute_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/manage/manage_attribute_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/manage/manage_case_classifications_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/manage/manage_case_classifications_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/manage/manage_case_objs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/manage/manage_case_objs.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/manage/manage_case_state_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/manage/manage_case_state_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/manage/manage_case_templates_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/manage/manage_case_templates_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/manage/manage_cases_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/manage/manage_cases_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/manage/manage_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/manage/manage_common.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/manage/manage_evidence_types_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/manage/manage_evidence_types_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/manage/manage_groups_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/manage/manage_groups_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/manage/manage_srv_settings_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/manage/manage_srv_settings_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/manage/manage_tags_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/manage/manage_tags_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/manage/manage_users_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/manage/manage_users_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/overview/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/datamgmt/overview/overview_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/overview/overview_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/reporter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/datamgmt/reporter/report_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/reporter/report_db.py -------------------------------------------------------------------------------- /iris/source/app/datamgmt/states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/datamgmt/states.py -------------------------------------------------------------------------------- /iris/source/app/flask_dropzone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/flask_dropzone/__init__.py -------------------------------------------------------------------------------- /iris/source/app/flask_dropzone/static/dropzone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/flask_dropzone/static/dropzone.min.css -------------------------------------------------------------------------------- /iris/source/app/flask_dropzone/static/dropzone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/flask_dropzone/static/dropzone.min.js -------------------------------------------------------------------------------- /iris/source/app/flask_dropzone/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/flask_dropzone/utils.py -------------------------------------------------------------------------------- /iris/source/app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/forms.py -------------------------------------------------------------------------------- /iris/source/app/iris_engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/iris_engine/access_control/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/iris_engine/access_control/ldap_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/iris_engine/access_control/ldap_handler.py -------------------------------------------------------------------------------- /iris/source/app/iris_engine/access_control/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/iris_engine/access_control/utils.py -------------------------------------------------------------------------------- /iris/source/app/iris_engine/backup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/iris_engine/backup/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/iris_engine/backup/backup.py -------------------------------------------------------------------------------- /iris/source/app/iris_engine/demo_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/iris_engine/demo_builder.py -------------------------------------------------------------------------------- /iris/source/app/iris_engine/module_handler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/iris_engine/module_handler/module_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/iris_engine/module_handler/module_handler.py -------------------------------------------------------------------------------- /iris/source/app/iris_engine/reporter/ImageHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/iris_engine/reporter/ImageHandler.py -------------------------------------------------------------------------------- /iris/source/app/iris_engine/reporter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/iris_engine/reporter/__init__.py -------------------------------------------------------------------------------- /iris/source/app/iris_engine/reporter/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/iris_engine/reporter/reporter.py -------------------------------------------------------------------------------- /iris/source/app/iris_engine/tasker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/iris_engine/tasker/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/iris_engine/tasker/celery.py -------------------------------------------------------------------------------- /iris/source/app/iris_engine/tasker/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/iris_engine/tasker/tasks.py -------------------------------------------------------------------------------- /iris/source/app/iris_engine/updater/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /iris/source/app/iris_engine/updater/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/iris_engine/updater/updater.py -------------------------------------------------------------------------------- /iris/source/app/iris_engine/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/iris_engine/utils/__init__.py -------------------------------------------------------------------------------- /iris/source/app/iris_engine/utils/collab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/iris_engine/utils/collab.py -------------------------------------------------------------------------------- /iris/source/app/iris_engine/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/iris_engine/utils/common.py -------------------------------------------------------------------------------- /iris/source/app/iris_engine/utils/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/iris_engine/utils/tracker.py -------------------------------------------------------------------------------- /iris/source/app/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/models/__init__.py -------------------------------------------------------------------------------- /iris/source/app/models/alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/models/alerts.py -------------------------------------------------------------------------------- /iris/source/app/models/authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/models/authorization.py -------------------------------------------------------------------------------- /iris/source/app/models/cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/models/cases.py -------------------------------------------------------------------------------- /iris/source/app/models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/models/models.py -------------------------------------------------------------------------------- /iris/source/app/post_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/post_init.py -------------------------------------------------------------------------------- /iris/source/app/resources/misp.classification.taxonomy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/resources/misp.classification.taxonomy.json -------------------------------------------------------------------------------- /iris/source/app/schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/schema/marshables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/schema/marshables.py -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/alerts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/alerts.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/atlantis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/atlantis.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/atlantis.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/atlantis.css.map -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/atlantis.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/atlantis.min.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/bootstrap-datetime.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/bootstrap-datetime.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/bootstrap-multiselect.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/bootstrap-multiselect.min.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/bootstrap-select.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/bootstrap-select.css.map -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/bootstrap-select.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/bootstrap-select.min.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/bootstrap-slider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/bootstrap-slider.min.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/bootstrap-tagsinput.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/bootstrap-tagsinput.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/case.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/case.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/dark-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/dark-theme.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/dataTables.buttons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/dataTables.buttons.min.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/dataTables.contextualActions.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/dataTables.contextualActions.min.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/dataTables.group.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/dataTables.group.min.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/dataTables.responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/dataTables.responsive.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/dataTables.searchBuilder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/dataTables.searchBuilder.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/dataTables.select.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/dataTables.select.min.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/demo.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/dropzone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/dropzone.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/fa.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/fa.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/fonts.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/fonts.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/fonts.min.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/icons/tl-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/icons/tl-icons.ttf -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/icons/tl-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/icons/tl-icons.woff -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/icons/tl-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/icons/tl-icons.woff2 -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/latos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/latos.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/login/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/login/login.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/select2.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/suggestags.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/suggestags.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/tags.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/tags.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/timeline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/timeline.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/vis.graph.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/vis.graph.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/css/vis.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/css/vis.min.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/flaticon/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/flaticon/Flaticon.eot -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/flaticon/Flaticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/flaticon/Flaticon.svg -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/flaticon/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/flaticon/Flaticon.ttf -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/flaticon/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/flaticon/Flaticon.woff -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/flaticon/_flaticon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/flaticon/_flaticon.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/flaticon/flaticon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/flaticon/flaticon.css -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/flaticon/flaticon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/flaticon/flaticon.html -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/fontawesome/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/fontawesome/fa-brands-400.ttf -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/fontawesome/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/fontawesome/fa-brands-400.woff2 -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/fontawesome/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/fontawesome/fa-regular-400.ttf -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/fontawesome/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/fontawesome/fa-regular-400.woff2 -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/fontawesome/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/fontawesome/fa-solid-900.ttf -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/fontawesome/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/fontawesome/fa-solid-900.woff2 -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/fontawesome/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/fontawesome/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/fontawesome/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/fontawesome/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/lato/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/lato/Lato-Black.ttf -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/lato/Lato-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/lato/Lato-BlackItalic.ttf -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/lato/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/lato/Lato-Bold.ttf -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/lato/Lato-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/lato/Lato-BoldItalic.ttf -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/lato/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/lato/Lato-Italic.ttf -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/lato/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/lato/Lato-Light.ttf -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/lato/Lato-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/lato/Lato-LightItalic.ttf -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/lato/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/lato/Lato-Regular.ttf -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/lato/Lato-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/lato/Lato-Thin.ttf -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/lato/Lato-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/lato/Lato-ThinItalic.ttf -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/lato/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/lato/OFL.txt -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/summernote/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/summernote/summernote.eot -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/summernote/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/summernote/summernote.ttf -------------------------------------------------------------------------------- /iris/source/app/static/assets/fonts/summernote/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/fonts/summernote/summernote.woff -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/bell-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/bell-solid.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/briefcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/briefcase.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/desktop.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/firewall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/firewall.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/ioc_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/ioc_desktop.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/ioc_firewall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/ioc_firewall.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/ioc_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/ioc_phone.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/ioc_question-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/ioc_question-mark.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/ioc_router.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/ioc_router.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/ioc_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/ioc_server.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/ioc_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/ioc_switch.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/ioc_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/ioc_user.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/ioc_vpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/ioc_vpn.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/ioc_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/ioc_wifi.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/ioc_windows_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/ioc_windows_desktop.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/ioc_windows_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/ioc_windows_server.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/phone.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/question-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/question-mark.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/router.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/router.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/server.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/switch.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/user.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/virus-covid-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/virus-covid-solid.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/vpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/vpn.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/wifi.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/windows_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/windows_desktop.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/graph/windows_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/graph/windows_server.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/iris_logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/iris_logo-black.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/loader.gif -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/loader_cubes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/loader_cubes.gif -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/logo-alone-2-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/logo-alone-2-black.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/logo-alone-2-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/logo-alone-2-blue.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/logo-alone-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/logo-alone-2.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/logo-full-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/logo-full-blue.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/logo-white-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/logo-white-2.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/logo-white.png -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/logo.ico -------------------------------------------------------------------------------- /iris/source/app/static/assets/img/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/img/profile.jpg -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/atlantis.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/atlantis.min.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/core/bootstrap-datetimepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/core/bootstrap-datetimepicker.min.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/core/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/core/bootstrap.min.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/core/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/core/charts.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/core/crypto.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/core/crypto.core.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/core/crypto.md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/core/crypto.md5.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/core/jquery.3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/core/jquery.3.2.1.min.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/core/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/core/jquery.validate.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/core/moments.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/core/moments.min.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/core/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/core/popper.min.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/core/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/core/socket.io.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/activities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/activities.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/alerts.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/case.asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/case.asset.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/case.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/case.common.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/case.graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/case.graph.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/case.ioc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/case.ioc.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/case.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/case.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/case.notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/case.notes.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/case.pipelines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/case.pipelines.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/case.rfiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/case.rfiles.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/case.summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/case.summary.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/case.tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/case.tasks.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/case.timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/case.timeline.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/case.timeline.visu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/case.timeline.visu.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/comments.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/common.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/crc32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/crc32.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/dashboard.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/datastore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/datastore.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/datatablesUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/datatablesUtils.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/dim_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/dim_tasks.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/manage.attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/manage.attributes.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/manage.audit.cases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/manage.audit.cases.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/manage.audit.users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/manage.audit.users.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/manage.case.templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/manage.case.templates.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/manage.cases.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/manage.cases.common.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/manage.cases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/manage.cases.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/manage.customers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/manage.customers.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/manage.groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/manage.groups.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/manage.modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/manage.modules.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/manage.objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/manage.objects.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/manage.server.settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/manage.server.settings.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/manage.templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/manage.templates.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/manage.users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/manage.users.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/overview.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/search.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/updates.handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/updates.handler.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/user.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/iris/view.customers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/iris/view.customers.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/landing/demo-landing.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/ace.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/ext-emmet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/ext-emmet.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/ext-prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/ext-prompt.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/ext-rtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/ext-rtl.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/ext-split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/ext-split.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-abap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-abap.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-abc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-abc.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-ada.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-ada.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-alda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-alda.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-apex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-apex.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-aql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-aql.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-asl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-asl.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-bro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-bro.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-c_cpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-c_cpp.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-cirru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-cirru.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-cobol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-cobol.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-csp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-csp.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-css.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-curly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-curly.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-d.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-dart.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-diff.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-dot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-dot.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-ejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-ejs.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-elm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-elm.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-forth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-forth.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-fsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-fsl.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-ftl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-ftl.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-gcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-gcode.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-glsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-glsl.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-haml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-haml.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-haxe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-haxe.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-hjson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-hjson.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-html.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-ini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-ini.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-io.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-jack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-jack.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-jade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-jade.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-java.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-java.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-json.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-json5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-json5.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-jsp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-jsp.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-jssm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-jssm.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-jsx.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-julia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-julia.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-latex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-latex.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-less.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-lisp.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-lsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-lsl.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-lua.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-mask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-mask.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-maze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-maze.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-mel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-mel.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-mixal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-mixal.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-mysql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-mysql.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-nginx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-nginx.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-nim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-nim.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-nix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-nix.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-nsis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-nsis.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-ocaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-ocaml.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-perl.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-perl6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-perl6.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-pgsql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-pgsql.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-php.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-pig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-pig.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-praat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-praat.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-qml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-qml.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-r.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-razor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-razor.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-rdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-rdoc.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-red.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-red.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-rhtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-rhtml.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-rst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-rst.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-ruby.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-rust.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-sass.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-scad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-scad.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-scala.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-scss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-scss.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-sh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-sh.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-sjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-sjs.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-slim.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-space.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-space.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-sql.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-svg.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-tcl.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-tex.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-tsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-tsx.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/ace/src-noconflict/mode-xml.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/chart-circle/circles.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/chart-circle/circles.min.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/chart.js/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/chart.js/chart.min.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/datatables/datatables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/datatables/datatables.min.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/datatables/pdfmake.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/datatables/pdfmake.min.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/dropzone/dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/dropzone/dropzone.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/dropzone/dropzone.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/dropzone/dropzone.js.map -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/html2canvas/html2canvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/html2canvas/html2canvas.min.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/jqvmap/jquery.vmap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/jqvmap/jquery.vmap.min.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/jqvmap/maps/jquery.vmap.usa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/jqvmap/maps/jquery.vmap.usa.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/select/bootstrap-select.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/select/bootstrap-select.min.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/select/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/select/select2.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/showdown/showdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/showdown/showdown.min.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/sortable/sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/sortable/sortable.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/sweetalert/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/sweetalert/sweetalert.min.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/tagsinput/suggesttag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/tagsinput/suggesttag.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/tagsinput/typeahead.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/tagsinput/typeahead.bundle.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/vis/vis-network.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/vis/vis-network.min.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/vis/vis.graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/vis/vis.graph.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/vis/vis.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/vis/vis.min.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/webfont/webfont.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/webfont/webfont.min.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/plugin/xss/xss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/plugin/xss/xss.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/js/timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/js/timeline.js -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/_background.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/_components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/_components.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/_flaticon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/_flaticon.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/_font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/_font-awesome.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/_layouts-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/_layouts-colors.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/_layouts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/_layouts.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/_opacity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/_opacity.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/_outlinefocus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/_outlinefocus.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/_plugins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/_plugins.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/_responsive.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/_typography.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/_variables.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_alerts.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_avatars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_avatars.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_badges.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_badges.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_buttons.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_cards.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_charts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_charts.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_dropdowns.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_gutters.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_gutters.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_inputs.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_listgroup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_listgroup.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_loader.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_maps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_maps.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_modals.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_navbars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_navbars.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_navsearch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_navsearch.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_navtabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_navtabs.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_popovers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_popovers.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_progress.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_sliders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_sliders.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_stamps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_stamps.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_tables.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/components/_timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/components/_timeline.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/plugins/_animate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/plugins/_animate.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/plugins/_datatables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/plugins/_datatables.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/plugins/_jqueryui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/plugins/_jqueryui.scss -------------------------------------------------------------------------------- /iris/source/app/static/assets/sass/atlantis/plugins/_sweetalert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/static/assets/sass/atlantis/plugins/_sweetalert.scss -------------------------------------------------------------------------------- /iris/source/app/templates/docx_reports/iris_report_template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/templates/docx_reports/iris_report_template.docx -------------------------------------------------------------------------------- /iris/source/app/templates/includes/datastore-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/templates/includes/datastore-sidebar.html -------------------------------------------------------------------------------- /iris/source/app/templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/templates/includes/footer.html -------------------------------------------------------------------------------- /iris/source/app/templates/includes/footer_case.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/templates/includes/footer_case.html -------------------------------------------------------------------------------- /iris/source/app/templates/includes/header_case.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/templates/includes/header_case.html -------------------------------------------------------------------------------- /iris/source/app/templates/includes/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/templates/includes/navigation.html -------------------------------------------------------------------------------- /iris/source/app/templates/includes/navigation_ext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/templates/includes/navigation_ext.html -------------------------------------------------------------------------------- /iris/source/app/templates/includes/quick-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/templates/includes/quick-sidebar.html -------------------------------------------------------------------------------- /iris/source/app/templates/includes/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/templates/includes/scripts.html -------------------------------------------------------------------------------- /iris/source/app/templates/includes/sidebar_handler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/templates/includes/sidebar_handler.html -------------------------------------------------------------------------------- /iris/source/app/templates/includes/sidenav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/templates/includes/sidenav.html -------------------------------------------------------------------------------- /iris/source/app/templates/layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/templates/layouts/default.html -------------------------------------------------------------------------------- /iris/source/app/templates/layouts/default_centered.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/templates/layouts/default_centered.html -------------------------------------------------------------------------------- /iris/source/app/templates/layouts/default_ext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/templates/layouts/default_ext.html -------------------------------------------------------------------------------- /iris/source/app/templates/layouts/static-default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/templates/layouts/static-default.html -------------------------------------------------------------------------------- /iris/source/app/templates/modals/add_customer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/templates/modals/add_customer.html -------------------------------------------------------------------------------- /iris/source/app/templates/modals/modal_attributes_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/templates/modals/modal_attributes_nav.html -------------------------------------------------------------------------------- /iris/source/app/templates/modals/modal_attributes_tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/templates/modals/modal_attributes_tabs.html -------------------------------------------------------------------------------- /iris/source/app/templates/pages/error-403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/templates/pages/error-403.html -------------------------------------------------------------------------------- /iris/source/app/templates/pages/error-404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/templates/pages/error-404.html -------------------------------------------------------------------------------- /iris/source/app/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/util.py -------------------------------------------------------------------------------- /iris/source/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/app/views.py -------------------------------------------------------------------------------- /iris/source/dependencies/DFIR-IRIS_pkey.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/dependencies/DFIR-IRIS_pkey.asc -------------------------------------------------------------------------------- /iris/source/dependencies/docx_generator-0.8.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/dependencies/docx_generator-0.8.0-py3-none-any.whl -------------------------------------------------------------------------------- /iris/source/dependencies/evtx2splunk-2.0.1-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/dependencies/evtx2splunk-2.0.1-py3-none-any.whl -------------------------------------------------------------------------------- /iris/source/dependencies/evtxdump_binaries/event_bind.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/dependencies/evtxdump_binaries/event_bind.json -------------------------------------------------------------------------------- /iris/source/dependencies/evtxdump_binaries/linux/x64/evtx_dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/dependencies/evtxdump_binaries/linux/x64/evtx_dump -------------------------------------------------------------------------------- /iris/source/dependencies/evtxdump_binaries/linux/x64/fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/dependencies/evtxdump_binaries/linux/x64/fd -------------------------------------------------------------------------------- /iris/source/dependencies/iris_check_module-1.0.1-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/dependencies/iris_check_module-1.0.1-py3-none-any.whl -------------------------------------------------------------------------------- /iris/source/dependencies/iris_evtx-1.2.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/dependencies/iris_evtx-1.2.0-py3-none-any.whl -------------------------------------------------------------------------------- /iris/source/dependencies/iris_intelowl_module-0.1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/dependencies/iris_intelowl_module-0.1.0-py3-none-any.whl -------------------------------------------------------------------------------- /iris/source/dependencies/iris_interface-1.2.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/dependencies/iris_interface-1.2.0-py3-none-any.whl -------------------------------------------------------------------------------- /iris/source/dependencies/iris_misp_module-1.2.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/dependencies/iris_misp_module-1.2.0-py3-none-any.whl -------------------------------------------------------------------------------- /iris/source/dependencies/iris_misp_module-1.3.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/dependencies/iris_misp_module-1.3.0-py3-none-any.whl -------------------------------------------------------------------------------- /iris/source/dependencies/iris_vt_module-1.2.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/dependencies/iris_vt_module-1.2.0-py3-none-any.whl -------------------------------------------------------------------------------- /iris/source/dependencies/iris_vt_module-1.2.1-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/dependencies/iris_vt_module-1.2.1-py3-none-any.whl -------------------------------------------------------------------------------- /iris/source/dependencies/iris_webhooks_module-1.0.2-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/dependencies/iris_webhooks_module-1.0.2-py3-none-any.whl -------------------------------------------------------------------------------- /iris/source/dependencies/iris_webhooks_module-1.0.4-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/dependencies/iris_webhooks_module-1.0.4-py3-none-any.whl -------------------------------------------------------------------------------- /iris/source/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/requirements.txt -------------------------------------------------------------------------------- /iris/source/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/run.py -------------------------------------------------------------------------------- /iris/source/scripts/iris_updater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/scripts/iris_updater.sh -------------------------------------------------------------------------------- /iris/source/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/tests/clean_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/tests/clean_database.py -------------------------------------------------------------------------------- /iris/source/tests/performance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/tests/performance/test_burst_db_interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/tests/performance/test_burst_db_interaction.py -------------------------------------------------------------------------------- /iris/source/tests/test_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/tests/test_helper.py -------------------------------------------------------------------------------- /iris/source/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/tests/unit/blueprints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/tests/unit/blueprints/case/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/tests/unit/blueprints/case/test_case_rfiles_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/tests/unit/blueprints/case/test_case_rfiles_routes.py -------------------------------------------------------------------------------- /iris/source/tests/unit/blueprints/case/test_case_tasks_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/tests/unit/blueprints/case/test_case_tasks_routes.py -------------------------------------------------------------------------------- /iris/source/tests/unit/blueprints/manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/tests/unit/blueprints/manage/test_manage_modules_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/tests/unit/blueprints/manage/test_manage_modules_routes.py -------------------------------------------------------------------------------- /iris/source/tests/unit/datamgmt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/tests/unit/datamgmt/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iris/source/tests/unit/datamgmt/client/test_client_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/source/tests/unit/datamgmt/client/test_client_db.py -------------------------------------------------------------------------------- /iris/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/tests/README.md -------------------------------------------------------------------------------- /iris/tests/data/basic.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/tests/data/basic.env -------------------------------------------------------------------------------- /iris/tests/docker_compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/tests/docker_compose.py -------------------------------------------------------------------------------- /iris/tests/iris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/tests/iris.py -------------------------------------------------------------------------------- /iris/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | requests >= 2.31.0, < 3.0.0 2 | -------------------------------------------------------------------------------- /iris/tests/rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/tests/rest_api.py -------------------------------------------------------------------------------- /iris/tests/server_timeout_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/tests/server_timeout_error.py -------------------------------------------------------------------------------- /iris/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/tests/tests.py -------------------------------------------------------------------------------- /iris/tests/tests_which_require_a_clean_slate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/tests/tests_which_require_a_clean_slate.py -------------------------------------------------------------------------------- /iris/upgrades/upgrade_to_2.0.0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/iris/upgrades/upgrade_to_2.0.0.py -------------------------------------------------------------------------------- /kibana/scripts/setup-kibana.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/kibana/scripts/setup-kibana.sh -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/nginx.conf -------------------------------------------------------------------------------- /nginx/certs/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/nginx/certs/ca.pem -------------------------------------------------------------------------------- /nginx/certs/ca.srl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/nginx/certs/ca.srl -------------------------------------------------------------------------------- /nginx/certs/nginx.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/nginx/certs/nginx.crt -------------------------------------------------------------------------------- /nginx/certs/nginx.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/nginx/certs/nginx.csr -------------------------------------------------------------------------------- /nginx/certs/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/nginx/certs/openssl.cnf -------------------------------------------------------------------------------- /nginx/certs/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/nginx/certs/secret.yaml -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/prometheus/prometheus.yml -------------------------------------------------------------------------------- /velociraptor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/velociraptor/Dockerfile -------------------------------------------------------------------------------- /velociraptor/add_iris_velo_module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/velociraptor/add_iris_velo_module -------------------------------------------------------------------------------- /velociraptor/custom/Custom/Elastic/Flows/Upload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/velociraptor/custom/Custom/Elastic/Flows/Upload.yaml -------------------------------------------------------------------------------- /velociraptor/custom/Custom/Server/IRIS/Module/Create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/velociraptor/custom/Custom/Server/IRIS/Module/Create.yaml -------------------------------------------------------------------------------- /velociraptor/custom/Custom/Welcome.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/velociraptor/custom/Custom/Welcome.yaml -------------------------------------------------------------------------------- /velociraptor/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/velociraptor/entrypoint -------------------------------------------------------------------------------- /zinc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weslambert/velocistack/HEAD/zinc/Dockerfile --------------------------------------------------------------------------------