├── .env.sample ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── feature_request.yml │ └── question.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── cla.yml │ ├── pullrequest.yml │ └── release.yml ├── .gitignore ├── CLA.md ├── DEV.md ├── Dockerfile ├── Dockerfile.dev ├── Dockerfile.tools ├── LICENSE ├── Makefile ├── README.md ├── _libhoop ├── core.go ├── go.mod ├── go.sum ├── libhoop.go ├── llog │ └── llog.go └── proxy │ └── ssh │ └── types │ └── types.go ├── agent ├── config │ └── config.go ├── controller │ ├── agent.go │ ├── const.go │ ├── httpproxy.go │ ├── mongodb.go │ ├── mssql.go │ ├── mysql.go │ ├── postgres.go │ ├── ssh.go │ ├── system │ │ ├── dbprovisioner │ │ │ ├── const.go │ │ │ ├── dbprovisioner.go │ │ │ ├── mssql.go │ │ │ ├── mysql.go │ │ │ └── postgres.go │ │ └── runbookhook │ │ │ └── runbookhook.go │ ├── tcp.go │ ├── terminal-exec.go │ └── terminal.go ├── go.mod ├── go.sum ├── main.go ├── proc.go ├── proc_unix.go ├── proc_windows.go ├── rds │ └── iam_rds.go ├── secretsmanager │ ├── aws.go │ ├── envjson.go │ ├── secretsmanager.go │ ├── vault.go │ └── vault_test.go └── terminal │ └── envvar.go ├── agentrs ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── examples │ ├── generate_cert.rs │ ├── gw.rs │ └── integration_example.rs └── src │ ├── conf.rs │ ├── lib.rs │ ├── main.rs │ ├── proxy.rs │ ├── rdp_proxy.rs │ ├── run.rs │ ├── session.rs │ ├── tls.rs │ ├── ws │ ├── client.rs │ ├── message.rs │ ├── message_types.rs │ ├── mod.rs │ ├── proxy.rs │ ├── rdp_message_processor.rs │ ├── session.rs │ ├── stream.rs │ └── types.rs │ └── x509.rs ├── backedby.png ├── client ├── cmd │ ├── admin │ │ ├── admin.go │ │ ├── apiutils.go │ │ ├── create-agent.go │ │ ├── create-conn.go │ │ ├── create-orgkey.go │ │ ├── create-plugin.go │ │ ├── create-serviceaccount.go │ │ ├── create-user.go │ │ ├── create.go │ │ ├── delete.go │ │ ├── flags.go │ │ ├── get.go │ │ ├── license.go │ │ └── svix.go │ ├── agent.go │ ├── agentrs.go │ ├── config │ │ └── config.go │ ├── connect.go │ ├── daemon │ │ ├── env.go │ │ ├── filesystem.go │ │ ├── filesystem_test.go │ │ ├── linux.go │ │ ├── linux_test.go │ │ ├── osx.go │ │ ├── osx_filesystem.go │ │ ├── osx_filesystem_test.go │ │ ├── osx_test.go │ │ ├── runner.go │ │ ├── test_helpers_test.go │ │ └── types.go │ ├── describe.go │ ├── exec.go │ ├── list.go │ ├── login.go │ ├── proc_unix.go │ ├── proc_windows.go │ ├── proxymanager.go │ ├── root.go │ ├── run.go │ ├── run_test.go │ ├── runbooks │ │ └── runbooks.go │ ├── start.go │ ├── static │ │ └── login.go │ ├── styles │ │ └── styles.go │ └── version.go ├── config │ └── config.go ├── go.mod ├── go.sum ├── hoop.go └── proxy │ ├── defaults.go │ ├── httpproxy.go │ ├── mongodb.go │ ├── mssql.go │ ├── mysql.go │ ├── pg.go │ ├── ssh.go │ ├── tcp.go │ └── terminal.go ├── common ├── Makefile ├── agentcontroller │ └── types.go ├── apiutils │ └── apiutils.go ├── appruntime │ └── runtime.go ├── backoff │ ├── exponential.go │ └── exponential_test.go ├── clientconfig │ └── clientconfig.go ├── dsnkeys │ ├── dsnkeys.go │ └── dsnkeys_test.go ├── envloader │ └── envloader.go ├── go.mod ├── go.sum ├── grpc │ ├── client.go │ ├── metadata.go │ └── streamrecv.go ├── httpclient │ └── httpclient.go ├── keys │ └── keys.go ├── license │ ├── license.go │ └── license_test.go ├── log │ ├── base_encoder.go │ ├── emojis.go │ ├── encoder_utils.go │ ├── events.go │ ├── field_utils.go │ ├── formatters.go │ ├── httpserver.go │ ├── human_encoder.go │ ├── log.go │ └── verbose_encoder.go ├── memory │ ├── memory.go │ └── memstore_test.go ├── mongotypes │ ├── const.go │ ├── packet.go │ └── packet_test.go ├── monitoring │ ├── monitoring.go │ └── runtime.go ├── mssqltypes │ ├── const.go │ ├── login.go │ ├── login_test.go │ ├── packet.go │ ├── rcprequest.go │ ├── rpcrequest_test.go │ ├── sqlbatch.go │ └── sqlbatch_test.go ├── pgtypes │ ├── const.go │ ├── packet.go │ └── packet_test.go ├── proto │ ├── agent │ │ └── agent.go │ ├── client │ │ └── client.go │ ├── const.go │ ├── errors.go │ ├── gateway │ │ └── gateway.go │ ├── spectypes │ │ └── types.go │ ├── system │ │ ├── dbprovisioner.go │ │ └── runbookhook.go │ ├── transport.pb.go │ ├── transport.proto │ ├── transport_grpc.pb.go │ └── types.go ├── runbooks │ ├── config.go │ ├── config_test.go │ ├── git.go │ ├── template_funcs.go │ ├── templates.go │ └── templates_test.go └── version │ └── version.go ├── datagridxl2.js ├── deploy ├── aws │ └── hoopdev-platform.template.yaml ├── docker-compose │ ├── .env-sample │ ├── Dockerfile │ ├── docker-compose.yml │ └── rootfs │ │ └── usr │ │ └── local │ │ └── bin │ │ ├── gateway-healthcheck.sh │ │ └── run-agent.sh └── helm-chart │ ├── README.md │ └── chart │ ├── agent │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── deployment.yaml │ │ ├── extra-agent-config.yaml │ │ ├── secret-config.yaml │ │ └── serviceaccount.yaml │ └── values.yaml │ └── gateway │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ ├── NOTES.txt │ ├── deployment-postgres.yaml │ ├── deployment-presidio.yaml │ ├── deployment.yaml │ ├── ingress-api.yaml │ ├── ingress-grpc.yaml │ ├── ingress-proxy.yaml │ ├── pvc.yaml │ ├── secret-configs.yaml │ ├── service.yaml │ └── serviceaccount.yaml │ └── values.yaml ├── gateway ├── README.md ├── agentcontroller │ ├── client.go │ └── controller.go ├── analytics │ ├── events.go │ ├── intercom.go │ ├── runtime.go │ └── segment.go ├── api │ ├── agents │ │ └── agents.go │ ├── apiroutes │ │ ├── auth.go │ │ ├── roles.go │ │ ├── roles_test.go │ │ ├── router.go │ │ └── tracing.go │ ├── connections │ │ ├── connection_credentials.go │ │ ├── connection_tags.go │ │ ├── connections.go │ │ ├── datamasking_rules.go │ │ ├── defaults.go │ │ ├── helpers.go │ │ ├── helpers_test.go │ │ └── queries_schema.go │ ├── datamasking │ │ └── datamasking.go │ ├── features │ │ ├── askai.go │ │ └── features.go │ ├── guardrails │ │ └── guardrails.go │ ├── healthz │ │ └── healthz.go │ ├── integrations │ │ ├── aws │ │ │ ├── aws.go │ │ │ └── provisioner.go │ │ ├── issuetemplates.go │ │ └── jira.go │ ├── login │ │ ├── local │ │ │ ├── login.go │ │ │ └── register.go │ │ ├── oidc │ │ │ ├── auth0.go │ │ │ └── login.go │ │ └── saml │ │ │ └── login.go │ ├── middleware.go │ ├── openapi │ │ ├── autogen │ │ │ └── docs.go │ │ ├── docs │ │ │ ├── Authentication.md │ │ │ ├── Features.md │ │ │ ├── Proxy Manager.md │ │ │ ├── Server Management.md │ │ │ ├── User Management.md │ │ │ ├── api-connection.md │ │ │ ├── api-login-callback.md │ │ │ ├── api-update-review.md │ │ │ ├── get-session-by-id.md │ │ │ └── run-exec.md │ │ ├── ginvalidators.go │ │ ├── openapi.go │ │ └── types.go │ ├── orgs │ │ ├── orgkeys.go │ │ └── orglicense.go │ ├── pluginconnections │ │ └── pluginconnections.go │ ├── plugins │ │ └── plugin.go │ ├── proxymanager │ │ └── proxymanager.go │ ├── publicserverinfo │ │ └── publicserverinfo.go │ ├── reports │ │ └── sessions.go │ ├── resources │ │ └── resources.go │ ├── review │ │ ├── review.go │ │ └── review_test.go │ ├── runbooks │ │ ├── helpers.go │ │ ├── helpers_test.go │ │ ├── rules.go │ │ ├── runbooks.go │ │ └── runbooksV2.go │ ├── search │ │ ├── helpers.go │ │ └── search.go │ ├── server.go │ ├── serverconfig │ │ ├── auth.go │ │ ├── misc.go │ │ └── misc_test.go │ ├── serverinfo │ │ └── serverinfo.go │ ├── serviceaccount │ │ └── serviceaccount.go │ ├── session │ │ ├── parser.go │ │ ├── run-exec.go │ │ └── session.go │ ├── signup │ │ └── signup.go │ ├── user │ │ └── user.go │ ├── validation │ │ ├── pagination.go │ │ └── validation.go │ └── webhooks │ │ ├── dashboard.go │ │ ├── endpoints.go │ │ ├── eventtypes.go │ │ └── messages.go ├── appconfig │ ├── appconfig.go │ └── tls.go ├── broker │ ├── communicators.go │ ├── headers.go │ ├── protocol_handlers.go │ ├── protocol_manager.go │ ├── protocol_rdp.go │ ├── protocol_types.go │ └── session.go ├── clientexec │ └── clientexec.go ├── cmd │ └── gateway │ │ ├── .env.sample │ │ └── main.go ├── go.mod ├── go.sum ├── guardrails │ ├── guardrails.go │ └── guardrails_test.go ├── idp │ ├── core.go │ ├── core_test.go │ ├── local │ │ └── local.go │ ├── oidc │ │ ├── gsuite.go │ │ ├── oidc.go │ │ └── provider.go │ ├── saml │ │ └── saml.go │ └── types │ │ └── types.go ├── jira │ ├── assetsapi.go │ ├── issuesapi.go │ ├── issuesapi_test.go │ ├── requestsapi.go │ └── types.go ├── jobs │ └── report │ │ └── admin_report.go ├── main.go ├── models │ ├── agents.go │ ├── audit.go │ ├── bootstrap │ │ ├── bootstrap.go │ │ └── migrations │ │ │ └── RunbooksV2.go │ ├── connection_credentials.go │ ├── connection_tags.go │ ├── connections.go │ ├── database.go │ ├── datamasking.go │ ├── dbroles.go │ ├── envvars.go │ ├── errors.go │ ├── guadrails.go │ ├── jira.go │ ├── jira_issue_templates.go │ ├── login.go │ ├── orgs.go │ ├── plugin_connections.go │ ├── plugins.go │ ├── proxymanager.go │ ├── resources.go │ ├── reviews.go │ ├── runbooks.go │ ├── server_auth_config.go │ ├── server_misc_config.go │ ├── serviceaccount.go │ ├── session.go │ ├── session_reports.go │ ├── user_context.go │ ├── user_groups.go │ ├── user_tokens.go │ ├── users.go │ └── usersv2.go ├── proxyproto │ ├── grpckey │ │ └── grpckey.go │ ├── postgresproxy │ │ └── postgresproxy.go │ ├── sshproxy │ │ ├── keys.go │ │ ├── keys_test.go │ │ └── sshproxy.go │ └── tlstermination │ │ ├── buffered_connection.go │ │ ├── tls.go │ │ └── tls_test.go ├── rdp │ ├── parser.go │ ├── parser_test.go │ └── rdp.go ├── session │ ├── eventlog │ │ ├── codec.go │ │ ├── v0 │ │ │ ├── eventlog.go │ │ │ └── eventlog_test.go │ │ └── v1 │ │ │ ├── eventlog.go │ │ │ └── eventlog_test.go │ └── wal │ │ ├── header.go │ │ ├── wal.go │ │ └── wal_test.go ├── slack │ ├── events.go │ └── service.go ├── storagev2 │ ├── clientstate │ │ └── clientstate.go │ ├── core.go │ └── types │ │ ├── const.go │ │ ├── meta.go │ │ └── types.go ├── transport │ ├── agent.go │ ├── auth.go │ ├── client.go │ ├── connectionrequests │ │ ├── connectionsync.go │ │ └── requests.go │ ├── connectionstatus │ │ └── connectionstatus.go │ ├── dispatchers.go │ ├── dispatchers_test.go │ ├── extensions │ │ ├── extension.go │ │ └── runbookhook.go │ ├── interceptors │ │ ├── auth │ │ │ ├── auth.go │ │ │ ├── authunary.go │ │ │ └── context.go │ │ ├── sessionuuid │ │ │ └── sessionuuid.go │ │ └── tracing │ │ │ └── tracing.go │ ├── plugins │ │ ├── accesscontrol │ │ │ └── accesscontrol.go │ │ ├── audit │ │ │ ├── audit.go │ │ │ ├── decoders.go │ │ │ ├── metrics.go │ │ │ └── wal.go │ │ ├── dlp │ │ │ └── dlp.go │ │ ├── review │ │ │ ├── review.go │ │ │ ├── review.oss.go │ │ │ └── review_test.go │ │ ├── slack │ │ │ ├── events.go │ │ │ └── slack.go │ │ ├── types │ │ │ ├── const.go │ │ │ ├── errors.go │ │ │ └── types.go │ │ └── webhooks │ │ │ ├── const.go │ │ │ ├── microsoftteams.review.create.json │ │ │ ├── sender.go │ │ │ ├── session.close.schema.json │ │ │ ├── session.open.schema.json │ │ │ └── webhooks.go │ ├── proxymanager.go │ ├── server.go │ ├── streamclient │ │ ├── agent.go │ │ ├── pluginruntime.go │ │ ├── proxy.go │ │ └── types │ │ │ └── types.go │ ├── system │ │ ├── dbprovisioner.go │ │ ├── queue.go │ │ ├── runbookhook.go │ │ └── session.go │ └── websocket.go ├── utils │ └── slices.go └── webappjs │ └── webappjs.go ├── github.png ├── go.work ├── rootfs ├── app │ └── migrations │ │ ├── 000001_init.down.sql │ │ ├── 000001_init.up.sql │ │ ├── 000002_create_connection_subtype.down.sql │ │ ├── 000002_create_connection_subtype.up.sql │ │ ├── 000003_connection_application_type.down.sql │ │ ├── 000003_connection_application_type.up.sql │ │ ├── 000004_update_user_subject.down.sql │ │ ├── 000004_update_user_subject.up.sql │ │ ├── 000005_login_outcome_size.down.sql │ │ ├── 000005_login_outcome_size.up.sql │ │ ├── 000006_user_profile_pic.down.sql │ │ ├── 000006_user_profile_pic.up.sql │ │ ├── 000007_new_connection_types.down.sql │ │ ├── 000007_new_connection_types.up.sql │ │ ├── 000008_conn_managed_by.down.sql │ │ ├── 000008_conn_managed_by.up.sql │ │ ├── 000009_agent_name.down.sql │ │ ├── 000009_agent_name.up.sql │ │ ├── 000010_agent_token_key_attribute.down.sql │ │ ├── 000010_agent_token_key_attribute.up.sql │ │ ├── 000011_connection_status.down.sql │ │ ├── 000011_connection_status.up.sql │ │ ├── 000012_connection_status_new.down.sql │ │ ├── 000012_connection_status_new.up.sql │ │ ├── 000013_org_license.down.sql │ │ ├── 000013_org_license.up.sql │ │ ├── 000014_ask_ai_feat.down.sql │ │ ├── 000014_ask_ai_feat.up.sql │ │ ├── 000015_postgrest_migrations.down.sql │ │ ├── 000015_postgrest_migrations.up.sql │ │ ├── 000016_session_metrics.down.sql │ │ ├── 000016_session_metrics.up.sql │ │ ├── 000017_connection_tags.down.sql │ │ ├── 000017_connection_tags.up.sql │ │ ├── 000018_conn_tags_bugfix.down.sql │ │ ├── 000018_conn_tags_bugfix.up.sql │ │ ├── 000019_license_file.down.sql │ │ ├── 000019_license_file.up.sql │ │ ├── 000020_conn_add_access_modes.down.sql │ │ ├── 000020_conn_add_access_modes.up.sql │ │ ├── 000021_hotfix_app_state_rollback.down.sql │ │ ├── 000021_hotfix_app_state_rollback.up.sql │ │ ├── 000022_add_local_auth_fields_and_table.down.sql │ │ ├── 000022_add_local_auth_fields_and_table.up.sql │ │ ├── 000023_add_invited_status_to_user_status.down.sql │ │ ├── 000023_add_invited_status_to_user_status.up.sql │ │ ├── 000024_jira_integration.down.sql │ │ ├── 000024_jira_integration.up.sql │ │ ├── 000025_guardrails_rules.down.sql │ │ ├── 000025_guardrails_rules.up.sql │ │ ├── 000026_guardrails_rules_description.down.sql │ │ ├── 000026_guardrails_rules_description.up.sql │ │ ├── 000027_jira_issue_template.down.sql │ │ ├── 000027_jira_issue_template.up.sql │ │ ├── 000028_jira_cmdb.down.sql │ │ ├── 000028_jira_cmdb.up.sql │ │ ├── 000029_jira_servicedesk_api.down.sql │ │ ├── 000029_jira_servicedesk_api.up.sql │ │ ├── 000030_jira_transition_issue.down.sql │ │ ├── 000030_jira_transition_issue.up.sql │ │ ├── 000031_session_exit_code.down.sql │ │ ├── 000031_session_exit_code.up.sql │ │ ├── 000032_dbrole_jobs.down.sql │ │ ├── 000032_dbrole_jobs.up.sql │ │ ├── 000033_dbrole_jobs_enhanc.down.sql │ │ ├── 000033_dbrole_jobs_enhanc.up.sql │ │ ├── 000034_tags_key_val.down.sql │ │ ├── 000034_tags_key_val.up.sql │ │ ├── 000035_session_connection_tags.down.sql │ │ ├── 000035_session_connection_tags.up.sql │ │ ├── 000036_dbroles_hook_status.down.sql │ │ ├── 000036_dbroles_hook_status.up.sql │ │ ├── 000037_blob_format.down.sql │ │ ├── 000037_blob_format.up.sql │ │ ├── 000038_data_masking.down.sql │ │ ├── 000038_data_masking.up.sql │ │ ├── 000039_data_masking_score_threshold.down.sql │ │ ├── 000039_data_masking_score_threshold.up.sql │ │ ├── 000040_serverconfig.down.sql │ │ ├── 000040_serverconfig.up.sql │ │ ├── 000041_auth_config.down.sql │ │ ├── 000041_auth_config.up.sql │ │ ├── 000042_auth_provider_type.down.sql │ │ ├── 000042_auth_provider_type.up.sql │ │ ├── 000043_connection_db_access.down.sql │ │ ├── 000043_connection_db_access.up.sql │ │ ├── 000044_connection_credentials.down.sql │ │ ├── 000044_connection_credentials.up.sql │ │ ├── 000045_rdp_server_config.down.sql │ │ ├── 000045_rdp_server_config.up.sql │ │ ├── 000046_remove_oracle_ld.down.sql │ │ ├── 000046_remove_oracle_ld.up.sql │ │ ├── 000047_resources.down.sql │ │ ├── 000047_resources.up.sql │ │ ├── 000048_add_runbooks_table.down.sql │ │ ├── 000048_add_runbooks_table.up.sql │ │ ├── 000049_add_resources_subtype.down.sql │ │ ├── 000049_add_resources_subtype.up.sql │ │ ├── 000050_add_user_tokens.down.sql │ │ ├── 000050_add_user_tokens.up.sql │ │ ├── 000051_remove_constraint.down.sql │ │ └── 000051_remove_constraint.up.sql ├── opt │ └── hoop │ │ └── bin │ │ ├── aws-ssm.sh │ │ └── mongo └── usr │ └── local │ └── bin │ ├── bash │ ├── bq │ ├── ecs-exec.sh │ ├── hoop-default-agent.sh │ └── mysql ├── scripts ├── create_rdp_connection.sh ├── create_rdp_credentials.sh ├── dev │ ├── Dockerfile │ ├── build-webapp.sh │ ├── entrypoint.sh │ ├── run-postgres.sh │ ├── run-presidio.sh │ └── run.sh ├── generate-changelog.sh ├── install-cli.sh ├── install-rust.sh ├── install.sh ├── merge-artifacts.sh └── publish-release.sh ├── signatures └── version1 │ └── cla.json └── webapp ├── .cursorignore ├── .dockerignore ├── .editorconfig ├── .env.sample ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── CLAUDE.md ├── Dockerfile ├── Makefile ├── README.md ├── dev └── user.cljs ├── docker-compose.yml ├── karma.conf.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── resources └── public │ ├── asciinema-player.css │ ├── data │ └── connections-metadata.json │ ├── icons │ ├── automatic-resources │ │ ├── aws.svg │ │ └── mongodb.svg │ ├── connections │ │ ├── aws-cloudwatch-default.svg │ │ ├── aws-default.svg │ │ ├── aws-dynamodb-default.svg │ │ ├── aws-rounded.svg │ │ ├── awscli-default.svg │ │ ├── awscli-rounded.svg │ │ ├── cassandra-default.svg │ │ ├── clojure-default.svg │ │ ├── clojure-rounded.svg │ │ ├── custom-ssh.svg │ │ ├── custom-tcp-http.svg │ │ ├── django-default.svg │ │ ├── docker-default.svg │ │ ├── docker-rounded.svg │ │ ├── elixir-default.svg │ │ ├── git-default.svg │ │ ├── git-rounded.svg │ │ ├── google-bigquery-default.svg │ │ ├── googlecloud-default.svg │ │ ├── googlecloud-rounded.svg │ │ ├── helm-default.svg │ │ ├── helm-rounded.svg │ │ ├── httpproxy-default.svg │ │ ├── kubernetes-default.svg │ │ ├── kubernetes-rounded.svg │ │ ├── laravel-default.svg │ │ ├── mongodb-default.svg │ │ ├── mongodb-rounded.svg │ │ ├── mssql-default.svg │ │ ├── mssql-rounded.svg │ │ ├── mysql-default.svg │ │ ├── mysql-rounded.svg │ │ ├── node-default.svg │ │ ├── node-rounded.svg │ │ ├── npm-default.svg │ │ ├── npm-rounded.svg │ │ ├── oracle-default.svg │ │ ├── oracle-rounded.svg │ │ ├── postgres-default.svg │ │ ├── postgres-rounded.svg │ │ ├── python-default.svg │ │ ├── python-rounded.svg │ │ ├── rails-default.svg │ │ ├── rails-rounded.svg │ │ ├── redis-default.svg │ │ ├── sentry-default.svg │ │ ├── sentry-rounded.svg │ │ ├── ssh-default.svg │ │ ├── tcp-default.svg │ │ ├── yarn-default.svg │ │ └── yarn-rounded.svg │ ├── hero-icon-chevron-double-left-white.svg │ ├── hero-icon-chevron-double-right-white.svg │ ├── hero-icon-clipboard-black.svg │ ├── hero-icon-clipboard-blue.svg │ ├── hero-icon-code-black.svg │ ├── hero-icon-code-white.svg │ ├── hero-icon-cog-8-tooth-white.svg │ ├── hero-icon-document-black.svg │ ├── hero-icon-download.svg │ ├── hero-icon-exit-red.svg │ ├── hero-icon-external-link-black.svg │ ├── hero-icon-external-link-blue.svg │ ├── hero-icon-external-link-white.svg │ ├── hero-icon-outline-book-open-white.svg │ ├── hero-icon-outline-code-bracket-square-white.svg │ ├── hero-icon-outline-home-black.svg │ ├── hero-icon-outline-home-white.svg │ ├── hero-icon-outline-inbox-white.svg │ ├── hero-icon-outline-pencil-square-white.svg │ ├── hero-icon-outline-puzzle-piece-black.svg │ ├── hero-icon-outline-puzzle-piece-white.svg │ ├── hero-icon-outline-session-white.svg │ ├── hero-icon-play-circle-black.svg │ ├── hero-icon-play-circle-blue.svg │ ├── hero-icon-play-circle-white.svg │ ├── hero-icon-plus-circle-white.svg │ ├── hero-icon-settings-black.svg │ ├── hero-icon-settings-blue.svg │ ├── hero-icon-settings-white.svg │ ├── hero-icon-sparkles-black.svg │ ├── icon-arrow-left-blue.svg │ ├── icon-arrow-right-blue.svg │ ├── icon-arrow-right-thin.svg │ ├── icon-arrows-pointing-out.svg │ ├── icon-cable-black.svg │ ├── icon-cable.svg │ ├── icon-check-black.svg │ ├── icon-check-blue.svg │ ├── icon-check-green.svg │ ├── icon-check-white.svg │ ├── icon-cheveron-down-blue.svg │ ├── icon-cheveron-down-white.svg │ ├── icon-cheveron-down.svg │ ├── icon-cheveron-up-blue.svg │ ├── icon-cheveron-up-white.svg │ ├── icon-cheveron-up.svg │ ├── icon-close-red.svg │ ├── icon-close-white.svg │ ├── icon-close.svg │ ├── icon-code-black.svg │ ├── icon-copy-white.svg │ ├── icon-copy.svg │ ├── icon-db-column-index.svg │ ├── icon-document-black.svg │ ├── icon-document-blue.svg │ ├── icon-document-gray.svg │ ├── icon-dots-horizontal-white.svg │ ├── icon-dots-horizontal.svg │ ├── icon-dots-vertical.svg │ ├── icon-external-window-blue.svg │ ├── icon-external-window.svg │ ├── icon-field-dark-gray.svg │ ├── icon-folder-dark-gray.svg │ ├── icon-folder.svg │ ├── icon-grid-gray.svg │ ├── icon-help-black.svg │ ├── icon-help-with-circle-black.svg │ ├── icon-help-with-thin-circle-black.svg │ ├── icon-important-red.svg │ ├── icon-index.svg │ ├── icon-information-white.svg │ ├── icon-jira-current-color.svg │ ├── icon-jira.svg │ ├── icon-layers-dark-gray.svg │ ├── icon-list-gray.svg │ ├── icon-loader-circle-white.svg │ ├── icon-loader-circle.svg │ ├── icon-note-pencil.svg │ ├── icon-play-black.svg │ ├── icon-play-blue.svg │ ├── icon-play-green.svg │ ├── icon-play-white.svg │ ├── icon-plus-blue.svg │ ├── icon-plus-dark-gray.svg │ ├── icon-plus-gray.svg │ ├── icon-plus-green.svg │ ├── icon-plus-red.svg │ ├── icon-plus-white.svg │ ├── icon-plus.svg │ ├── icon-refresh-blue.svg │ ├── icon-refresh.svg │ ├── icon-search.svg │ ├── icon-table.svg │ ├── icon-triangle-right-arrow.svg │ ├── icon-user-couple.svg │ ├── icon-user-green.svg │ ├── icon-user-group.svg │ ├── icon-user-white.svg │ ├── icon-user.svg │ ├── icon-waiting-circle-yellow.svg │ ├── icon-watch-black.svg │ └── identity-providers │ │ ├── auth0.svg │ │ ├── aws-cognito.svg │ │ ├── azure.svg │ │ ├── google.svg │ │ ├── jumpcloud.svg │ │ └── okta.svg │ ├── images │ ├── Illustration-1.png │ ├── Illustration-2.png │ ├── Illustration-3.png │ ├── Illustration-4.png │ ├── Illustration-5.png │ ├── Illustration-6.png │ ├── Illustration-7.png │ ├── Slack_icon_2019.svg │ ├── application-connections-small.svg │ ├── application-connections.svg │ ├── aws_ecs_small.svg │ ├── aws_logo.svg │ ├── bash_small.svg │ ├── bastion_logo.svg │ ├── command-line-dark.svg │ ├── command-line-light.svg │ ├── command-line.svg │ ├── connections-logos.zip │ ├── connections-logos │ │ ├── aws_logo.svg │ │ ├── bastion_logo.svg │ │ ├── clojure_logo.svg │ │ ├── command-line.svg │ │ ├── dark │ │ │ ├── custom_dark.svg │ │ │ ├── mysql_dark.png │ │ │ ├── node_dark.svg │ │ │ ├── rails_dark.svg │ │ │ └── tcp_dark.svg │ │ ├── elixir_small.svg │ │ ├── heroku_logo.svg │ │ ├── k8s_apply_small.svg │ │ ├── k8s_exec_small.svg │ │ ├── k8s_logo.svg │ │ ├── k8s_small.svg │ │ ├── light │ │ │ ├── custom_light.svg │ │ │ ├── mysql_light.png │ │ │ ├── node_light.svg │ │ │ ├── rails_light.svg │ │ │ └── tcp_light.svg │ │ ├── mongodb_logo.svg │ │ ├── mongodb_small.svg │ │ ├── mysql_logo.png │ │ ├── mysql_small.svg │ │ ├── node_logo.svg │ │ ├── node_small.svg │ │ ├── oracle.png │ │ ├── oracle_logo.svg │ │ ├── postgres_logo.svg │ │ ├── python_logo.svg │ │ ├── rails_console_ecs_small.svg │ │ ├── rails_console_k8s_small.svg │ │ ├── rails_console_small.svg │ │ ├── rails_logo.svg │ │ ├── sql-server_logo.svg │ │ ├── sql-server_small.svg │ │ └── tcp_logo.svg │ ├── custom-connections-small.svg │ ├── custom-connections.svg │ ├── database-connections-small.svg │ ├── database-connections.svg │ ├── docker-blue.svg │ ├── docker-dark.svg │ ├── docker-light.svg │ ├── elixir_small.svg │ ├── github-mark-icon.png │ ├── hashicorp-vault_small.svg │ ├── heroku_logo.svg │ ├── hoop-branding │ │ ├── PNG │ │ │ ├── hoop-symbol+text_black@4x.png │ │ │ ├── hoop-symbol+text_black_vertical@4x.png │ │ │ ├── hoop-symbol+text_white-vertical@4x.png │ │ │ ├── hoop-symbol+text_white@4x.png │ │ │ ├── hoop-symbol_black@4x.png │ │ │ └── hoop-symbol_white@4x.png │ │ └── SVG │ │ │ ├── hoop-symbol+text_black.svg │ │ │ ├── hoop-symbol+text_black_vertical.svg │ │ │ ├── hoop-symbol+text_white-vertical.svg │ │ │ ├── hoop-symbol+text_white.svg │ │ │ ├── hoop-symbol_black.svg │ │ │ └── hoop-symbol_white.svg │ ├── hoop-run-connections.svg │ ├── illustrations │ │ ├── access-control-promotion.png │ │ ├── cli-promotion.png │ │ ├── data-masking-promotion.png │ │ ├── disk.svg │ │ ├── empty-state.png │ │ ├── gameboy.svg │ │ ├── guardrails-promotion.png │ │ ├── jira-pomotion.png │ │ ├── keyboard.svg │ │ ├── pc+monitor.svg │ │ ├── pc.svg │ │ ├── runbooks-promotion.png │ │ ├── telephone.svg │ │ ├── typingmachine.svg │ │ ├── user-manage-promotion.png │ │ └── videogame.svg │ ├── k8s_apply_small.svg │ ├── k8s_exec_small.svg │ ├── k8s_logo.svg │ ├── k8s_small.svg │ ├── kubernetes-dark.svg │ ├── kubernetes-light.svg │ ├── manual-connections.svg │ ├── mongodb_logo.svg │ ├── mongodb_small.svg │ ├── mysql-dolphin-icon.png │ ├── mysql_small.svg │ ├── node_small.svg │ ├── postgres_logo.svg │ ├── postgres_small.svg │ ├── postgresql-512-icon-black.webp │ ├── postgresql-icon-blue.webp │ ├── python_logo.svg │ ├── python_small.svg │ ├── quickstart-connections.svg │ ├── rails_console_ecs_small.svg │ ├── rails_console_k8s_small.svg │ ├── rails_console_small.svg │ ├── rails_small.svg │ ├── sql-server_logo.svg │ ├── sql-server_small.svg │ ├── stripe-logo.svg │ ├── tcp-connections-small.svg │ ├── tcp.svg │ ├── terminal_logo.svg │ ├── upgrade-plan.png │ └── webhooks.svg │ ├── index.html │ └── netlify.toml ├── scripts └── download-connection-metadata.sh ├── shadow-cljs.edn ├── src ├── css │ ├── cmdk.css │ ├── highlight.css │ ├── style.css │ └── tailwind.css └── webapp │ ├── agents │ ├── deployment.cljs │ ├── new.cljs │ └── panel.cljs │ ├── ai_data_masking │ ├── basic_info.cljs │ ├── connections_section.cljs │ ├── create_update_form.cljs │ ├── events.cljs │ ├── form_header.cljs │ ├── helpers.cljs │ ├── main.cljs │ ├── rule_buttons.cljs │ ├── rule_list.cljs │ ├── rules_table.cljs │ └── subs.cljs │ ├── app.cljs │ ├── audit │ └── views │ │ ├── audit_filters.cljs │ │ ├── empty_event_stream.cljs │ │ ├── main.cljs │ │ ├── results_container.cljs │ │ ├── session_data_raw.cljs │ │ ├── session_data_video.cljs │ │ ├── session_details.cljs │ │ ├── session_item.cljs │ │ ├── sessions_filtered_by_id.cljs │ │ └── sessions_list.cljs │ ├── auth │ ├── local │ │ ├── login.cljs │ │ └── register.cljs │ └── views │ │ ├── login_panel.cljs │ │ ├── logout.cljs │ │ └── signup.cljs │ ├── components │ ├── accordion.cljs │ ├── ag_grid_table.cljs │ ├── badge.cljs │ ├── button.cljs │ ├── callout_link.cljs │ ├── card.cljs │ ├── charts.cljs │ ├── checkboxes.cljs │ ├── code_snippet.cljs │ ├── codemirror_editor.cljs │ ├── combobox.cljs │ ├── command_dialog.cljs │ ├── connections_select.cljs │ ├── data_table_simple.cljs │ ├── data_table_simple_example.cljs │ ├── dialog.cljs │ ├── divider.cljs │ ├── draggable_card.cljs │ ├── flip_card.cljs │ ├── forms.cljs │ ├── headings.cljs │ ├── icon.cljs │ ├── infinite_scroll.cljs │ ├── keyboard_shortcuts.cljs │ ├── loaders.cljs │ ├── logs_container.cljs │ ├── modal.cljs │ ├── multiselect.cljs │ ├── notification_badge.cljs │ ├── paginated_searchbox.cljs │ ├── popover.cljs │ ├── radio_button.cljs │ ├── searchbox.cljs │ ├── selection_card.cljs │ ├── snackbar.cljs │ ├── stepper.cljs │ ├── table.cljs │ ├── tabs.cljs │ ├── tabs_v2.cljs │ ├── text_with_markdown_link.cljs │ ├── theme_provider.cljs │ ├── timer.cljs │ ├── toast.cljs │ ├── toggle.cljs │ ├── tooltip.cljs │ ├── typography.cljs │ ├── user_icon.cljs │ └── virtualized_list.cljs │ ├── config.cljs │ ├── connections │ ├── constants.cljs │ ├── dlp_info_types.cljs │ ├── helpers.cljs │ ├── native_client_access │ │ ├── constants.cljs │ │ ├── events.cljs │ │ └── main.cljs │ └── views │ │ ├── connection_list.cljs │ │ ├── connection_settings_modal.cljs │ │ ├── connections_filter.cljs │ │ ├── hoop_cli_modal.cljs │ │ ├── resource_catalog │ │ ├── category_section.cljs │ │ ├── connection_detail_modal.cljs │ │ ├── filters.cljs │ │ ├── helpers.cljs │ │ └── main.cljs │ │ ├── setup │ │ ├── additional_configuration.cljs │ │ ├── agent_selector.cljs │ │ ├── configuration_inputs.cljs │ │ ├── connection_update_form.cljs │ │ ├── database.cljs │ │ ├── events │ │ │ ├── db_events.cljs │ │ │ ├── effects.cljs │ │ │ ├── process_form.cljs │ │ │ ├── ssh.cljs │ │ │ └── subs.cljs │ │ ├── footer.cljs │ │ ├── headers.cljs │ │ ├── installation.cljs │ │ ├── main.cljs │ │ ├── metadata_driven.cljs │ │ ├── network.cljs │ │ ├── page_wrapper.cljs │ │ ├── server.cljs │ │ ├── state.cljs │ │ ├── stepper.cljs │ │ ├── tag_select_example.cljs │ │ ├── tags_inputs.cljs │ │ ├── tags_utils.cljs │ │ └── type_selector.cljs │ │ ├── tag_selector.cljs │ │ └── test_connection_modal.cljs │ ├── core.cljs │ ├── dashboard │ ├── coming_soon.cljs │ ├── connection_chart.cljs │ ├── main.cljs │ ├── redacted_data_chart.cljs │ └── review_chart.cljs │ ├── db.cljs │ ├── env.cljs │ ├── events.cljs │ ├── events │ ├── agents.cljs │ ├── ask_ai.cljs │ ├── audit.cljs │ ├── auth.cljs │ ├── clarity.cljs │ ├── components │ │ ├── dialog.cljs │ │ ├── draggable_card.cljs │ │ ├── modal.cljs │ │ ├── sidebar.cljs │ │ └── toast.cljs │ ├── connections.cljs │ ├── connections_filters.cljs │ ├── database_schema.cljs │ ├── editor_plugin.cljs │ ├── gateway_info.cljs │ ├── guardrails.cljs │ ├── hoop_app.cljs │ ├── indexer_plugin.cljs │ ├── jira_integration.cljs │ ├── jira_templates.cljs │ ├── jobs.cljs │ ├── license.cljs │ ├── localauth.cljs │ ├── organization.cljs │ ├── plugins.cljs │ ├── reports.cljs │ ├── resources.cljs │ ├── reviews_plugin.cljs │ ├── routes.cljs │ ├── segment.cljs │ ├── slack.cljs │ ├── slack_plugin.cljs │ ├── tracking.cljs │ └── users.cljs │ ├── features │ ├── access_control │ │ ├── events.cljs │ │ ├── main.cljs │ │ ├── subs.cljs │ │ └── views │ │ │ ├── empty_state.cljs │ │ │ ├── group_form.cljs │ │ │ └── group_list.cljs │ ├── promotion.cljs │ ├── runbooks │ │ ├── helpers.cljs │ │ ├── runner │ │ │ ├── events.cljs │ │ │ ├── main.cljs │ │ │ ├── subs.cljs │ │ │ └── views │ │ │ │ ├── connections_dialog.cljs │ │ │ │ ├── form.cljs │ │ │ │ ├── list.cljs │ │ │ │ └── metadata_panel.cljs │ │ └── setup │ │ │ ├── events.cljs │ │ │ ├── main.cljs │ │ │ ├── subs.cljs │ │ │ └── views │ │ │ ├── configuration_view.cljs │ │ │ ├── empty_state.cljs │ │ │ ├── runbook_list.cljs │ │ │ └── runbook_rule_form.cljs │ └── users │ │ ├── events.cljs │ │ ├── main.cljs │ │ ├── subs.cljs │ │ └── views │ │ ├── empty_state.cljs │ │ ├── user_form.cljs │ │ └── user_list.cljs │ ├── formatters.cljs │ ├── guardrails │ ├── basic_info.cljs │ ├── connections_section.cljs │ ├── create_update_form.cljs │ ├── form_header.cljs │ ├── helpers.cljs │ ├── main.cljs │ ├── rule_buttons.cljs │ └── rules_table.cljs │ ├── http │ ├── api.cljs │ └── request.cljs │ ├── integrations │ ├── authentication │ │ ├── events.cljs │ │ ├── main.cljs │ │ ├── subs.cljs │ │ └── views │ │ │ ├── advanced_tab.cljs │ │ │ ├── general_tab.cljs │ │ │ └── providers │ │ │ └── form_fields.cljs │ ├── aws_connect.cljs │ ├── events.cljs │ └── jira │ │ └── main.cljs │ ├── jira_templates │ ├── basic_info.cljs │ ├── cmdb_error.cljs │ ├── cmdb_table.cljs │ ├── connections_section.cljs │ ├── create_update_form.cljs │ ├── form_header.cljs │ ├── helpers.cljs │ ├── loading_jira_templates.cljs │ ├── main.cljs │ ├── mapping_table.cljs │ ├── preset_mapping_table.cljs │ ├── prompt_form.cljs │ ├── prompts_table.cljs │ ├── rule_buttons.cljs │ ├── template_list.cljs │ └── workflow_info.cljs │ ├── onboarding │ ├── aws_connect.cljs │ ├── events │ │ ├── aws_connect_events.cljs │ │ └── effects.cljs │ ├── main.cljs │ ├── resource_providers.cljs │ ├── setup.cljs │ ├── setup_agent.cljs │ └── setup_resource.cljs │ ├── organization │ └── users │ │ ├── form.cljs │ │ └── main.cljs │ ├── plugins │ └── views │ │ ├── manage_plugin.cljs │ │ ├── plugin_configurations │ │ ├── access_control.cljs │ │ ├── ask_ai.cljs │ │ ├── container.cljs │ │ ├── jira.cljs │ │ └── slack.cljs │ │ └── plugins_configurations.cljs │ ├── resources │ ├── add_role │ │ ├── events.cljs │ │ └── main.cljs │ ├── configure │ │ ├── information_tab.cljs │ │ ├── main.cljs │ │ └── roles_tab.cljs │ ├── configure_role │ │ ├── credentials_tab.cljs │ │ ├── details_tab.cljs │ │ ├── main.cljs │ │ ├── native_access_tab.cljs │ │ └── terminal_access_tab.cljs │ ├── constants.cljs │ ├── events.cljs │ ├── helpers.cljs │ ├── main.cljs │ ├── setup │ │ ├── agent_step.cljs │ │ ├── configuration_inputs.cljs │ │ ├── events │ │ │ ├── effects.cljs │ │ │ ├── process_form.cljs │ │ │ └── subs.cljs │ │ ├── main.cljs │ │ ├── page_wrapper.cljs │ │ ├── resource_name_step.cljs │ │ ├── roles_step.cljs │ │ └── success_step.cljs │ └── subs.cljs │ ├── reviews │ ├── panel.cljs │ ├── review_detail.cljs │ └── review_item.cljs │ ├── routes.cljs │ ├── settings │ ├── infrastructure │ │ ├── events.cljs │ │ ├── main.cljs │ │ └── subs.cljs │ └── license │ │ └── panel.cljs │ ├── shared_ui │ ├── cmdk │ │ ├── command_palette.cljs │ │ ├── command_palette_constants.cljs │ │ ├── command_palette_pages.cljs │ │ └── events │ │ │ └── command_palette.cljs │ └── sidebar │ │ ├── components │ │ ├── nav_link.cljs │ │ ├── profile.cljs │ │ └── section.cljs │ │ ├── constants.cljs │ │ ├── main.cljs │ │ ├── navigation.cljs │ │ └── styles.cljs │ ├── slack │ ├── slack_new_organization.cljs │ └── slack_new_user.cljs │ ├── subs.cljs │ ├── upgrade_plan │ └── main.cljs │ ├── utilities.cljs │ ├── views │ └── home.cljs │ └── webclient │ ├── codemirror │ └── extensions.cljs │ ├── components │ ├── alerts_carousel.cljs │ ├── connection_dialog.cljs │ ├── database_schema.cljs │ ├── header.cljs │ ├── language_select.cljs │ ├── panels │ │ ├── database_schema.cljs │ │ ├── metadata.cljs │ │ └── multiple_connections.cljs │ ├── search.cljs │ └── side_panel.cljs │ ├── events │ ├── codemirror.cljs │ ├── metadata.cljs │ ├── multiple_connection_execution.cljs │ ├── multiple_connections.cljs │ ├── primary_connection.cljs │ └── search.cljs │ ├── exec_multiples_connections │ └── exec_list.cljs │ ├── log_area │ ├── logs.cljs │ ├── main.cljs │ └── output_tabs.cljs │ ├── panel.cljs │ └── quickstart.cljs ├── tailwind.config.js └── test └── webapp └── core_test.cljs /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/.env.sample -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.github/workflows/pullrequest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/.github/workflows/pullrequest.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/.gitignore -------------------------------------------------------------------------------- /CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/CLA.md -------------------------------------------------------------------------------- /DEV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/DEV.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/Dockerfile.dev -------------------------------------------------------------------------------- /Dockerfile.tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/Dockerfile.tools -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/README.md -------------------------------------------------------------------------------- /_libhoop/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/_libhoop/core.go -------------------------------------------------------------------------------- /_libhoop/go.mod: -------------------------------------------------------------------------------- 1 | module libhoop 2 | 3 | go 1.22.4 4 | 5 | require ( 6 | github.com/creack/pty v1.1.21 7 | ) 8 | -------------------------------------------------------------------------------- /_libhoop/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/_libhoop/go.sum -------------------------------------------------------------------------------- /_libhoop/libhoop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/_libhoop/libhoop.go -------------------------------------------------------------------------------- /_libhoop/llog/llog.go: -------------------------------------------------------------------------------- 1 | package llog 2 | 3 | func ReinitializeLogger() { 4 | } 5 | -------------------------------------------------------------------------------- /_libhoop/proxy/ssh/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/_libhoop/proxy/ssh/types/types.go -------------------------------------------------------------------------------- /agent/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/config/config.go -------------------------------------------------------------------------------- /agent/controller/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/controller/agent.go -------------------------------------------------------------------------------- /agent/controller/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/controller/const.go -------------------------------------------------------------------------------- /agent/controller/httpproxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/controller/httpproxy.go -------------------------------------------------------------------------------- /agent/controller/mongodb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/controller/mongodb.go -------------------------------------------------------------------------------- /agent/controller/mssql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/controller/mssql.go -------------------------------------------------------------------------------- /agent/controller/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/controller/mysql.go -------------------------------------------------------------------------------- /agent/controller/postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/controller/postgres.go -------------------------------------------------------------------------------- /agent/controller/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/controller/ssh.go -------------------------------------------------------------------------------- /agent/controller/system/dbprovisioner/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/controller/system/dbprovisioner/const.go -------------------------------------------------------------------------------- /agent/controller/system/dbprovisioner/mssql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/controller/system/dbprovisioner/mssql.go -------------------------------------------------------------------------------- /agent/controller/system/dbprovisioner/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/controller/system/dbprovisioner/mysql.go -------------------------------------------------------------------------------- /agent/controller/system/dbprovisioner/postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/controller/system/dbprovisioner/postgres.go -------------------------------------------------------------------------------- /agent/controller/system/runbookhook/runbookhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/controller/system/runbookhook/runbookhook.go -------------------------------------------------------------------------------- /agent/controller/tcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/controller/tcp.go -------------------------------------------------------------------------------- /agent/controller/terminal-exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/controller/terminal-exec.go -------------------------------------------------------------------------------- /agent/controller/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/controller/terminal.go -------------------------------------------------------------------------------- /agent/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/go.mod -------------------------------------------------------------------------------- /agent/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/go.sum -------------------------------------------------------------------------------- /agent/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/main.go -------------------------------------------------------------------------------- /agent/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/proc.go -------------------------------------------------------------------------------- /agent/proc_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/proc_unix.go -------------------------------------------------------------------------------- /agent/proc_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/proc_windows.go -------------------------------------------------------------------------------- /agent/rds/iam_rds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/rds/iam_rds.go -------------------------------------------------------------------------------- /agent/secretsmanager/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/secretsmanager/aws.go -------------------------------------------------------------------------------- /agent/secretsmanager/envjson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/secretsmanager/envjson.go -------------------------------------------------------------------------------- /agent/secretsmanager/secretsmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/secretsmanager/secretsmanager.go -------------------------------------------------------------------------------- /agent/secretsmanager/vault.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/secretsmanager/vault.go -------------------------------------------------------------------------------- /agent/secretsmanager/vault_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/secretsmanager/vault_test.go -------------------------------------------------------------------------------- /agent/terminal/envvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agent/terminal/envvar.go -------------------------------------------------------------------------------- /agentrs/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /agentrs/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/Cargo.lock -------------------------------------------------------------------------------- /agentrs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/Cargo.toml -------------------------------------------------------------------------------- /agentrs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/README.md -------------------------------------------------------------------------------- /agentrs/examples/generate_cert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/examples/generate_cert.rs -------------------------------------------------------------------------------- /agentrs/examples/gw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/examples/gw.rs -------------------------------------------------------------------------------- /agentrs/examples/integration_example.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/examples/integration_example.rs -------------------------------------------------------------------------------- /agentrs/src/conf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/src/conf.rs -------------------------------------------------------------------------------- /agentrs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/src/lib.rs -------------------------------------------------------------------------------- /agentrs/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/src/main.rs -------------------------------------------------------------------------------- /agentrs/src/proxy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/src/proxy.rs -------------------------------------------------------------------------------- /agentrs/src/rdp_proxy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/src/rdp_proxy.rs -------------------------------------------------------------------------------- /agentrs/src/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/src/run.rs -------------------------------------------------------------------------------- /agentrs/src/session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/src/session.rs -------------------------------------------------------------------------------- /agentrs/src/tls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/src/tls.rs -------------------------------------------------------------------------------- /agentrs/src/ws/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/src/ws/client.rs -------------------------------------------------------------------------------- /agentrs/src/ws/message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/src/ws/message.rs -------------------------------------------------------------------------------- /agentrs/src/ws/message_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/src/ws/message_types.rs -------------------------------------------------------------------------------- /agentrs/src/ws/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/src/ws/mod.rs -------------------------------------------------------------------------------- /agentrs/src/ws/proxy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/src/ws/proxy.rs -------------------------------------------------------------------------------- /agentrs/src/ws/rdp_message_processor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/src/ws/rdp_message_processor.rs -------------------------------------------------------------------------------- /agentrs/src/ws/session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/src/ws/session.rs -------------------------------------------------------------------------------- /agentrs/src/ws/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/src/ws/stream.rs -------------------------------------------------------------------------------- /agentrs/src/ws/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/src/ws/types.rs -------------------------------------------------------------------------------- /agentrs/src/x509.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/agentrs/src/x509.rs -------------------------------------------------------------------------------- /backedby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/backedby.png -------------------------------------------------------------------------------- /client/cmd/admin/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/admin/admin.go -------------------------------------------------------------------------------- /client/cmd/admin/apiutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/admin/apiutils.go -------------------------------------------------------------------------------- /client/cmd/admin/create-agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/admin/create-agent.go -------------------------------------------------------------------------------- /client/cmd/admin/create-conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/admin/create-conn.go -------------------------------------------------------------------------------- /client/cmd/admin/create-orgkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/admin/create-orgkey.go -------------------------------------------------------------------------------- /client/cmd/admin/create-plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/admin/create-plugin.go -------------------------------------------------------------------------------- /client/cmd/admin/create-serviceaccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/admin/create-serviceaccount.go -------------------------------------------------------------------------------- /client/cmd/admin/create-user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/admin/create-user.go -------------------------------------------------------------------------------- /client/cmd/admin/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/admin/create.go -------------------------------------------------------------------------------- /client/cmd/admin/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/admin/delete.go -------------------------------------------------------------------------------- /client/cmd/admin/flags.go: -------------------------------------------------------------------------------- 1 | package admin 2 | 3 | var outputFlag string 4 | -------------------------------------------------------------------------------- /client/cmd/admin/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/admin/get.go -------------------------------------------------------------------------------- /client/cmd/admin/license.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/admin/license.go -------------------------------------------------------------------------------- /client/cmd/admin/svix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/admin/svix.go -------------------------------------------------------------------------------- /client/cmd/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/agent.go -------------------------------------------------------------------------------- /client/cmd/agentrs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/agentrs.go -------------------------------------------------------------------------------- /client/cmd/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/config/config.go -------------------------------------------------------------------------------- /client/cmd/connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/connect.go -------------------------------------------------------------------------------- /client/cmd/daemon/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/daemon/env.go -------------------------------------------------------------------------------- /client/cmd/daemon/filesystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/daemon/filesystem.go -------------------------------------------------------------------------------- /client/cmd/daemon/filesystem_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/daemon/filesystem_test.go -------------------------------------------------------------------------------- /client/cmd/daemon/linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/daemon/linux.go -------------------------------------------------------------------------------- /client/cmd/daemon/linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/daemon/linux_test.go -------------------------------------------------------------------------------- /client/cmd/daemon/osx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/daemon/osx.go -------------------------------------------------------------------------------- /client/cmd/daemon/osx_filesystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/daemon/osx_filesystem.go -------------------------------------------------------------------------------- /client/cmd/daemon/osx_filesystem_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/daemon/osx_filesystem_test.go -------------------------------------------------------------------------------- /client/cmd/daemon/osx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/daemon/osx_test.go -------------------------------------------------------------------------------- /client/cmd/daemon/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/daemon/runner.go -------------------------------------------------------------------------------- /client/cmd/daemon/test_helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/daemon/test_helpers_test.go -------------------------------------------------------------------------------- /client/cmd/daemon/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/daemon/types.go -------------------------------------------------------------------------------- /client/cmd/describe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/describe.go -------------------------------------------------------------------------------- /client/cmd/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/exec.go -------------------------------------------------------------------------------- /client/cmd/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/list.go -------------------------------------------------------------------------------- /client/cmd/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/login.go -------------------------------------------------------------------------------- /client/cmd/proc_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/proc_unix.go -------------------------------------------------------------------------------- /client/cmd/proc_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/proc_windows.go -------------------------------------------------------------------------------- /client/cmd/proxymanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/proxymanager.go -------------------------------------------------------------------------------- /client/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/root.go -------------------------------------------------------------------------------- /client/cmd/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/run.go -------------------------------------------------------------------------------- /client/cmd/run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/run_test.go -------------------------------------------------------------------------------- /client/cmd/runbooks/runbooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/runbooks/runbooks.go -------------------------------------------------------------------------------- /client/cmd/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/start.go -------------------------------------------------------------------------------- /client/cmd/static/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/static/login.go -------------------------------------------------------------------------------- /client/cmd/styles/styles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/styles/styles.go -------------------------------------------------------------------------------- /client/cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/cmd/version.go -------------------------------------------------------------------------------- /client/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/config/config.go -------------------------------------------------------------------------------- /client/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/go.mod -------------------------------------------------------------------------------- /client/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/go.sum -------------------------------------------------------------------------------- /client/hoop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/hoop.go -------------------------------------------------------------------------------- /client/proxy/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/proxy/defaults.go -------------------------------------------------------------------------------- /client/proxy/httpproxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/proxy/httpproxy.go -------------------------------------------------------------------------------- /client/proxy/mongodb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/proxy/mongodb.go -------------------------------------------------------------------------------- /client/proxy/mssql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/proxy/mssql.go -------------------------------------------------------------------------------- /client/proxy/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/proxy/mysql.go -------------------------------------------------------------------------------- /client/proxy/pg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/proxy/pg.go -------------------------------------------------------------------------------- /client/proxy/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/proxy/ssh.go -------------------------------------------------------------------------------- /client/proxy/tcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/proxy/tcp.go -------------------------------------------------------------------------------- /client/proxy/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/client/proxy/terminal.go -------------------------------------------------------------------------------- /common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/Makefile -------------------------------------------------------------------------------- /common/agentcontroller/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/agentcontroller/types.go -------------------------------------------------------------------------------- /common/apiutils/apiutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/apiutils/apiutils.go -------------------------------------------------------------------------------- /common/appruntime/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/appruntime/runtime.go -------------------------------------------------------------------------------- /common/backoff/exponential.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/backoff/exponential.go -------------------------------------------------------------------------------- /common/backoff/exponential_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/backoff/exponential_test.go -------------------------------------------------------------------------------- /common/clientconfig/clientconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/clientconfig/clientconfig.go -------------------------------------------------------------------------------- /common/dsnkeys/dsnkeys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/dsnkeys/dsnkeys.go -------------------------------------------------------------------------------- /common/dsnkeys/dsnkeys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/dsnkeys/dsnkeys_test.go -------------------------------------------------------------------------------- /common/envloader/envloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/envloader/envloader.go -------------------------------------------------------------------------------- /common/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/go.mod -------------------------------------------------------------------------------- /common/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/go.sum -------------------------------------------------------------------------------- /common/grpc/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/grpc/client.go -------------------------------------------------------------------------------- /common/grpc/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/grpc/metadata.go -------------------------------------------------------------------------------- /common/grpc/streamrecv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/grpc/streamrecv.go -------------------------------------------------------------------------------- /common/httpclient/httpclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/httpclient/httpclient.go -------------------------------------------------------------------------------- /common/keys/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/keys/keys.go -------------------------------------------------------------------------------- /common/license/license.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/license/license.go -------------------------------------------------------------------------------- /common/license/license_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/license/license_test.go -------------------------------------------------------------------------------- /common/log/base_encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/log/base_encoder.go -------------------------------------------------------------------------------- /common/log/emojis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/log/emojis.go -------------------------------------------------------------------------------- /common/log/encoder_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/log/encoder_utils.go -------------------------------------------------------------------------------- /common/log/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/log/events.go -------------------------------------------------------------------------------- /common/log/field_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/log/field_utils.go -------------------------------------------------------------------------------- /common/log/formatters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/log/formatters.go -------------------------------------------------------------------------------- /common/log/httpserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/log/httpserver.go -------------------------------------------------------------------------------- /common/log/human_encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/log/human_encoder.go -------------------------------------------------------------------------------- /common/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/log/log.go -------------------------------------------------------------------------------- /common/log/verbose_encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/log/verbose_encoder.go -------------------------------------------------------------------------------- /common/memory/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/memory/memory.go -------------------------------------------------------------------------------- /common/memory/memstore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/memory/memstore_test.go -------------------------------------------------------------------------------- /common/mongotypes/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/mongotypes/const.go -------------------------------------------------------------------------------- /common/mongotypes/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/mongotypes/packet.go -------------------------------------------------------------------------------- /common/mongotypes/packet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/mongotypes/packet_test.go -------------------------------------------------------------------------------- /common/monitoring/monitoring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/monitoring/monitoring.go -------------------------------------------------------------------------------- /common/monitoring/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/monitoring/runtime.go -------------------------------------------------------------------------------- /common/mssqltypes/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/mssqltypes/const.go -------------------------------------------------------------------------------- /common/mssqltypes/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/mssqltypes/login.go -------------------------------------------------------------------------------- /common/mssqltypes/login_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/mssqltypes/login_test.go -------------------------------------------------------------------------------- /common/mssqltypes/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/mssqltypes/packet.go -------------------------------------------------------------------------------- /common/mssqltypes/rcprequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/mssqltypes/rcprequest.go -------------------------------------------------------------------------------- /common/mssqltypes/rpcrequest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/mssqltypes/rpcrequest_test.go -------------------------------------------------------------------------------- /common/mssqltypes/sqlbatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/mssqltypes/sqlbatch.go -------------------------------------------------------------------------------- /common/mssqltypes/sqlbatch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/mssqltypes/sqlbatch_test.go -------------------------------------------------------------------------------- /common/pgtypes/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/pgtypes/const.go -------------------------------------------------------------------------------- /common/pgtypes/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/pgtypes/packet.go -------------------------------------------------------------------------------- /common/pgtypes/packet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/pgtypes/packet_test.go -------------------------------------------------------------------------------- /common/proto/agent/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/proto/agent/agent.go -------------------------------------------------------------------------------- /common/proto/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/proto/client/client.go -------------------------------------------------------------------------------- /common/proto/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/proto/const.go -------------------------------------------------------------------------------- /common/proto/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/proto/errors.go -------------------------------------------------------------------------------- /common/proto/gateway/gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/proto/gateway/gateway.go -------------------------------------------------------------------------------- /common/proto/spectypes/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/proto/spectypes/types.go -------------------------------------------------------------------------------- /common/proto/system/dbprovisioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/proto/system/dbprovisioner.go -------------------------------------------------------------------------------- /common/proto/system/runbookhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/proto/system/runbookhook.go -------------------------------------------------------------------------------- /common/proto/transport.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/proto/transport.pb.go -------------------------------------------------------------------------------- /common/proto/transport.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/proto/transport.proto -------------------------------------------------------------------------------- /common/proto/transport_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/proto/transport_grpc.pb.go -------------------------------------------------------------------------------- /common/proto/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/proto/types.go -------------------------------------------------------------------------------- /common/runbooks/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/runbooks/config.go -------------------------------------------------------------------------------- /common/runbooks/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/runbooks/config_test.go -------------------------------------------------------------------------------- /common/runbooks/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/runbooks/git.go -------------------------------------------------------------------------------- /common/runbooks/template_funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/runbooks/template_funcs.go -------------------------------------------------------------------------------- /common/runbooks/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/runbooks/templates.go -------------------------------------------------------------------------------- /common/runbooks/templates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/runbooks/templates_test.go -------------------------------------------------------------------------------- /common/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/common/version/version.go -------------------------------------------------------------------------------- /datagridxl2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/datagridxl2.js -------------------------------------------------------------------------------- /deploy/aws/hoopdev-platform.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/deploy/aws/hoopdev-platform.template.yaml -------------------------------------------------------------------------------- /deploy/docker-compose/.env-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/deploy/docker-compose/.env-sample -------------------------------------------------------------------------------- /deploy/docker-compose/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/deploy/docker-compose/Dockerfile -------------------------------------------------------------------------------- /deploy/docker-compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/deploy/docker-compose/docker-compose.yml -------------------------------------------------------------------------------- /deploy/helm-chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/deploy/helm-chart/README.md -------------------------------------------------------------------------------- /deploy/helm-chart/chart/agent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/deploy/helm-chart/chart/agent/Chart.yaml -------------------------------------------------------------------------------- /deploy/helm-chart/chart/agent/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/deploy/helm-chart/chart/agent/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/helm-chart/chart/agent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/deploy/helm-chart/chart/agent/values.yaml -------------------------------------------------------------------------------- /deploy/helm-chart/chart/gateway/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/deploy/helm-chart/chart/gateway/.helmignore -------------------------------------------------------------------------------- /deploy/helm-chart/chart/gateway/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/deploy/helm-chart/chart/gateway/Chart.yaml -------------------------------------------------------------------------------- /deploy/helm-chart/chart/gateway/README.md: -------------------------------------------------------------------------------- 1 | # Hoop 2 | 3 | TODO -------------------------------------------------------------------------------- /deploy/helm-chart/chart/gateway/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/deploy/helm-chart/chart/gateway/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/helm-chart/chart/gateway/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/deploy/helm-chart/chart/gateway/templates/pvc.yaml -------------------------------------------------------------------------------- /deploy/helm-chart/chart/gateway/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/deploy/helm-chart/chart/gateway/values.yaml -------------------------------------------------------------------------------- /gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/README.md -------------------------------------------------------------------------------- /gateway/agentcontroller/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/agentcontroller/client.go -------------------------------------------------------------------------------- /gateway/agentcontroller/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/agentcontroller/controller.go -------------------------------------------------------------------------------- /gateway/analytics/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/analytics/events.go -------------------------------------------------------------------------------- /gateway/analytics/intercom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/analytics/intercom.go -------------------------------------------------------------------------------- /gateway/analytics/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/analytics/runtime.go -------------------------------------------------------------------------------- /gateway/analytics/segment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/analytics/segment.go -------------------------------------------------------------------------------- /gateway/api/agents/agents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/agents/agents.go -------------------------------------------------------------------------------- /gateway/api/apiroutes/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/apiroutes/auth.go -------------------------------------------------------------------------------- /gateway/api/apiroutes/roles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/apiroutes/roles.go -------------------------------------------------------------------------------- /gateway/api/apiroutes/roles_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/apiroutes/roles_test.go -------------------------------------------------------------------------------- /gateway/api/apiroutes/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/apiroutes/router.go -------------------------------------------------------------------------------- /gateway/api/apiroutes/tracing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/apiroutes/tracing.go -------------------------------------------------------------------------------- /gateway/api/connections/connection_credentials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/connections/connection_credentials.go -------------------------------------------------------------------------------- /gateway/api/connections/connection_tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/connections/connection_tags.go -------------------------------------------------------------------------------- /gateway/api/connections/connections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/connections/connections.go -------------------------------------------------------------------------------- /gateway/api/connections/datamasking_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/connections/datamasking_rules.go -------------------------------------------------------------------------------- /gateway/api/connections/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/connections/defaults.go -------------------------------------------------------------------------------- /gateway/api/connections/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/connections/helpers.go -------------------------------------------------------------------------------- /gateway/api/connections/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/connections/helpers_test.go -------------------------------------------------------------------------------- /gateway/api/connections/queries_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/connections/queries_schema.go -------------------------------------------------------------------------------- /gateway/api/datamasking/datamasking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/datamasking/datamasking.go -------------------------------------------------------------------------------- /gateway/api/features/askai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/features/askai.go -------------------------------------------------------------------------------- /gateway/api/features/features.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/features/features.go -------------------------------------------------------------------------------- /gateway/api/guardrails/guardrails.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/guardrails/guardrails.go -------------------------------------------------------------------------------- /gateway/api/healthz/healthz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/healthz/healthz.go -------------------------------------------------------------------------------- /gateway/api/integrations/aws/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/integrations/aws/aws.go -------------------------------------------------------------------------------- /gateway/api/integrations/aws/provisioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/integrations/aws/provisioner.go -------------------------------------------------------------------------------- /gateway/api/integrations/issuetemplates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/integrations/issuetemplates.go -------------------------------------------------------------------------------- /gateway/api/integrations/jira.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/integrations/jira.go -------------------------------------------------------------------------------- /gateway/api/login/local/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/login/local/login.go -------------------------------------------------------------------------------- /gateway/api/login/local/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/login/local/register.go -------------------------------------------------------------------------------- /gateway/api/login/oidc/auth0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/login/oidc/auth0.go -------------------------------------------------------------------------------- /gateway/api/login/oidc/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/login/oidc/login.go -------------------------------------------------------------------------------- /gateway/api/login/saml/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/login/saml/login.go -------------------------------------------------------------------------------- /gateway/api/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/middleware.go -------------------------------------------------------------------------------- /gateway/api/openapi/autogen/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/openapi/autogen/docs.go -------------------------------------------------------------------------------- /gateway/api/openapi/docs/Authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/openapi/docs/Authentication.md -------------------------------------------------------------------------------- /gateway/api/openapi/docs/Features.md: -------------------------------------------------------------------------------- 1 | Features available in the gateway. See also **Plugin** resources. -------------------------------------------------------------------------------- /gateway/api/openapi/docs/Proxy Manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/openapi/docs/Proxy Manager.md -------------------------------------------------------------------------------- /gateway/api/openapi/docs/Server Management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/openapi/docs/Server Management.md -------------------------------------------------------------------------------- /gateway/api/openapi/docs/User Management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/openapi/docs/User Management.md -------------------------------------------------------------------------------- /gateway/api/openapi/docs/api-connection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/openapi/docs/api-connection.md -------------------------------------------------------------------------------- /gateway/api/openapi/docs/api-login-callback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/openapi/docs/api-login-callback.md -------------------------------------------------------------------------------- /gateway/api/openapi/docs/api-update-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/openapi/docs/api-update-review.md -------------------------------------------------------------------------------- /gateway/api/openapi/docs/get-session-by-id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/openapi/docs/get-session-by-id.md -------------------------------------------------------------------------------- /gateway/api/openapi/docs/run-exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/openapi/docs/run-exec.md -------------------------------------------------------------------------------- /gateway/api/openapi/ginvalidators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/openapi/ginvalidators.go -------------------------------------------------------------------------------- /gateway/api/openapi/openapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/openapi/openapi.go -------------------------------------------------------------------------------- /gateway/api/openapi/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/openapi/types.go -------------------------------------------------------------------------------- /gateway/api/orgs/orgkeys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/orgs/orgkeys.go -------------------------------------------------------------------------------- /gateway/api/orgs/orglicense.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/orgs/orglicense.go -------------------------------------------------------------------------------- /gateway/api/pluginconnections/pluginconnections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/pluginconnections/pluginconnections.go -------------------------------------------------------------------------------- /gateway/api/plugins/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/plugins/plugin.go -------------------------------------------------------------------------------- /gateway/api/proxymanager/proxymanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/proxymanager/proxymanager.go -------------------------------------------------------------------------------- /gateway/api/publicserverinfo/publicserverinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/publicserverinfo/publicserverinfo.go -------------------------------------------------------------------------------- /gateway/api/reports/sessions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/reports/sessions.go -------------------------------------------------------------------------------- /gateway/api/resources/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/resources/resources.go -------------------------------------------------------------------------------- /gateway/api/review/review.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/review/review.go -------------------------------------------------------------------------------- /gateway/api/review/review_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/review/review_test.go -------------------------------------------------------------------------------- /gateway/api/runbooks/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/runbooks/helpers.go -------------------------------------------------------------------------------- /gateway/api/runbooks/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/runbooks/helpers_test.go -------------------------------------------------------------------------------- /gateway/api/runbooks/rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/runbooks/rules.go -------------------------------------------------------------------------------- /gateway/api/runbooks/runbooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/runbooks/runbooks.go -------------------------------------------------------------------------------- /gateway/api/runbooks/runbooksV2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/runbooks/runbooksV2.go -------------------------------------------------------------------------------- /gateway/api/search/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/search/helpers.go -------------------------------------------------------------------------------- /gateway/api/search/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/search/search.go -------------------------------------------------------------------------------- /gateway/api/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/server.go -------------------------------------------------------------------------------- /gateway/api/serverconfig/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/serverconfig/auth.go -------------------------------------------------------------------------------- /gateway/api/serverconfig/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/serverconfig/misc.go -------------------------------------------------------------------------------- /gateway/api/serverconfig/misc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/serverconfig/misc_test.go -------------------------------------------------------------------------------- /gateway/api/serverinfo/serverinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/serverinfo/serverinfo.go -------------------------------------------------------------------------------- /gateway/api/serviceaccount/serviceaccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/serviceaccount/serviceaccount.go -------------------------------------------------------------------------------- /gateway/api/session/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/session/parser.go -------------------------------------------------------------------------------- /gateway/api/session/run-exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/session/run-exec.go -------------------------------------------------------------------------------- /gateway/api/session/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/session/session.go -------------------------------------------------------------------------------- /gateway/api/signup/signup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/signup/signup.go -------------------------------------------------------------------------------- /gateway/api/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/user/user.go -------------------------------------------------------------------------------- /gateway/api/validation/pagination.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/validation/pagination.go -------------------------------------------------------------------------------- /gateway/api/validation/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/validation/validation.go -------------------------------------------------------------------------------- /gateway/api/webhooks/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/webhooks/dashboard.go -------------------------------------------------------------------------------- /gateway/api/webhooks/endpoints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/webhooks/endpoints.go -------------------------------------------------------------------------------- /gateway/api/webhooks/eventtypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/webhooks/eventtypes.go -------------------------------------------------------------------------------- /gateway/api/webhooks/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/api/webhooks/messages.go -------------------------------------------------------------------------------- /gateway/appconfig/appconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/appconfig/appconfig.go -------------------------------------------------------------------------------- /gateway/appconfig/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/appconfig/tls.go -------------------------------------------------------------------------------- /gateway/broker/communicators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/broker/communicators.go -------------------------------------------------------------------------------- /gateway/broker/headers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/broker/headers.go -------------------------------------------------------------------------------- /gateway/broker/protocol_handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/broker/protocol_handlers.go -------------------------------------------------------------------------------- /gateway/broker/protocol_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/broker/protocol_manager.go -------------------------------------------------------------------------------- /gateway/broker/protocol_rdp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/broker/protocol_rdp.go -------------------------------------------------------------------------------- /gateway/broker/protocol_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/broker/protocol_types.go -------------------------------------------------------------------------------- /gateway/broker/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/broker/session.go -------------------------------------------------------------------------------- /gateway/clientexec/clientexec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/clientexec/clientexec.go -------------------------------------------------------------------------------- /gateway/cmd/gateway/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/cmd/gateway/.env.sample -------------------------------------------------------------------------------- /gateway/cmd/gateway/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/cmd/gateway/main.go -------------------------------------------------------------------------------- /gateway/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/go.mod -------------------------------------------------------------------------------- /gateway/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/go.sum -------------------------------------------------------------------------------- /gateway/guardrails/guardrails.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/guardrails/guardrails.go -------------------------------------------------------------------------------- /gateway/guardrails/guardrails_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/guardrails/guardrails_test.go -------------------------------------------------------------------------------- /gateway/idp/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/idp/core.go -------------------------------------------------------------------------------- /gateway/idp/core_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/idp/core_test.go -------------------------------------------------------------------------------- /gateway/idp/local/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/idp/local/local.go -------------------------------------------------------------------------------- /gateway/idp/oidc/gsuite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/idp/oidc/gsuite.go -------------------------------------------------------------------------------- /gateway/idp/oidc/oidc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/idp/oidc/oidc.go -------------------------------------------------------------------------------- /gateway/idp/oidc/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/idp/oidc/provider.go -------------------------------------------------------------------------------- /gateway/idp/saml/saml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/idp/saml/saml.go -------------------------------------------------------------------------------- /gateway/idp/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/idp/types/types.go -------------------------------------------------------------------------------- /gateway/jira/assetsapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/jira/assetsapi.go -------------------------------------------------------------------------------- /gateway/jira/issuesapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/jira/issuesapi.go -------------------------------------------------------------------------------- /gateway/jira/issuesapi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/jira/issuesapi_test.go -------------------------------------------------------------------------------- /gateway/jira/requestsapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/jira/requestsapi.go -------------------------------------------------------------------------------- /gateway/jira/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/jira/types.go -------------------------------------------------------------------------------- /gateway/jobs/report/admin_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/jobs/report/admin_report.go -------------------------------------------------------------------------------- /gateway/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/main.go -------------------------------------------------------------------------------- /gateway/models/agents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/agents.go -------------------------------------------------------------------------------- /gateway/models/audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/audit.go -------------------------------------------------------------------------------- /gateway/models/bootstrap/bootstrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/bootstrap/bootstrap.go -------------------------------------------------------------------------------- /gateway/models/bootstrap/migrations/RunbooksV2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/bootstrap/migrations/RunbooksV2.go -------------------------------------------------------------------------------- /gateway/models/connection_credentials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/connection_credentials.go -------------------------------------------------------------------------------- /gateway/models/connection_tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/connection_tags.go -------------------------------------------------------------------------------- /gateway/models/connections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/connections.go -------------------------------------------------------------------------------- /gateway/models/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/database.go -------------------------------------------------------------------------------- /gateway/models/datamasking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/datamasking.go -------------------------------------------------------------------------------- /gateway/models/dbroles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/dbroles.go -------------------------------------------------------------------------------- /gateway/models/envvars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/envvars.go -------------------------------------------------------------------------------- /gateway/models/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/errors.go -------------------------------------------------------------------------------- /gateway/models/guadrails.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/guadrails.go -------------------------------------------------------------------------------- /gateway/models/jira.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/jira.go -------------------------------------------------------------------------------- /gateway/models/jira_issue_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/jira_issue_templates.go -------------------------------------------------------------------------------- /gateway/models/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/login.go -------------------------------------------------------------------------------- /gateway/models/orgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/orgs.go -------------------------------------------------------------------------------- /gateway/models/plugin_connections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/plugin_connections.go -------------------------------------------------------------------------------- /gateway/models/plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/plugins.go -------------------------------------------------------------------------------- /gateway/models/proxymanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/proxymanager.go -------------------------------------------------------------------------------- /gateway/models/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/resources.go -------------------------------------------------------------------------------- /gateway/models/reviews.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/reviews.go -------------------------------------------------------------------------------- /gateway/models/runbooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/runbooks.go -------------------------------------------------------------------------------- /gateway/models/server_auth_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/server_auth_config.go -------------------------------------------------------------------------------- /gateway/models/server_misc_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/server_misc_config.go -------------------------------------------------------------------------------- /gateway/models/serviceaccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/serviceaccount.go -------------------------------------------------------------------------------- /gateway/models/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/session.go -------------------------------------------------------------------------------- /gateway/models/session_reports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/session_reports.go -------------------------------------------------------------------------------- /gateway/models/user_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/user_context.go -------------------------------------------------------------------------------- /gateway/models/user_groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/user_groups.go -------------------------------------------------------------------------------- /gateway/models/user_tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/user_tokens.go -------------------------------------------------------------------------------- /gateway/models/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/users.go -------------------------------------------------------------------------------- /gateway/models/usersv2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/models/usersv2.go -------------------------------------------------------------------------------- /gateway/proxyproto/grpckey/grpckey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/proxyproto/grpckey/grpckey.go -------------------------------------------------------------------------------- /gateway/proxyproto/postgresproxy/postgresproxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/proxyproto/postgresproxy/postgresproxy.go -------------------------------------------------------------------------------- /gateway/proxyproto/sshproxy/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/proxyproto/sshproxy/keys.go -------------------------------------------------------------------------------- /gateway/proxyproto/sshproxy/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/proxyproto/sshproxy/keys_test.go -------------------------------------------------------------------------------- /gateway/proxyproto/sshproxy/sshproxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/proxyproto/sshproxy/sshproxy.go -------------------------------------------------------------------------------- /gateway/proxyproto/tlstermination/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/proxyproto/tlstermination/tls.go -------------------------------------------------------------------------------- /gateway/proxyproto/tlstermination/tls_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/proxyproto/tlstermination/tls_test.go -------------------------------------------------------------------------------- /gateway/rdp/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/rdp/parser.go -------------------------------------------------------------------------------- /gateway/rdp/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/rdp/parser_test.go -------------------------------------------------------------------------------- /gateway/rdp/rdp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/rdp/rdp.go -------------------------------------------------------------------------------- /gateway/session/eventlog/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/session/eventlog/codec.go -------------------------------------------------------------------------------- /gateway/session/eventlog/v0/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/session/eventlog/v0/eventlog.go -------------------------------------------------------------------------------- /gateway/session/eventlog/v0/eventlog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/session/eventlog/v0/eventlog_test.go -------------------------------------------------------------------------------- /gateway/session/eventlog/v1/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/session/eventlog/v1/eventlog.go -------------------------------------------------------------------------------- /gateway/session/eventlog/v1/eventlog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/session/eventlog/v1/eventlog_test.go -------------------------------------------------------------------------------- /gateway/session/wal/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/session/wal/header.go -------------------------------------------------------------------------------- /gateway/session/wal/wal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/session/wal/wal.go -------------------------------------------------------------------------------- /gateway/session/wal/wal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/session/wal/wal_test.go -------------------------------------------------------------------------------- /gateway/slack/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/slack/events.go -------------------------------------------------------------------------------- /gateway/slack/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/slack/service.go -------------------------------------------------------------------------------- /gateway/storagev2/clientstate/clientstate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/storagev2/clientstate/clientstate.go -------------------------------------------------------------------------------- /gateway/storagev2/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/storagev2/core.go -------------------------------------------------------------------------------- /gateway/storagev2/types/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/storagev2/types/const.go -------------------------------------------------------------------------------- /gateway/storagev2/types/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/storagev2/types/meta.go -------------------------------------------------------------------------------- /gateway/storagev2/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/storagev2/types/types.go -------------------------------------------------------------------------------- /gateway/transport/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/agent.go -------------------------------------------------------------------------------- /gateway/transport/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/auth.go -------------------------------------------------------------------------------- /gateway/transport/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/client.go -------------------------------------------------------------------------------- /gateway/transport/connectionrequests/requests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/connectionrequests/requests.go -------------------------------------------------------------------------------- /gateway/transport/dispatchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/dispatchers.go -------------------------------------------------------------------------------- /gateway/transport/dispatchers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/dispatchers_test.go -------------------------------------------------------------------------------- /gateway/transport/extensions/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/extensions/extension.go -------------------------------------------------------------------------------- /gateway/transport/extensions/runbookhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/extensions/runbookhook.go -------------------------------------------------------------------------------- /gateway/transport/interceptors/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/interceptors/auth/auth.go -------------------------------------------------------------------------------- /gateway/transport/interceptors/auth/authunary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/interceptors/auth/authunary.go -------------------------------------------------------------------------------- /gateway/transport/interceptors/auth/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/interceptors/auth/context.go -------------------------------------------------------------------------------- /gateway/transport/interceptors/tracing/tracing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/interceptors/tracing/tracing.go -------------------------------------------------------------------------------- /gateway/transport/plugins/audit/audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/plugins/audit/audit.go -------------------------------------------------------------------------------- /gateway/transport/plugins/audit/decoders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/plugins/audit/decoders.go -------------------------------------------------------------------------------- /gateway/transport/plugins/audit/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/plugins/audit/metrics.go -------------------------------------------------------------------------------- /gateway/transport/plugins/audit/wal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/plugins/audit/wal.go -------------------------------------------------------------------------------- /gateway/transport/plugins/dlp/dlp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/plugins/dlp/dlp.go -------------------------------------------------------------------------------- /gateway/transport/plugins/review/review.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/plugins/review/review.go -------------------------------------------------------------------------------- /gateway/transport/plugins/review/review.oss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/plugins/review/review.oss.go -------------------------------------------------------------------------------- /gateway/transport/plugins/review/review_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/plugins/review/review_test.go -------------------------------------------------------------------------------- /gateway/transport/plugins/slack/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/plugins/slack/events.go -------------------------------------------------------------------------------- /gateway/transport/plugins/slack/slack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/plugins/slack/slack.go -------------------------------------------------------------------------------- /gateway/transport/plugins/types/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/plugins/types/const.go -------------------------------------------------------------------------------- /gateway/transport/plugins/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/plugins/types/errors.go -------------------------------------------------------------------------------- /gateway/transport/plugins/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/plugins/types/types.go -------------------------------------------------------------------------------- /gateway/transport/plugins/webhooks/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/plugins/webhooks/const.go -------------------------------------------------------------------------------- /gateway/transport/plugins/webhooks/sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/plugins/webhooks/sender.go -------------------------------------------------------------------------------- /gateway/transport/plugins/webhooks/webhooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/plugins/webhooks/webhooks.go -------------------------------------------------------------------------------- /gateway/transport/proxymanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/proxymanager.go -------------------------------------------------------------------------------- /gateway/transport/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/server.go -------------------------------------------------------------------------------- /gateway/transport/streamclient/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/streamclient/agent.go -------------------------------------------------------------------------------- /gateway/transport/streamclient/pluginruntime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/streamclient/pluginruntime.go -------------------------------------------------------------------------------- /gateway/transport/streamclient/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/streamclient/proxy.go -------------------------------------------------------------------------------- /gateway/transport/streamclient/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/streamclient/types/types.go -------------------------------------------------------------------------------- /gateway/transport/system/dbprovisioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/system/dbprovisioner.go -------------------------------------------------------------------------------- /gateway/transport/system/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/system/queue.go -------------------------------------------------------------------------------- /gateway/transport/system/runbookhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/system/runbookhook.go -------------------------------------------------------------------------------- /gateway/transport/system/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/system/session.go -------------------------------------------------------------------------------- /gateway/transport/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/transport/websocket.go -------------------------------------------------------------------------------- /gateway/utils/slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/utils/slices.go -------------------------------------------------------------------------------- /gateway/webappjs/webappjs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/gateway/webappjs/webappjs.go -------------------------------------------------------------------------------- /github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/github.png -------------------------------------------------------------------------------- /go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/go.work -------------------------------------------------------------------------------- /rootfs/app/migrations/000001_init.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000001_init.down.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000001_init.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000001_init.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000003_connection_application_type.down.sql: -------------------------------------------------------------------------------- 1 | -- noop -------------------------------------------------------------------------------- /rootfs/app/migrations/000003_connection_application_type.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TYPE private.enum_connection_type ADD VALUE IF NOT EXISTS 'application'; 2 | -------------------------------------------------------------------------------- /rootfs/app/migrations/000006_user_profile_pic.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000006_user_profile_pic.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000007_new_connection_types.down.sql: -------------------------------------------------------------------------------- 1 | -- noop -------------------------------------------------------------------------------- /rootfs/app/migrations/000008_conn_managed_by.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000008_conn_managed_by.down.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000008_conn_managed_by.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000008_conn_managed_by.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000009_agent_name.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000009_agent_name.down.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000009_agent_name.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000009_agent_name.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000011_connection_status.down.sql: -------------------------------------------------------------------------------- 1 | BEGIN; 2 | 3 | -- noop 4 | 5 | COMMIT; -------------------------------------------------------------------------------- /rootfs/app/migrations/000011_connection_status.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000011_connection_status.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000012_connection_status_new.down.sql: -------------------------------------------------------------------------------- 1 | -- noop -------------------------------------------------------------------------------- /rootfs/app/migrations/000013_org_license.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000013_org_license.down.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000013_org_license.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000013_org_license.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000014_ask_ai_feat.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000014_ask_ai_feat.down.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000014_ask_ai_feat.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000014_ask_ai_feat.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000015_postgrest_migrations.down.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/app/migrations/000016_session_metrics.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000016_session_metrics.down.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000016_session_metrics.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000016_session_metrics.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000017_connection_tags.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000017_connection_tags.down.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000017_connection_tags.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000017_connection_tags.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000018_conn_tags_bugfix.down.sql: -------------------------------------------------------------------------------- 1 | -- noop -------------------------------------------------------------------------------- /rootfs/app/migrations/000018_conn_tags_bugfix.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000018_conn_tags_bugfix.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000019_license_file.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000019_license_file.down.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000019_license_file.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000019_license_file.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000021_hotfix_app_state_rollback.down.sql: -------------------------------------------------------------------------------- 1 | -- noop -------------------------------------------------------------------------------- /rootfs/app/migrations/000022_add_local_auth_fields_and_table.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE users DROP COLUMN hashed_password; 2 | -------------------------------------------------------------------------------- /rootfs/app/migrations/000023_add_invited_status_to_user_status.down.sql: -------------------------------------------------------------------------------- 1 | -- noop 2 | -------------------------------------------------------------------------------- /rootfs/app/migrations/000024_jira_integration.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000024_jira_integration.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000025_guardrails_rules.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000025_guardrails_rules.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000026_guardrails_rules_description.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE private.guardrail_rules DROP COLUMN description; 2 | -------------------------------------------------------------------------------- /rootfs/app/migrations/000026_guardrails_rules_description.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE private.guardrail_rules ADD COLUMN description TEXT; 2 | -------------------------------------------------------------------------------- /rootfs/app/migrations/000028_jira_cmdb.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE private.jira_issue_templates DROP COLUMN cmdb_types; -------------------------------------------------------------------------------- /rootfs/app/migrations/000028_jira_cmdb.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000028_jira_cmdb.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000031_session_exit_code.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000031_session_exit_code.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000032_dbrole_jobs.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000032_dbrole_jobs.down.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000032_dbrole_jobs.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000032_dbrole_jobs.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000033_dbrole_jobs_enhanc.down.sql: -------------------------------------------------------------------------------- 1 | -- noop -------------------------------------------------------------------------------- /rootfs/app/migrations/000034_tags_key_val.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE private.connection_tags; -------------------------------------------------------------------------------- /rootfs/app/migrations/000034_tags_key_val.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000034_tags_key_val.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000035_session_connection_tags.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE private.sessions DROP COLUMN connection_tags; -------------------------------------------------------------------------------- /rootfs/app/migrations/000035_session_connection_tags.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE private.sessions ADD COLUMN connection_tags JSONB NULL; -------------------------------------------------------------------------------- /rootfs/app/migrations/000036_dbroles_hook_status.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE private.dbrole_jobs DROP COLUMN hook_status; -------------------------------------------------------------------------------- /rootfs/app/migrations/000036_dbroles_hook_status.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE private.dbrole_jobs ADD COLUMN hook_status JSON NULL; -------------------------------------------------------------------------------- /rootfs/app/migrations/000037_blob_format.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE private.blobs DROP COLUMN format; -------------------------------------------------------------------------------- /rootfs/app/migrations/000037_blob_format.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE private.blobs ADD COLUMN format VARCHAR(40) NULL; -------------------------------------------------------------------------------- /rootfs/app/migrations/000038_data_masking.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000038_data_masking.down.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000038_data_masking.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000038_data_masking.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000039_data_masking_score_threshold.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE private.datamasking_rules DROP COLUMN score_threshold; -------------------------------------------------------------------------------- /rootfs/app/migrations/000039_data_masking_score_threshold.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE private.datamasking_rules ADD COLUMN score_threshold FLOAT NULL; -------------------------------------------------------------------------------- /rootfs/app/migrations/000040_serverconfig.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000040_serverconfig.down.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000040_serverconfig.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000040_serverconfig.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000041_auth_config.down.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/app/migrations/000041_auth_config.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000041_auth_config.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000042_auth_provider_type.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE private.authconfig DROP COLUMN provider_name; -------------------------------------------------------------------------------- /rootfs/app/migrations/000042_auth_provider_type.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE private.authconfig ADD COLUMN provider_name VARCHAR(64) NULL; -------------------------------------------------------------------------------- /rootfs/app/migrations/000044_connection_credentials.down.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/app/migrations/000045_rdp_server_config.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000045_rdp_server_config.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000046_remove_oracle_ld.down.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/app/migrations/000046_remove_oracle_ld.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000046_remove_oracle_ld.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000047_resources.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000047_resources.down.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000047_resources.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000047_resources.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000050_add_user_tokens.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000050_add_user_tokens.down.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000050_add_user_tokens.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000050_add_user_tokens.up.sql -------------------------------------------------------------------------------- /rootfs/app/migrations/000051_remove_constraint.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/app/migrations/000051_remove_constraint.up.sql -------------------------------------------------------------------------------- /rootfs/opt/hoop/bin/aws-ssm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/opt/hoop/bin/aws-ssm.sh -------------------------------------------------------------------------------- /rootfs/opt/hoop/bin/mongo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/opt/hoop/bin/mongo -------------------------------------------------------------------------------- /rootfs/usr/local/bin/bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/usr/local/bin/bash -------------------------------------------------------------------------------- /rootfs/usr/local/bin/bq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/usr/local/bin/bq -------------------------------------------------------------------------------- /rootfs/usr/local/bin/ecs-exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/usr/local/bin/ecs-exec.sh -------------------------------------------------------------------------------- /rootfs/usr/local/bin/hoop-default-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/usr/local/bin/hoop-default-agent.sh -------------------------------------------------------------------------------- /rootfs/usr/local/bin/mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/rootfs/usr/local/bin/mysql -------------------------------------------------------------------------------- /scripts/create_rdp_connection.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/scripts/create_rdp_connection.sh -------------------------------------------------------------------------------- /scripts/create_rdp_credentials.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/scripts/create_rdp_credentials.sh -------------------------------------------------------------------------------- /scripts/dev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/scripts/dev/Dockerfile -------------------------------------------------------------------------------- /scripts/dev/build-webapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/scripts/dev/build-webapp.sh -------------------------------------------------------------------------------- /scripts/dev/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/scripts/dev/entrypoint.sh -------------------------------------------------------------------------------- /scripts/dev/run-postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/scripts/dev/run-postgres.sh -------------------------------------------------------------------------------- /scripts/dev/run-presidio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/scripts/dev/run-presidio.sh -------------------------------------------------------------------------------- /scripts/dev/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/scripts/dev/run.sh -------------------------------------------------------------------------------- /scripts/generate-changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/scripts/generate-changelog.sh -------------------------------------------------------------------------------- /scripts/install-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/scripts/install-cli.sh -------------------------------------------------------------------------------- /scripts/install-rust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/scripts/install-rust.sh -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/merge-artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/scripts/merge-artifacts.sh -------------------------------------------------------------------------------- /scripts/publish-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/scripts/publish-release.sh -------------------------------------------------------------------------------- /signatures/version1/cla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/signatures/version1/cla.json -------------------------------------------------------------------------------- /webapp/.cursorignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/.cursorignore -------------------------------------------------------------------------------- /webapp/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/.dockerignore -------------------------------------------------------------------------------- /webapp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/.editorconfig -------------------------------------------------------------------------------- /webapp/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/.env.sample -------------------------------------------------------------------------------- /webapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/.gitignore -------------------------------------------------------------------------------- /webapp/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/.vscode/extensions.json -------------------------------------------------------------------------------- /webapp/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/.vscode/settings.json -------------------------------------------------------------------------------- /webapp/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/CLAUDE.md -------------------------------------------------------------------------------- /webapp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/Dockerfile -------------------------------------------------------------------------------- /webapp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/Makefile -------------------------------------------------------------------------------- /webapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/README.md -------------------------------------------------------------------------------- /webapp/dev/user.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/dev/user.cljs -------------------------------------------------------------------------------- /webapp/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/docker-compose.yml -------------------------------------------------------------------------------- /webapp/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/karma.conf.js -------------------------------------------------------------------------------- /webapp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/package-lock.json -------------------------------------------------------------------------------- /webapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/package.json -------------------------------------------------------------------------------- /webapp/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/postcss.config.js -------------------------------------------------------------------------------- /webapp/resources/public/asciinema-player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/asciinema-player.css -------------------------------------------------------------------------------- /webapp/resources/public/icons/hero-icon-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/hero-icon-download.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/hero-icon-exit-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/hero-icon-exit-red.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-cable-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-cable-black.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-cable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-cable.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-check-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-check-black.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-check-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-check-blue.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-check-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-check-green.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-check-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-check-white.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-cheveron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-cheveron-down.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-cheveron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-cheveron-up.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-close-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-close-red.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-close-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-close-white.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-close.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-code-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-code-black.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-copy-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-copy-white.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-copy.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-document-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-document-black.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-document-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-document-blue.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-document-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-document-gray.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-dots-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-dots-vertical.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-folder.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-grid-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-grid-gray.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-help-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-help-black.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-important-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-important-red.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-index.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-index.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-jira.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-jira.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-list-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-list-gray.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-loader-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-loader-circle.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-note-pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-note-pencil.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-play-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-play-black.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-play-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-play-blue.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-play-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-play-green.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-play-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-play-white.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-plus-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-plus-blue.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-plus-dark-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-plus-dark-gray.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-plus-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-plus-gray.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-plus-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-plus-green.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-plus-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-plus-red.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-plus-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-plus-white.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-plus.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-refresh-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-refresh-blue.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-refresh.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-search.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-table.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-user-couple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-user-couple.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-user-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-user-green.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-user-group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-user-group.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-user-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-user-white.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-user.svg -------------------------------------------------------------------------------- /webapp/resources/public/icons/icon-watch-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/icons/icon-watch-black.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/Illustration-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/Illustration-1.png -------------------------------------------------------------------------------- /webapp/resources/public/images/Illustration-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/Illustration-2.png -------------------------------------------------------------------------------- /webapp/resources/public/images/Illustration-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/Illustration-3.png -------------------------------------------------------------------------------- /webapp/resources/public/images/Illustration-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/Illustration-4.png -------------------------------------------------------------------------------- /webapp/resources/public/images/Illustration-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/Illustration-5.png -------------------------------------------------------------------------------- /webapp/resources/public/images/Illustration-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/Illustration-6.png -------------------------------------------------------------------------------- /webapp/resources/public/images/Illustration-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/Illustration-7.png -------------------------------------------------------------------------------- /webapp/resources/public/images/Slack_icon_2019.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/Slack_icon_2019.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/aws_ecs_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/aws_ecs_small.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/aws_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/aws_logo.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/bash_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/bash_small.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/bastion_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/bastion_logo.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/command-line-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/command-line-dark.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/command-line-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/command-line-light.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/command-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/command-line.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/connections-logos.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/connections-logos.zip -------------------------------------------------------------------------------- /webapp/resources/public/images/custom-connections.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/custom-connections.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/docker-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/docker-blue.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/docker-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/docker-dark.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/docker-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/docker-light.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/elixir_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/elixir_small.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/github-mark-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/github-mark-icon.png -------------------------------------------------------------------------------- /webapp/resources/public/images/heroku_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/heroku_logo.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/illustrations/disk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/illustrations/disk.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/illustrations/pc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/illustrations/pc.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/k8s_apply_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/k8s_apply_small.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/k8s_exec_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/k8s_exec_small.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/k8s_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/k8s_logo.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/k8s_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/k8s_small.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/kubernetes-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/kubernetes-dark.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/kubernetes-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/kubernetes-light.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/manual-connections.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/manual-connections.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/mongodb_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/mongodb_logo.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/mongodb_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/mongodb_small.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/mysql-dolphin-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/mysql-dolphin-icon.png -------------------------------------------------------------------------------- /webapp/resources/public/images/mysql_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/mysql_small.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/node_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/node_small.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/postgres_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/postgres_logo.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/postgres_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/postgres_small.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/python_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/python_logo.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/python_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/python_small.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/rails_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/rails_small.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/sql-server_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/sql-server_logo.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/sql-server_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/sql-server_small.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/stripe-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/stripe-logo.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/tcp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/tcp.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/terminal_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/terminal_logo.svg -------------------------------------------------------------------------------- /webapp/resources/public/images/upgrade-plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/upgrade-plan.png -------------------------------------------------------------------------------- /webapp/resources/public/images/webhooks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/images/webhooks.svg -------------------------------------------------------------------------------- /webapp/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/index.html -------------------------------------------------------------------------------- /webapp/resources/public/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/resources/public/netlify.toml -------------------------------------------------------------------------------- /webapp/scripts/download-connection-metadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/scripts/download-connection-metadata.sh -------------------------------------------------------------------------------- /webapp/shadow-cljs.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/shadow-cljs.edn -------------------------------------------------------------------------------- /webapp/src/css/cmdk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/css/cmdk.css -------------------------------------------------------------------------------- /webapp/src/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/css/highlight.css -------------------------------------------------------------------------------- /webapp/src/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/css/style.css -------------------------------------------------------------------------------- /webapp/src/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/css/tailwind.css -------------------------------------------------------------------------------- /webapp/src/webapp/agents/deployment.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/agents/deployment.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/agents/new.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/agents/new.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/agents/panel.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/agents/panel.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/ai_data_masking/basic_info.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/ai_data_masking/basic_info.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/ai_data_masking/events.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/ai_data_masking/events.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/ai_data_masking/form_header.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/ai_data_masking/form_header.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/ai_data_masking/helpers.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/ai_data_masking/helpers.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/ai_data_masking/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/ai_data_masking/main.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/ai_data_masking/rule_buttons.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/ai_data_masking/rule_buttons.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/ai_data_masking/rule_list.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/ai_data_masking/rule_list.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/ai_data_masking/rules_table.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/ai_data_masking/rules_table.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/ai_data_masking/subs.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/ai_data_masking/subs.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/app.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/app.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/audit/views/audit_filters.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/audit/views/audit_filters.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/audit/views/empty_event_stream.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/audit/views/empty_event_stream.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/audit/views/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/audit/views/main.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/audit/views/results_container.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/audit/views/results_container.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/audit/views/session_data_raw.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/audit/views/session_data_raw.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/audit/views/session_data_video.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/audit/views/session_data_video.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/audit/views/session_details.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/audit/views/session_details.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/audit/views/session_item.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/audit/views/session_item.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/audit/views/sessions_list.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/audit/views/sessions_list.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/auth/local/login.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/auth/local/login.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/auth/local/register.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/auth/local/register.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/auth/views/login_panel.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/auth/views/login_panel.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/auth/views/logout.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/auth/views/logout.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/auth/views/signup.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/auth/views/signup.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/accordion.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/accordion.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/ag_grid_table.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/ag_grid_table.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/badge.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/badge.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/button.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/button.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/callout_link.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/callout_link.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/card.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/card.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/charts.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/charts.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/checkboxes.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/checkboxes.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/code_snippet.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/code_snippet.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/codemirror_editor.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/codemirror_editor.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/combobox.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/combobox.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/command_dialog.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/command_dialog.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/connections_select.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/connections_select.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/data_table_simple.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/data_table_simple.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/dialog.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/dialog.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/divider.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/divider.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/draggable_card.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/draggable_card.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/flip_card.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/flip_card.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/forms.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/forms.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/headings.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/headings.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/icon.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/icon.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/infinite_scroll.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/infinite_scroll.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/keyboard_shortcuts.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/keyboard_shortcuts.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/loaders.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/loaders.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/logs_container.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/logs_container.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/modal.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/modal.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/multiselect.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/multiselect.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/notification_badge.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/notification_badge.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/paginated_searchbox.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/paginated_searchbox.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/popover.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/popover.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/radio_button.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/radio_button.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/searchbox.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/searchbox.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/selection_card.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/selection_card.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/snackbar.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/snackbar.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/stepper.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/stepper.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/table.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/table.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/tabs.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/tabs.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/tabs_v2.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/tabs_v2.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/theme_provider.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/theme_provider.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/timer.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/timer.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/toast.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/toast.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/toggle.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/toggle.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/tooltip.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/tooltip.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/typography.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/typography.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/user_icon.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/user_icon.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/components/virtualized_list.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/components/virtualized_list.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/config.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/config.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/connections/constants.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/connections/constants.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/connections/dlp_info_types.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/connections/dlp_info_types.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/connections/helpers.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/connections/helpers.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/connections/views/setup/footer.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/connections/views/setup/footer.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/connections/views/setup/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/connections/views/setup/main.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/connections/views/setup/server.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/connections/views/setup/server.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/connections/views/setup/state.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/connections/views/setup/state.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/connections/views/tag_selector.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/connections/views/tag_selector.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/core.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/dashboard/coming_soon.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/dashboard/coming_soon.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/dashboard/connection_chart.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/dashboard/connection_chart.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/dashboard/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/dashboard/main.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/dashboard/redacted_data_chart.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/dashboard/redacted_data_chart.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/dashboard/review_chart.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/dashboard/review_chart.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/db.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/db.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/env.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/env.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/agents.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/agents.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/ask_ai.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/ask_ai.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/audit.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/audit.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/auth.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/auth.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/clarity.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/clarity.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/components/dialog.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/components/dialog.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/components/modal.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/components/modal.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/components/sidebar.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/components/sidebar.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/components/toast.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/components/toast.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/connections.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/connections.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/connections_filters.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/connections_filters.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/database_schema.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/database_schema.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/editor_plugin.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/editor_plugin.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/gateway_info.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/gateway_info.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/guardrails.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/guardrails.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/hoop_app.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/hoop_app.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/indexer_plugin.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/indexer_plugin.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/jira_integration.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/jira_integration.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/jira_templates.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/jira_templates.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/jobs.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/jobs.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/license.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/license.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/localauth.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/localauth.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/organization.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/organization.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/plugins.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/plugins.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/reports.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/reports.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/resources.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/resources.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/reviews_plugin.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/reviews_plugin.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/routes.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/routes.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/segment.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/segment.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/slack.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/slack.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/slack_plugin.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/slack_plugin.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/tracking.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/tracking.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/events/users.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/events/users.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/features/access_control/events.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/features/access_control/events.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/features/access_control/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/features/access_control/main.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/features/access_control/subs.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/features/access_control/subs.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/features/promotion.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/features/promotion.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/features/runbooks/helpers.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/features/runbooks/helpers.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/features/runbooks/runner/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/features/runbooks/runner/main.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/features/runbooks/runner/subs.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/features/runbooks/runner/subs.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/features/runbooks/setup/events.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/features/runbooks/setup/events.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/features/runbooks/setup/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/features/runbooks/setup/main.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/features/runbooks/setup/subs.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/features/runbooks/setup/subs.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/features/users/events.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/features/users/events.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/features/users/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/features/users/main.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/features/users/subs.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/features/users/subs.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/features/users/views/user_form.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/features/users/views/user_form.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/features/users/views/user_list.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/features/users/views/user_list.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/formatters.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/formatters.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/guardrails/basic_info.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/guardrails/basic_info.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/guardrails/connections_section.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/guardrails/connections_section.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/guardrails/create_update_form.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/guardrails/create_update_form.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/guardrails/form_header.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/guardrails/form_header.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/guardrails/helpers.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/guardrails/helpers.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/guardrails/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/guardrails/main.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/guardrails/rule_buttons.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/guardrails/rule_buttons.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/guardrails/rules_table.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/guardrails/rules_table.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/http/api.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/http/api.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/http/request.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/http/request.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/integrations/aws_connect.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/integrations/aws_connect.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/integrations/events.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/integrations/events.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/integrations/jira/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/integrations/jira/main.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/jira_templates/basic_info.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/jira_templates/basic_info.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/jira_templates/cmdb_error.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/jira_templates/cmdb_error.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/jira_templates/cmdb_table.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/jira_templates/cmdb_table.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/jira_templates/form_header.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/jira_templates/form_header.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/jira_templates/helpers.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/jira_templates/helpers.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/jira_templates/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/jira_templates/main.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/jira_templates/mapping_table.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/jira_templates/mapping_table.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/jira_templates/prompt_form.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/jira_templates/prompt_form.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/jira_templates/prompts_table.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/jira_templates/prompts_table.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/jira_templates/rule_buttons.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/jira_templates/rule_buttons.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/onboarding/aws_connect.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/onboarding/aws_connect.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/onboarding/events/effects.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/onboarding/events/effects.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/onboarding/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/onboarding/main.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/onboarding/setup.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/onboarding/setup.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/onboarding/setup_agent.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/onboarding/setup_agent.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/onboarding/setup_resource.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/onboarding/setup_resource.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/organization/users/form.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/organization/users/form.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/organization/users/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/organization/users/main.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/plugins/views/manage_plugin.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/plugins/views/manage_plugin.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/resources/add_role/events.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/resources/add_role/events.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/resources/add_role/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/resources/add_role/main.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/resources/configure/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/resources/configure/main.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/resources/constants.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/resources/constants.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/resources/events.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/resources/events.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/resources/helpers.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/resources/helpers.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/resources/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/resources/main.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/resources/setup/agent_step.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/resources/setup/agent_step.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/resources/setup/events/subs.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/resources/setup/events/subs.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/resources/setup/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/resources/setup/main.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/resources/setup/roles_step.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/resources/setup/roles_step.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/resources/subs.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/resources/subs.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/reviews/panel.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/reviews/panel.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/reviews/review_detail.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/reviews/review_detail.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/reviews/review_item.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/reviews/review_item.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/routes.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/routes.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/settings/license/panel.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/settings/license/panel.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/shared_ui/sidebar/constants.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/shared_ui/sidebar/constants.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/shared_ui/sidebar/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/shared_ui/sidebar/main.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/shared_ui/sidebar/styles.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/shared_ui/sidebar/styles.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/slack/slack_new_user.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/slack/slack_new_user.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/subs.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/subs.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/upgrade_plan/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/upgrade_plan/main.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/utilities.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/utilities.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/views/home.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/views/home.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/webclient/components/header.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/webclient/components/header.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/webclient/components/search.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/webclient/components/search.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/webclient/events/codemirror.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/webclient/events/codemirror.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/webclient/events/metadata.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/webclient/events/metadata.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/webclient/events/search.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/webclient/events/search.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/webclient/log_area/logs.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/webclient/log_area/logs.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/webclient/log_area/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/webclient/log_area/main.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/webclient/panel.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/webclient/panel.cljs -------------------------------------------------------------------------------- /webapp/src/webapp/webclient/quickstart.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/src/webapp/webclient/quickstart.cljs -------------------------------------------------------------------------------- /webapp/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/tailwind.config.js -------------------------------------------------------------------------------- /webapp/test/webapp/core_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoophq/hoop/HEAD/webapp/test/webapp/core_test.cljs --------------------------------------------------------------------------------