├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── dns_challenge_request.md │ └── feature_request.md └── workflows │ └── stale.yml ├── .gitignore ├── .version ├── Jenkinsfile ├── LICENSE ├── README.md ├── backend ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── app.js ├── config │ ├── README.md │ ├── default.json │ └── sqlite-test-db.json ├── db.js ├── index.js ├── internal │ ├── access-list.js │ ├── audit-log.js │ ├── certificate.js │ ├── dead-host.js │ ├── host.js │ ├── ip_ranges.js │ ├── nginx-openappsec.js │ ├── nginx.js │ ├── openappsec-log.js │ ├── proxy-host.js │ ├── redirection-host.js │ ├── report.js │ ├── setting-openappsec.js │ ├── setting.js │ ├── stream.js │ ├── token.js │ └── user.js ├── knexfile.js ├── lib │ ├── access.js │ ├── access │ │ ├── access_lists-create.json │ │ ├── access_lists-delete.json │ │ ├── access_lists-get.json │ │ ├── access_lists-list.json │ │ ├── access_lists-update.json │ │ ├── auditlog-list.json │ │ ├── certificates-create.json │ │ ├── certificates-delete.json │ │ ├── certificates-get.json │ │ ├── certificates-list.json │ │ ├── certificates-update.json │ │ ├── dead_hosts-create.json │ │ ├── dead_hosts-delete.json │ │ ├── dead_hosts-get.json │ │ ├── dead_hosts-list.json │ │ ├── dead_hosts-update.json │ │ ├── permissions.json │ │ ├── proxy_hosts-create.json │ │ ├── proxy_hosts-delete.json │ │ ├── proxy_hosts-get.json │ │ ├── proxy_hosts-list.json │ │ ├── proxy_hosts-update.json │ │ ├── redirection_hosts-create.json │ │ ├── redirection_hosts-delete.json │ │ ├── redirection_hosts-get.json │ │ ├── redirection_hosts-list.json │ │ ├── redirection_hosts-update.json │ │ ├── reports-hosts.json │ │ ├── roles.json │ │ ├── settings-get.json │ │ ├── settings-list.json │ │ ├── settings-update.json │ │ ├── streams-create.json │ │ ├── streams-delete.json │ │ ├── streams-get.json │ │ ├── streams-list.json │ │ ├── streams-update.json │ │ ├── users-create.json │ │ ├── users-delete.json │ │ ├── users-get.json │ │ ├── users-list.json │ │ ├── users-loginas.json │ │ ├── users-password.json │ │ ├── users-permissions.json │ │ └── users-update.json │ ├── certbot.js │ ├── config.js │ ├── constants.js │ ├── error.js │ ├── express │ │ ├── cors.js │ │ ├── jwt-decode.js │ │ ├── jwt.js │ │ ├── pagination.js │ │ └── user-id-from-me.js │ ├── helpers.js │ ├── migrate_template.js │ ├── utils.js │ └── validator │ │ ├── api.js │ │ └── index.js ├── logger.js ├── migrate.js ├── migrations │ ├── 20180618015850_initial.js │ ├── 20180929054513_websockets.js │ ├── 20181019052346_forward_host.js │ ├── 20181113041458_http2_support.js │ ├── 20181213013211_forward_scheme.js │ ├── 20190104035154_disabled.js │ ├── 20190215115310_customlocations.js │ ├── 20190218060101_hsts.js │ ├── 20190227065017_settings.js │ ├── 20200410143839_access_list_client.js │ ├── 20200410143840_access_list_client_fix.js │ ├── 20201014143841_pass_auth.js │ ├── 20210210154702_redirection_scheme.js │ ├── 20210210154703_redirection_status_code.js │ ├── 20210423103500_stream_domain.js │ ├── 20211108145214_regenerate_default_host.js │ └── 20240427161436_stream_ssl.js ├── models │ ├── access_list.js │ ├── access_list_auth.js │ ├── access_list_client.js │ ├── audit-log.js │ ├── auth.js │ ├── certificate.js │ ├── dead_host.js │ ├── now_helper.js │ ├── proxy_host.js │ ├── redirection_host.js │ ├── setting.js │ ├── stream.js │ ├── token.js │ ├── user.js │ └── user_permission.js ├── nodemon.json ├── package.json ├── routes │ ├── audit-log.js │ ├── main.js │ ├── nginx │ │ ├── access_lists.js │ │ ├── certificates.js │ │ ├── dead_hosts.js │ │ ├── proxy_hosts.js │ │ ├── redirection_hosts.js │ │ └── streams.js │ ├── openappsec-log.js │ ├── openappsec-settings.js │ ├── reports.js │ ├── schema.js │ ├── settings.js │ ├── tokens.js │ └── users.js ├── schema │ ├── common.json │ ├── components │ │ ├── access-list-object.json │ │ ├── audit-log-object.json │ │ ├── certificate-list.json │ │ ├── certificate-object.json │ │ ├── dead-host-list.json │ │ ├── dead-host-object.json │ │ ├── error-object.json │ │ ├── error.json │ │ ├── health-object.json │ │ ├── permission-object.json │ │ ├── proxy-host-list.json │ │ ├── proxy-host-object.json │ │ ├── redirection-host-list.json │ │ ├── redirection-host-object.json │ │ ├── security-schemes.json │ │ ├── setting-list.json │ │ ├── setting-object.json │ │ ├── stream-list.json │ │ ├── stream-object.json │ │ ├── token-object.json │ │ ├── user-list.json │ │ └── user-object.json │ ├── index.js │ ├── paths │ │ ├── audit-log │ │ │ └── get.json │ │ ├── get.json │ │ ├── nginx │ │ │ ├── access-lists │ │ │ │ ├── get.json │ │ │ │ ├── listID │ │ │ │ │ ├── delete.json │ │ │ │ │ ├── get.json │ │ │ │ │ └── put.json │ │ │ │ └── post.json │ │ │ ├── certificates │ │ │ │ ├── certID │ │ │ │ │ ├── delete.json │ │ │ │ │ ├── download │ │ │ │ │ │ └── get.json │ │ │ │ │ ├── get.json │ │ │ │ │ ├── renew │ │ │ │ │ │ └── post.json │ │ │ │ │ └── upload │ │ │ │ │ │ └── post.json │ │ │ │ ├── get.json │ │ │ │ ├── post.json │ │ │ │ ├── test-http │ │ │ │ │ └── get.json │ │ │ │ └── validate │ │ │ │ │ └── post.json │ │ │ ├── dead-hosts │ │ │ │ ├── get.json │ │ │ │ ├── hostID │ │ │ │ │ ├── delete.json │ │ │ │ │ ├── disable │ │ │ │ │ │ └── post.json │ │ │ │ │ ├── enable │ │ │ │ │ │ └── post.json │ │ │ │ │ ├── get.json │ │ │ │ │ └── put.json │ │ │ │ └── post.json │ │ │ ├── proxy-hosts │ │ │ │ ├── get.json │ │ │ │ ├── hostID │ │ │ │ │ ├── delete.json │ │ │ │ │ ├── disable │ │ │ │ │ │ └── post.json │ │ │ │ │ ├── enable │ │ │ │ │ │ └── post.json │ │ │ │ │ ├── get.json │ │ │ │ │ └── put.json │ │ │ │ └── post.json │ │ │ ├── redirection-hosts │ │ │ │ ├── get.json │ │ │ │ ├── hostID │ │ │ │ │ ├── delete.json │ │ │ │ │ ├── disable │ │ │ │ │ │ └── post.json │ │ │ │ │ ├── enable │ │ │ │ │ │ └── post.json │ │ │ │ │ ├── get.json │ │ │ │ │ └── put.json │ │ │ │ └── post.json │ │ │ └── streams │ │ │ │ ├── get.json │ │ │ │ ├── post.json │ │ │ │ └── streamID │ │ │ │ ├── delete.json │ │ │ │ ├── disable │ │ │ │ └── post.json │ │ │ │ ├── enable │ │ │ │ └── post.json │ │ │ │ ├── get.json │ │ │ │ └── put.json │ │ ├── reports │ │ │ └── hosts │ │ │ │ └── get.json │ │ ├── schema │ │ │ └── get.json │ │ ├── settings │ │ │ ├── get.json │ │ │ └── settingID │ │ │ │ ├── get.json │ │ │ │ └── put.json │ │ ├── tokens │ │ │ ├── get.json │ │ │ └── post.json │ │ └── users │ │ │ ├── get.json │ │ │ ├── post.json │ │ │ └── userID │ │ │ ├── auth │ │ │ └── put.json │ │ │ ├── delete.json │ │ │ ├── get.json │ │ │ ├── login │ │ │ └── post.json │ │ │ ├── permissions │ │ │ └── put.json │ │ │ └── put.json │ └── swagger.json ├── scripts │ └── install-certbot-plugins ├── setup.js ├── templates │ ├── _access.conf │ ├── _assets.conf │ ├── _certificates.conf │ ├── _certificates_stream.conf │ ├── _exploits.conf │ ├── _forced_ssl.conf │ ├── _header_comment.conf │ ├── _hsts.conf │ ├── _hsts_map.conf │ ├── _listen.conf │ ├── _location.conf │ ├── dead_host.conf │ ├── default.conf │ ├── ip_ranges.conf │ ├── letsencrypt-request.conf │ ├── local-policy-open-appsec-enabled-for-proxy-host.yaml │ ├── openappsec.conf │ ├── proxy_host.conf │ ├── redirection_host.conf │ └── stream.conf ├── validate-schema.js └── yarn.lock ├── deployment ├── docker-compose.yaml ├── local_policy.yaml ├── managed-from-npm-ui │ ├── docker-compose.yaml │ └── local_policy.yaml ├── managed-from-open-appsec-ui │ └── docker-compose.yaml └── playground │ ├── managed-from-npm-ui │ ├── docker-compose.yaml │ └── local_policy.yaml │ └── managed-from-open-appsec-web-ui │ └── docker-compose.yaml ├── docker ├── .dive-ci ├── Dockerfile ├── Dockerfile.central-mgmt ├── ci.env ├── ci │ └── postgres │ │ └── authentik.sql.gz ├── dev │ ├── Dockerfile │ ├── dnsrouter-config.json │ ├── letsencrypt.ini │ ├── pdns-db.sql │ ├── pebble-config.json │ └── squid.conf ├── docker-compose.ci.mysql.yml ├── docker-compose.ci.postgres.yml ├── docker-compose.ci.sqlite.yml ├── docker-compose.ci.yml ├── docker-compose.dev.yml ├── lib │ ├── libngx_module.so │ ├── libosrc_compression_utils.so │ ├── libosrc_nginx_attachment_util.so │ └── libosrc_shmem_ipc.so ├── rootfs │ ├── etc │ │ ├── letsencrypt.ini │ │ ├── logrotate.d │ │ │ └── nginx-proxy-manager │ │ ├── nginx │ │ │ ├── conf.d │ │ │ │ ├── default.conf │ │ │ │ ├── dev.conf │ │ │ │ ├── include │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── assets.conf │ │ │ │ │ ├── block-exploits.conf │ │ │ │ │ ├── force-ssl.conf │ │ │ │ │ ├── ip_ranges.conf │ │ │ │ │ ├── letsencrypt-acme-challenge.conf │ │ │ │ │ ├── log.conf │ │ │ │ │ ├── proxy.conf │ │ │ │ │ ├── ssl-cache-stream.conf │ │ │ │ │ ├── ssl-cache.conf │ │ │ │ │ └── ssl-ciphers.conf │ │ │ │ └── production.conf │ │ │ ├── mime.types │ │ │ └── nginx.conf │ │ └── s6-overlay │ │ │ └── s6-rc.d │ │ │ ├── backend │ │ │ ├── dependencies.d │ │ │ │ └── prepare │ │ │ ├── run │ │ │ └── type │ │ │ ├── frontend │ │ │ ├── dependencies.d │ │ │ │ └── prepare │ │ │ ├── run │ │ │ └── type │ │ │ ├── nginx │ │ │ ├── dependencies.d │ │ │ │ └── prepare │ │ │ ├── run │ │ │ └── type │ │ │ ├── prepare │ │ │ ├── 00-all.sh │ │ │ ├── 10-usergroup.sh │ │ │ ├── 20-paths.sh │ │ │ ├── 30-ownership.sh │ │ │ ├── 40-dynamic.sh │ │ │ ├── 50-ipv6.sh │ │ │ ├── 60-secrets.sh │ │ │ ├── 90-banner.sh │ │ │ ├── dependencies.d │ │ │ │ └── base │ │ │ ├── type │ │ │ └── up │ │ │ └── user │ │ │ └── contents.d │ │ │ ├── backend │ │ │ ├── frontend │ │ │ ├── nginx │ │ │ └── prepare │ ├── root │ │ └── .bashrc │ ├── usr │ │ └── bin │ │ │ ├── check-health │ │ │ └── common.sh │ └── var │ │ └── www │ │ └── html │ │ └── index.html └── scripts │ └── install-s6 ├── docs ├── .gitignore ├── .vitepress │ ├── config.mts │ └── theme │ │ ├── custom.css │ │ └── index.ts ├── package.json ├── src │ ├── advanced-config │ │ └── index.md │ ├── faq │ │ └── index.md │ ├── guide │ │ └── index.md │ ├── index.md │ ├── public │ │ ├── github.png │ │ ├── icon.png │ │ ├── logo.svg │ │ ├── robots.txt │ │ └── screenshots │ │ │ ├── access-lists.png │ │ │ ├── audit-log.png │ │ │ ├── certificates.png │ │ │ ├── custom-settings.png │ │ │ ├── dashboard.png │ │ │ ├── dead-hosts.png │ │ │ ├── login.png │ │ │ ├── permissions.png │ │ │ ├── proxy-hosts-add.png │ │ │ ├── proxy-hosts.png │ │ │ └── redirection-hosts.png │ ├── screenshots │ │ └── index.md │ ├── setup │ │ └── index.md │ ├── third-party │ │ └── index.md │ └── upgrading │ │ └── index.md └── yarn.lock ├── frontend ├── .babelrc ├── .gitignore ├── app-images │ ├── default-avatar.jpg │ ├── favicons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── mstile-150x150.png │ │ ├── safari-pinned-tab.svg │ │ └── site.webmanifest │ ├── logo-256.png │ ├── logo-text-vertical-grey.png │ └── open-appsec-logo.svg ├── fonts │ ├── feather │ └── source-sans-pro │ │ ├── source-sans-pro-v14-latin-ext_latin-700.woff │ │ ├── source-sans-pro-v14-latin-ext_latin-700.woff2 │ │ ├── source-sans-pro-v14-latin-ext_latin-700italic.woff │ │ ├── source-sans-pro-v14-latin-ext_latin-700italic.woff2 │ │ ├── source-sans-pro-v14-latin-ext_latin-italic.woff │ │ ├── source-sans-pro-v14-latin-ext_latin-italic.woff2 │ │ ├── source-sans-pro-v14-latin-ext_latin-regular.woff │ │ └── source-sans-pro-v14-latin-ext_latin-regular.woff2 ├── html │ ├── index.ejs │ ├── login.ejs │ └── partials │ │ ├── footer.ejs │ │ └── header.ejs ├── images ├── js │ ├── app │ │ ├── api.js │ │ ├── audit-log │ │ │ ├── list │ │ │ │ ├── item.ejs │ │ │ │ ├── item.js │ │ │ │ ├── main.ejs │ │ │ │ └── main.js │ │ │ ├── main.ejs │ │ │ ├── main.js │ │ │ ├── meta.ejs │ │ │ └── meta.js │ │ ├── cache.js │ │ ├── controller.js │ │ ├── dashboard │ │ │ ├── main.ejs │ │ │ └── main.js │ │ ├── empty │ │ │ ├── main.ejs │ │ │ └── main.js │ │ ├── error │ │ │ ├── main.ejs │ │ │ └── main.js │ │ ├── help │ │ │ ├── main.ejs │ │ │ └── main.js │ │ ├── i18n.js │ │ ├── main.js │ │ ├── nginx │ │ │ ├── access │ │ │ │ ├── delete.ejs │ │ │ │ ├── delete.js │ │ │ │ ├── form.ejs │ │ │ │ ├── form.js │ │ │ │ ├── form │ │ │ │ │ ├── client.ejs │ │ │ │ │ ├── client.js │ │ │ │ │ ├── item.ejs │ │ │ │ │ └── item.js │ │ │ │ ├── list │ │ │ │ │ ├── item.ejs │ │ │ │ │ ├── item.js │ │ │ │ │ ├── main.ejs │ │ │ │ │ └── main.js │ │ │ │ ├── main.ejs │ │ │ │ └── main.js │ │ │ ├── certificates-list-item.ejs │ │ │ ├── certificates │ │ │ │ ├── delete.ejs │ │ │ │ ├── delete.js │ │ │ │ ├── form.ejs │ │ │ │ ├── form.js │ │ │ │ ├── list │ │ │ │ │ ├── item.ejs │ │ │ │ │ ├── item.js │ │ │ │ │ ├── main.ejs │ │ │ │ │ └── main.js │ │ │ │ ├── main.ejs │ │ │ │ ├── main.js │ │ │ │ ├── renew.ejs │ │ │ │ ├── renew.js │ │ │ │ ├── test.ejs │ │ │ │ └── test.js │ │ │ ├── dead │ │ │ │ ├── delete.ejs │ │ │ │ ├── delete.js │ │ │ │ ├── form.ejs │ │ │ │ ├── form.js │ │ │ │ ├── list │ │ │ │ │ ├── item.ejs │ │ │ │ │ ├── item.js │ │ │ │ │ ├── main.ejs │ │ │ │ │ └── main.js │ │ │ │ ├── main.ejs │ │ │ │ └── main.js │ │ │ ├── proxy │ │ │ │ ├── access-list-item.ejs │ │ │ │ ├── delete.ejs │ │ │ │ ├── delete.js │ │ │ │ ├── form.ejs │ │ │ │ ├── form.js │ │ │ │ ├── list │ │ │ │ │ ├── item.ejs │ │ │ │ │ ├── item.js │ │ │ │ │ ├── main.ejs │ │ │ │ │ └── main.js │ │ │ │ ├── location-item.ejs │ │ │ │ ├── location.js │ │ │ │ ├── main.ejs │ │ │ │ └── main.js │ │ │ ├── redirection │ │ │ │ ├── delete.ejs │ │ │ │ ├── delete.js │ │ │ │ ├── form.ejs │ │ │ │ ├── form.js │ │ │ │ ├── list │ │ │ │ │ ├── item.ejs │ │ │ │ │ ├── item.js │ │ │ │ │ ├── main.ejs │ │ │ │ │ └── main.js │ │ │ │ ├── main.ejs │ │ │ │ └── main.js │ │ │ └── stream │ │ │ │ ├── delete.ejs │ │ │ │ ├── delete.js │ │ │ │ ├── form.ejs │ │ │ │ ├── form.js │ │ │ │ ├── list │ │ │ │ ├── item.ejs │ │ │ │ ├── item.js │ │ │ │ ├── main.ejs │ │ │ │ └── main.js │ │ │ │ ├── main.ejs │ │ │ │ └── main.js │ │ ├── openappsec-log │ │ │ ├── list-all │ │ │ │ ├── item.ejs │ │ │ │ ├── item.js │ │ │ │ ├── main.ejs │ │ │ │ └── main.js │ │ │ ├── list-important │ │ │ │ ├── item.ejs │ │ │ │ ├── item.js │ │ │ │ ├── main.ejs │ │ │ │ └── main.js │ │ │ ├── list-notifications │ │ │ │ ├── item.ejs │ │ │ │ ├── item.js │ │ │ │ ├── main.ejs │ │ │ │ └── main.js │ │ │ ├── list │ │ │ │ ├── item.ejs │ │ │ │ ├── item.js │ │ │ │ ├── main.ejs │ │ │ │ └── main.js │ │ │ ├── main.ejs │ │ │ ├── main.js │ │ │ ├── meta.ejs │ │ │ ├── meta.js │ │ │ └── pagination.ejs │ │ ├── router.js │ │ ├── settings │ │ │ ├── default-site │ │ │ │ ├── main.ejs │ │ │ │ └── main.js │ │ │ ├── list │ │ │ │ ├── item.ejs │ │ │ │ ├── item.js │ │ │ │ ├── main.ejs │ │ │ │ └── main.js │ │ │ ├── main.ejs │ │ │ └── main.js │ │ ├── tokens.js │ │ ├── ui │ │ │ ├── footer │ │ │ │ ├── main.ejs │ │ │ │ └── main.js │ │ │ ├── header │ │ │ │ ├── main.ejs │ │ │ │ └── main.js │ │ │ ├── main.ejs │ │ │ ├── main.js │ │ │ └── menu │ │ │ │ ├── main.ejs │ │ │ │ └── main.js │ │ ├── user │ │ │ ├── delete.ejs │ │ │ ├── delete.js │ │ │ ├── form.ejs │ │ │ ├── form.js │ │ │ ├── password.ejs │ │ │ ├── password.js │ │ │ ├── permissions.ejs │ │ │ └── permissions.js │ │ └── users │ │ │ ├── list │ │ │ ├── item.ejs │ │ │ ├── item.js │ │ │ ├── main.ejs │ │ │ └── main.js │ │ │ ├── main.ejs │ │ │ └── main.js │ ├── i18n │ │ └── messages.json │ ├── index.js │ ├── lib │ │ ├── helpers.js │ │ └── marionette.js │ ├── login.js │ ├── login │ │ ├── main.js │ │ └── ui │ │ │ ├── login.ejs │ │ │ └── login.js │ └── models │ │ ├── access-list.js │ │ ├── audit-log.js │ │ ├── certificate.js │ │ ├── dead-host.js │ │ ├── openappsec-log.js │ │ ├── proxy-host-location.js │ │ ├── proxy-host.js │ │ ├── redirection-host.js │ │ ├── setting.js │ │ ├── stream.js │ │ └── user.js ├── package.json ├── scss │ ├── custom.scss │ ├── fonts.scss │ ├── selectize.scss │ ├── styles.scss │ └── tabler-extra.scss ├── webpack.config.js └── yarn.lock ├── global ├── README.md └── certbot-dns-plugins.json ├── scripts ├── .common.sh ├── buildx ├── ci │ ├── frontend-build │ ├── fulltest-cypress │ └── test-and-build ├── cypress-dev ├── destroy-dev ├── docs-build ├── docs-upload ├── start-dev ├── stop-dev └── wait-healthy └── test ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── README.md ├── cypress ├── Dockerfile ├── config │ └── ci.js ├── e2e │ └── api │ │ ├── Certificates.cy.js │ │ ├── FullCertProvision.cy.js │ │ ├── Health.cy.js │ │ ├── Ldap.cy.js │ │ ├── OAuth.cy.js │ │ ├── ProxyHosts.cy.js │ │ ├── Settings.cy.js │ │ ├── Streams.cy.js │ │ └── Users.cy.js ├── fixtures │ ├── test.example.com-key.pem │ └── test.example.com.pem ├── plugins │ ├── backendApi │ │ ├── client.js │ │ ├── logger.js │ │ └── task.js │ └── index.js └── support │ ├── commands.js │ └── e2e.js ├── jsconfig.json ├── multi-reporter.json ├── package.json └── yarn.lock /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/dns_challenge_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/.github/ISSUE_TEMPLATE/dns_challenge_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/.gitignore -------------------------------------------------------------------------------- /.version: -------------------------------------------------------------------------------- 1 | 2.12.3 2 | -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/README.md -------------------------------------------------------------------------------- /backend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/.eslintrc.json -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/.prettierrc -------------------------------------------------------------------------------- /backend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/app.js -------------------------------------------------------------------------------- /backend/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/config/README.md -------------------------------------------------------------------------------- /backend/config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/config/default.json -------------------------------------------------------------------------------- /backend/config/sqlite-test-db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/config/sqlite-test-db.json -------------------------------------------------------------------------------- /backend/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/db.js -------------------------------------------------------------------------------- /backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/index.js -------------------------------------------------------------------------------- /backend/internal/access-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/internal/access-list.js -------------------------------------------------------------------------------- /backend/internal/audit-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/internal/audit-log.js -------------------------------------------------------------------------------- /backend/internal/certificate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/internal/certificate.js -------------------------------------------------------------------------------- /backend/internal/dead-host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/internal/dead-host.js -------------------------------------------------------------------------------- /backend/internal/host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/internal/host.js -------------------------------------------------------------------------------- /backend/internal/ip_ranges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/internal/ip_ranges.js -------------------------------------------------------------------------------- /backend/internal/nginx-openappsec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/internal/nginx-openappsec.js -------------------------------------------------------------------------------- /backend/internal/nginx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/internal/nginx.js -------------------------------------------------------------------------------- /backend/internal/openappsec-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/internal/openappsec-log.js -------------------------------------------------------------------------------- /backend/internal/proxy-host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/internal/proxy-host.js -------------------------------------------------------------------------------- /backend/internal/redirection-host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/internal/redirection-host.js -------------------------------------------------------------------------------- /backend/internal/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/internal/report.js -------------------------------------------------------------------------------- /backend/internal/setting-openappsec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/internal/setting-openappsec.js -------------------------------------------------------------------------------- /backend/internal/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/internal/setting.js -------------------------------------------------------------------------------- /backend/internal/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/internal/stream.js -------------------------------------------------------------------------------- /backend/internal/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/internal/token.js -------------------------------------------------------------------------------- /backend/internal/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/internal/user.js -------------------------------------------------------------------------------- /backend/knexfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/knexfile.js -------------------------------------------------------------------------------- /backend/lib/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access.js -------------------------------------------------------------------------------- /backend/lib/access/access_lists-create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/access_lists-create.json -------------------------------------------------------------------------------- /backend/lib/access/access_lists-delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/access_lists-delete.json -------------------------------------------------------------------------------- /backend/lib/access/access_lists-get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/access_lists-get.json -------------------------------------------------------------------------------- /backend/lib/access/access_lists-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/access_lists-list.json -------------------------------------------------------------------------------- /backend/lib/access/access_lists-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/access_lists-update.json -------------------------------------------------------------------------------- /backend/lib/access/auditlog-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/auditlog-list.json -------------------------------------------------------------------------------- /backend/lib/access/certificates-create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/certificates-create.json -------------------------------------------------------------------------------- /backend/lib/access/certificates-delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/certificates-delete.json -------------------------------------------------------------------------------- /backend/lib/access/certificates-get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/certificates-get.json -------------------------------------------------------------------------------- /backend/lib/access/certificates-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/certificates-list.json -------------------------------------------------------------------------------- /backend/lib/access/certificates-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/certificates-update.json -------------------------------------------------------------------------------- /backend/lib/access/dead_hosts-create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/dead_hosts-create.json -------------------------------------------------------------------------------- /backend/lib/access/dead_hosts-delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/dead_hosts-delete.json -------------------------------------------------------------------------------- /backend/lib/access/dead_hosts-get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/dead_hosts-get.json -------------------------------------------------------------------------------- /backend/lib/access/dead_hosts-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/dead_hosts-list.json -------------------------------------------------------------------------------- /backend/lib/access/dead_hosts-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/dead_hosts-update.json -------------------------------------------------------------------------------- /backend/lib/access/permissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/permissions.json -------------------------------------------------------------------------------- /backend/lib/access/proxy_hosts-create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/proxy_hosts-create.json -------------------------------------------------------------------------------- /backend/lib/access/proxy_hosts-delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/proxy_hosts-delete.json -------------------------------------------------------------------------------- /backend/lib/access/proxy_hosts-get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/proxy_hosts-get.json -------------------------------------------------------------------------------- /backend/lib/access/proxy_hosts-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/proxy_hosts-list.json -------------------------------------------------------------------------------- /backend/lib/access/proxy_hosts-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/proxy_hosts-update.json -------------------------------------------------------------------------------- /backend/lib/access/redirection_hosts-create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/redirection_hosts-create.json -------------------------------------------------------------------------------- /backend/lib/access/redirection_hosts-delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/redirection_hosts-delete.json -------------------------------------------------------------------------------- /backend/lib/access/redirection_hosts-get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/redirection_hosts-get.json -------------------------------------------------------------------------------- /backend/lib/access/redirection_hosts-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/redirection_hosts-list.json -------------------------------------------------------------------------------- /backend/lib/access/redirection_hosts-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/redirection_hosts-update.json -------------------------------------------------------------------------------- /backend/lib/access/reports-hosts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/reports-hosts.json -------------------------------------------------------------------------------- /backend/lib/access/roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/roles.json -------------------------------------------------------------------------------- /backend/lib/access/settings-get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/settings-get.json -------------------------------------------------------------------------------- /backend/lib/access/settings-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/settings-list.json -------------------------------------------------------------------------------- /backend/lib/access/settings-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/settings-update.json -------------------------------------------------------------------------------- /backend/lib/access/streams-create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/streams-create.json -------------------------------------------------------------------------------- /backend/lib/access/streams-delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/streams-delete.json -------------------------------------------------------------------------------- /backend/lib/access/streams-get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/streams-get.json -------------------------------------------------------------------------------- /backend/lib/access/streams-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/streams-list.json -------------------------------------------------------------------------------- /backend/lib/access/streams-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/streams-update.json -------------------------------------------------------------------------------- /backend/lib/access/users-create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/users-create.json -------------------------------------------------------------------------------- /backend/lib/access/users-delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/users-delete.json -------------------------------------------------------------------------------- /backend/lib/access/users-get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/users-get.json -------------------------------------------------------------------------------- /backend/lib/access/users-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/users-list.json -------------------------------------------------------------------------------- /backend/lib/access/users-loginas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/users-loginas.json -------------------------------------------------------------------------------- /backend/lib/access/users-password.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/users-password.json -------------------------------------------------------------------------------- /backend/lib/access/users-permissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/users-permissions.json -------------------------------------------------------------------------------- /backend/lib/access/users-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/access/users-update.json -------------------------------------------------------------------------------- /backend/lib/certbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/certbot.js -------------------------------------------------------------------------------- /backend/lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/config.js -------------------------------------------------------------------------------- /backend/lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/constants.js -------------------------------------------------------------------------------- /backend/lib/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/error.js -------------------------------------------------------------------------------- /backend/lib/express/cors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/express/cors.js -------------------------------------------------------------------------------- /backend/lib/express/jwt-decode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/express/jwt-decode.js -------------------------------------------------------------------------------- /backend/lib/express/jwt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/express/jwt.js -------------------------------------------------------------------------------- /backend/lib/express/pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/express/pagination.js -------------------------------------------------------------------------------- /backend/lib/express/user-id-from-me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/express/user-id-from-me.js -------------------------------------------------------------------------------- /backend/lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/helpers.js -------------------------------------------------------------------------------- /backend/lib/migrate_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/migrate_template.js -------------------------------------------------------------------------------- /backend/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/utils.js -------------------------------------------------------------------------------- /backend/lib/validator/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/validator/api.js -------------------------------------------------------------------------------- /backend/lib/validator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/lib/validator/index.js -------------------------------------------------------------------------------- /backend/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/logger.js -------------------------------------------------------------------------------- /backend/migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/migrate.js -------------------------------------------------------------------------------- /backend/migrations/20180618015850_initial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/migrations/20180618015850_initial.js -------------------------------------------------------------------------------- /backend/migrations/20180929054513_websockets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/migrations/20180929054513_websockets.js -------------------------------------------------------------------------------- /backend/migrations/20181019052346_forward_host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/migrations/20181019052346_forward_host.js -------------------------------------------------------------------------------- /backend/migrations/20181113041458_http2_support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/migrations/20181113041458_http2_support.js -------------------------------------------------------------------------------- /backend/migrations/20181213013211_forward_scheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/migrations/20181213013211_forward_scheme.js -------------------------------------------------------------------------------- /backend/migrations/20190104035154_disabled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/migrations/20190104035154_disabled.js -------------------------------------------------------------------------------- /backend/migrations/20190215115310_customlocations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/migrations/20190215115310_customlocations.js -------------------------------------------------------------------------------- /backend/migrations/20190218060101_hsts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/migrations/20190218060101_hsts.js -------------------------------------------------------------------------------- /backend/migrations/20190227065017_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/migrations/20190227065017_settings.js -------------------------------------------------------------------------------- /backend/migrations/20200410143839_access_list_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/migrations/20200410143839_access_list_client.js -------------------------------------------------------------------------------- /backend/migrations/20200410143840_access_list_client_fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/migrations/20200410143840_access_list_client_fix.js -------------------------------------------------------------------------------- /backend/migrations/20201014143841_pass_auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/migrations/20201014143841_pass_auth.js -------------------------------------------------------------------------------- /backend/migrations/20210210154702_redirection_scheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/migrations/20210210154702_redirection_scheme.js -------------------------------------------------------------------------------- /backend/migrations/20210210154703_redirection_status_code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/migrations/20210210154703_redirection_status_code.js -------------------------------------------------------------------------------- /backend/migrations/20210423103500_stream_domain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/migrations/20210423103500_stream_domain.js -------------------------------------------------------------------------------- /backend/migrations/20211108145214_regenerate_default_host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/migrations/20211108145214_regenerate_default_host.js -------------------------------------------------------------------------------- /backend/migrations/20240427161436_stream_ssl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/migrations/20240427161436_stream_ssl.js -------------------------------------------------------------------------------- /backend/models/access_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/models/access_list.js -------------------------------------------------------------------------------- /backend/models/access_list_auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/models/access_list_auth.js -------------------------------------------------------------------------------- /backend/models/access_list_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/models/access_list_client.js -------------------------------------------------------------------------------- /backend/models/audit-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/models/audit-log.js -------------------------------------------------------------------------------- /backend/models/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/models/auth.js -------------------------------------------------------------------------------- /backend/models/certificate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/models/certificate.js -------------------------------------------------------------------------------- /backend/models/dead_host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/models/dead_host.js -------------------------------------------------------------------------------- /backend/models/now_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/models/now_helper.js -------------------------------------------------------------------------------- /backend/models/proxy_host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/models/proxy_host.js -------------------------------------------------------------------------------- /backend/models/redirection_host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/models/redirection_host.js -------------------------------------------------------------------------------- /backend/models/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/models/setting.js -------------------------------------------------------------------------------- /backend/models/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/models/stream.js -------------------------------------------------------------------------------- /backend/models/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/models/token.js -------------------------------------------------------------------------------- /backend/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/models/user.js -------------------------------------------------------------------------------- /backend/models/user_permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/models/user_permission.js -------------------------------------------------------------------------------- /backend/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/nodemon.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/routes/audit-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/routes/audit-log.js -------------------------------------------------------------------------------- /backend/routes/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/routes/main.js -------------------------------------------------------------------------------- /backend/routes/nginx/access_lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/routes/nginx/access_lists.js -------------------------------------------------------------------------------- /backend/routes/nginx/certificates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/routes/nginx/certificates.js -------------------------------------------------------------------------------- /backend/routes/nginx/dead_hosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/routes/nginx/dead_hosts.js -------------------------------------------------------------------------------- /backend/routes/nginx/proxy_hosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/routes/nginx/proxy_hosts.js -------------------------------------------------------------------------------- /backend/routes/nginx/redirection_hosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/routes/nginx/redirection_hosts.js -------------------------------------------------------------------------------- /backend/routes/nginx/streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/routes/nginx/streams.js -------------------------------------------------------------------------------- /backend/routes/openappsec-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/routes/openappsec-log.js -------------------------------------------------------------------------------- /backend/routes/openappsec-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/routes/openappsec-settings.js -------------------------------------------------------------------------------- /backend/routes/reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/routes/reports.js -------------------------------------------------------------------------------- /backend/routes/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/routes/schema.js -------------------------------------------------------------------------------- /backend/routes/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/routes/settings.js -------------------------------------------------------------------------------- /backend/routes/tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/routes/tokens.js -------------------------------------------------------------------------------- /backend/routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/routes/users.js -------------------------------------------------------------------------------- /backend/schema/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/common.json -------------------------------------------------------------------------------- /backend/schema/components/access-list-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/access-list-object.json -------------------------------------------------------------------------------- /backend/schema/components/audit-log-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/audit-log-object.json -------------------------------------------------------------------------------- /backend/schema/components/certificate-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/certificate-list.json -------------------------------------------------------------------------------- /backend/schema/components/certificate-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/certificate-object.json -------------------------------------------------------------------------------- /backend/schema/components/dead-host-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/dead-host-list.json -------------------------------------------------------------------------------- /backend/schema/components/dead-host-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/dead-host-object.json -------------------------------------------------------------------------------- /backend/schema/components/error-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/error-object.json -------------------------------------------------------------------------------- /backend/schema/components/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/error.json -------------------------------------------------------------------------------- /backend/schema/components/health-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/health-object.json -------------------------------------------------------------------------------- /backend/schema/components/permission-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/permission-object.json -------------------------------------------------------------------------------- /backend/schema/components/proxy-host-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/proxy-host-list.json -------------------------------------------------------------------------------- /backend/schema/components/proxy-host-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/proxy-host-object.json -------------------------------------------------------------------------------- /backend/schema/components/redirection-host-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/redirection-host-list.json -------------------------------------------------------------------------------- /backend/schema/components/redirection-host-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/redirection-host-object.json -------------------------------------------------------------------------------- /backend/schema/components/security-schemes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/security-schemes.json -------------------------------------------------------------------------------- /backend/schema/components/setting-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/setting-list.json -------------------------------------------------------------------------------- /backend/schema/components/setting-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/setting-object.json -------------------------------------------------------------------------------- /backend/schema/components/stream-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/stream-list.json -------------------------------------------------------------------------------- /backend/schema/components/stream-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/stream-object.json -------------------------------------------------------------------------------- /backend/schema/components/token-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/token-object.json -------------------------------------------------------------------------------- /backend/schema/components/user-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/user-list.json -------------------------------------------------------------------------------- /backend/schema/components/user-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/components/user-object.json -------------------------------------------------------------------------------- /backend/schema/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/index.js -------------------------------------------------------------------------------- /backend/schema/paths/audit-log/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/audit-log/get.json -------------------------------------------------------------------------------- /backend/schema/paths/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/get.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/access-lists/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/access-lists/get.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/access-lists/listID/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/access-lists/listID/delete.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/access-lists/listID/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/access-lists/listID/get.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/access-lists/listID/put.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/access-lists/listID/put.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/access-lists/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/access-lists/post.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/certificates/certID/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/certificates/certID/delete.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/certificates/certID/download/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/certificates/certID/download/get.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/certificates/certID/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/certificates/certID/get.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/certificates/certID/renew/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/certificates/certID/renew/post.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/certificates/certID/upload/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/certificates/certID/upload/post.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/certificates/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/certificates/get.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/certificates/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/certificates/post.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/certificates/test-http/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/certificates/test-http/get.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/certificates/validate/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/certificates/validate/post.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/dead-hosts/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/dead-hosts/get.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/dead-hosts/hostID/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/dead-hosts/hostID/delete.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/dead-hosts/hostID/disable/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/dead-hosts/hostID/disable/post.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/dead-hosts/hostID/enable/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/dead-hosts/hostID/enable/post.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/dead-hosts/hostID/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/dead-hosts/hostID/get.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/dead-hosts/hostID/put.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/dead-hosts/hostID/put.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/dead-hosts/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/dead-hosts/post.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/proxy-hosts/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/proxy-hosts/get.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/proxy-hosts/hostID/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/proxy-hosts/hostID/delete.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/proxy-hosts/hostID/disable/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/proxy-hosts/hostID/disable/post.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/proxy-hosts/hostID/enable/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/proxy-hosts/hostID/enable/post.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/proxy-hosts/hostID/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/proxy-hosts/hostID/get.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/proxy-hosts/hostID/put.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/proxy-hosts/hostID/put.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/proxy-hosts/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/proxy-hosts/post.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/redirection-hosts/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/redirection-hosts/get.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/redirection-hosts/hostID/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/redirection-hosts/hostID/delete.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/redirection-hosts/hostID/disable/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/redirection-hosts/hostID/disable/post.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/redirection-hosts/hostID/enable/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/redirection-hosts/hostID/enable/post.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/redirection-hosts/hostID/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/redirection-hosts/hostID/get.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/redirection-hosts/hostID/put.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/redirection-hosts/hostID/put.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/redirection-hosts/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/redirection-hosts/post.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/streams/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/streams/get.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/streams/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/streams/post.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/streams/streamID/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/streams/streamID/delete.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/streams/streamID/disable/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/streams/streamID/disable/post.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/streams/streamID/enable/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/streams/streamID/enable/post.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/streams/streamID/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/streams/streamID/get.json -------------------------------------------------------------------------------- /backend/schema/paths/nginx/streams/streamID/put.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/nginx/streams/streamID/put.json -------------------------------------------------------------------------------- /backend/schema/paths/reports/hosts/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/reports/hosts/get.json -------------------------------------------------------------------------------- /backend/schema/paths/schema/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/schema/get.json -------------------------------------------------------------------------------- /backend/schema/paths/settings/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/settings/get.json -------------------------------------------------------------------------------- /backend/schema/paths/settings/settingID/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/settings/settingID/get.json -------------------------------------------------------------------------------- /backend/schema/paths/settings/settingID/put.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/settings/settingID/put.json -------------------------------------------------------------------------------- /backend/schema/paths/tokens/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/tokens/get.json -------------------------------------------------------------------------------- /backend/schema/paths/tokens/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/tokens/post.json -------------------------------------------------------------------------------- /backend/schema/paths/users/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/users/get.json -------------------------------------------------------------------------------- /backend/schema/paths/users/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/users/post.json -------------------------------------------------------------------------------- /backend/schema/paths/users/userID/auth/put.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/users/userID/auth/put.json -------------------------------------------------------------------------------- /backend/schema/paths/users/userID/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/users/userID/delete.json -------------------------------------------------------------------------------- /backend/schema/paths/users/userID/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/users/userID/get.json -------------------------------------------------------------------------------- /backend/schema/paths/users/userID/login/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/users/userID/login/post.json -------------------------------------------------------------------------------- /backend/schema/paths/users/userID/permissions/put.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/users/userID/permissions/put.json -------------------------------------------------------------------------------- /backend/schema/paths/users/userID/put.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/paths/users/userID/put.json -------------------------------------------------------------------------------- /backend/schema/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/schema/swagger.json -------------------------------------------------------------------------------- /backend/scripts/install-certbot-plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/scripts/install-certbot-plugins -------------------------------------------------------------------------------- /backend/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/setup.js -------------------------------------------------------------------------------- /backend/templates/_access.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/templates/_access.conf -------------------------------------------------------------------------------- /backend/templates/_assets.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/templates/_assets.conf -------------------------------------------------------------------------------- /backend/templates/_certificates.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/templates/_certificates.conf -------------------------------------------------------------------------------- /backend/templates/_certificates_stream.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/templates/_certificates_stream.conf -------------------------------------------------------------------------------- /backend/templates/_exploits.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/templates/_exploits.conf -------------------------------------------------------------------------------- /backend/templates/_forced_ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/templates/_forced_ssl.conf -------------------------------------------------------------------------------- /backend/templates/_header_comment.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/templates/_header_comment.conf -------------------------------------------------------------------------------- /backend/templates/_hsts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/templates/_hsts.conf -------------------------------------------------------------------------------- /backend/templates/_hsts_map.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/templates/_hsts_map.conf -------------------------------------------------------------------------------- /backend/templates/_listen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/templates/_listen.conf -------------------------------------------------------------------------------- /backend/templates/_location.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/templates/_location.conf -------------------------------------------------------------------------------- /backend/templates/dead_host.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/templates/dead_host.conf -------------------------------------------------------------------------------- /backend/templates/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/templates/default.conf -------------------------------------------------------------------------------- /backend/templates/ip_ranges.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/templates/ip_ranges.conf -------------------------------------------------------------------------------- /backend/templates/letsencrypt-request.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/templates/letsencrypt-request.conf -------------------------------------------------------------------------------- /backend/templates/local-policy-open-appsec-enabled-for-proxy-host.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/templates/local-policy-open-appsec-enabled-for-proxy-host.yaml -------------------------------------------------------------------------------- /backend/templates/openappsec.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/templates/openappsec.conf -------------------------------------------------------------------------------- /backend/templates/proxy_host.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/templates/proxy_host.conf -------------------------------------------------------------------------------- /backend/templates/redirection_host.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/templates/redirection_host.conf -------------------------------------------------------------------------------- /backend/templates/stream.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/templates/stream.conf -------------------------------------------------------------------------------- /backend/validate-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/validate-schema.js -------------------------------------------------------------------------------- /backend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/backend/yarn.lock -------------------------------------------------------------------------------- /deployment/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/deployment/docker-compose.yaml -------------------------------------------------------------------------------- /deployment/local_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/deployment/local_policy.yaml -------------------------------------------------------------------------------- /deployment/managed-from-npm-ui/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/deployment/managed-from-npm-ui/docker-compose.yaml -------------------------------------------------------------------------------- /deployment/managed-from-npm-ui/local_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/deployment/managed-from-npm-ui/local_policy.yaml -------------------------------------------------------------------------------- /deployment/managed-from-open-appsec-ui/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/deployment/managed-from-open-appsec-ui/docker-compose.yaml -------------------------------------------------------------------------------- /deployment/playground/managed-from-npm-ui/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/deployment/playground/managed-from-npm-ui/docker-compose.yaml -------------------------------------------------------------------------------- /deployment/playground/managed-from-npm-ui/local_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/deployment/playground/managed-from-npm-ui/local_policy.yaml -------------------------------------------------------------------------------- /deployment/playground/managed-from-open-appsec-web-ui/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/deployment/playground/managed-from-open-appsec-web-ui/docker-compose.yaml -------------------------------------------------------------------------------- /docker/.dive-ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/.dive-ci -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Dockerfile.central-mgmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/Dockerfile.central-mgmt -------------------------------------------------------------------------------- /docker/ci.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/ci.env -------------------------------------------------------------------------------- /docker/ci/postgres/authentik.sql.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/ci/postgres/authentik.sql.gz -------------------------------------------------------------------------------- /docker/dev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/dev/Dockerfile -------------------------------------------------------------------------------- /docker/dev/dnsrouter-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/dev/dnsrouter-config.json -------------------------------------------------------------------------------- /docker/dev/letsencrypt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/dev/letsencrypt.ini -------------------------------------------------------------------------------- /docker/dev/pdns-db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/dev/pdns-db.sql -------------------------------------------------------------------------------- /docker/dev/pebble-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/dev/pebble-config.json -------------------------------------------------------------------------------- /docker/dev/squid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/dev/squid.conf -------------------------------------------------------------------------------- /docker/docker-compose.ci.mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/docker-compose.ci.mysql.yml -------------------------------------------------------------------------------- /docker/docker-compose.ci.postgres.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/docker-compose.ci.postgres.yml -------------------------------------------------------------------------------- /docker/docker-compose.ci.sqlite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/docker-compose.ci.sqlite.yml -------------------------------------------------------------------------------- /docker/docker-compose.ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/docker-compose.ci.yml -------------------------------------------------------------------------------- /docker/docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/docker-compose.dev.yml -------------------------------------------------------------------------------- /docker/lib/libngx_module.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/lib/libngx_module.so -------------------------------------------------------------------------------- /docker/lib/libosrc_compression_utils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/lib/libosrc_compression_utils.so -------------------------------------------------------------------------------- /docker/lib/libosrc_nginx_attachment_util.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/lib/libosrc_nginx_attachment_util.so -------------------------------------------------------------------------------- /docker/lib/libosrc_shmem_ipc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/lib/libosrc_shmem_ipc.so -------------------------------------------------------------------------------- /docker/rootfs/etc/letsencrypt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/letsencrypt.ini -------------------------------------------------------------------------------- /docker/rootfs/etc/logrotate.d/nginx-proxy-manager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/logrotate.d/nginx-proxy-manager -------------------------------------------------------------------------------- /docker/rootfs/etc/nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /docker/rootfs/etc/nginx/conf.d/dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/nginx/conf.d/dev.conf -------------------------------------------------------------------------------- /docker/rootfs/etc/nginx/conf.d/include/.gitignore: -------------------------------------------------------------------------------- 1 | resolvers.conf 2 | -------------------------------------------------------------------------------- /docker/rootfs/etc/nginx/conf.d/include/assets.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/nginx/conf.d/include/assets.conf -------------------------------------------------------------------------------- /docker/rootfs/etc/nginx/conf.d/include/block-exploits.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/nginx/conf.d/include/block-exploits.conf -------------------------------------------------------------------------------- /docker/rootfs/etc/nginx/conf.d/include/force-ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/nginx/conf.d/include/force-ssl.conf -------------------------------------------------------------------------------- /docker/rootfs/etc/nginx/conf.d/include/ip_ranges.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/nginx/conf.d/include/ip_ranges.conf -------------------------------------------------------------------------------- /docker/rootfs/etc/nginx/conf.d/include/letsencrypt-acme-challenge.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/nginx/conf.d/include/letsencrypt-acme-challenge.conf -------------------------------------------------------------------------------- /docker/rootfs/etc/nginx/conf.d/include/log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/nginx/conf.d/include/log.conf -------------------------------------------------------------------------------- /docker/rootfs/etc/nginx/conf.d/include/proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/nginx/conf.d/include/proxy.conf -------------------------------------------------------------------------------- /docker/rootfs/etc/nginx/conf.d/include/ssl-cache-stream.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/nginx/conf.d/include/ssl-cache-stream.conf -------------------------------------------------------------------------------- /docker/rootfs/etc/nginx/conf.d/include/ssl-cache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/nginx/conf.d/include/ssl-cache.conf -------------------------------------------------------------------------------- /docker/rootfs/etc/nginx/conf.d/include/ssl-ciphers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/nginx/conf.d/include/ssl-ciphers.conf -------------------------------------------------------------------------------- /docker/rootfs/etc/nginx/conf.d/production.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/nginx/conf.d/production.conf -------------------------------------------------------------------------------- /docker/rootfs/etc/nginx/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/nginx/mime.types -------------------------------------------------------------------------------- /docker/rootfs/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/backend/dependencies.d/prepare: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/backend/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/s6-overlay/s6-rc.d/backend/run -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/backend/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/frontend/dependencies.d/prepare: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/frontend/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/s6-overlay/s6-rc.d/frontend/run -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/frontend/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/nginx/dependencies.d/prepare: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/nginx/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/s6-overlay/s6-rc.d/nginx/run -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/nginx/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/prepare/00-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/s6-overlay/s6-rc.d/prepare/00-all.sh -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/prepare/10-usergroup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/s6-overlay/s6-rc.d/prepare/10-usergroup.sh -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/prepare/20-paths.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/s6-overlay/s6-rc.d/prepare/20-paths.sh -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/prepare/30-ownership.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/s6-overlay/s6-rc.d/prepare/30-ownership.sh -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/prepare/40-dynamic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/s6-overlay/s6-rc.d/prepare/40-dynamic.sh -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/prepare/50-ipv6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/s6-overlay/s6-rc.d/prepare/50-ipv6.sh -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/prepare/60-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/s6-overlay/s6-rc.d/prepare/60-secrets.sh -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/prepare/90-banner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/s6-overlay/s6-rc.d/prepare/90-banner.sh -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/prepare/dependencies.d/base: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/prepare/type: -------------------------------------------------------------------------------- 1 | oneshot 2 | -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/prepare/up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/etc/s6-overlay/s6-rc.d/prepare/up -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/user/contents.d/backend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/user/contents.d/frontend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/user/contents.d/nginx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/rootfs/etc/s6-overlay/s6-rc.d/user/contents.d/prepare: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/rootfs/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/root/.bashrc -------------------------------------------------------------------------------- /docker/rootfs/usr/bin/check-health: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/usr/bin/check-health -------------------------------------------------------------------------------- /docker/rootfs/usr/bin/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/usr/bin/common.sh -------------------------------------------------------------------------------- /docker/rootfs/var/www/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/rootfs/var/www/html/index.html -------------------------------------------------------------------------------- /docker/scripts/install-s6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docker/scripts/install-s6 -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/.vitepress/theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/.vitepress/theme/custom.css -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/src/advanced-config/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/advanced-config/index.md -------------------------------------------------------------------------------- /docs/src/faq/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/faq/index.md -------------------------------------------------------------------------------- /docs/src/guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/guide/index.md -------------------------------------------------------------------------------- /docs/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/index.md -------------------------------------------------------------------------------- /docs/src/public/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/public/github.png -------------------------------------------------------------------------------- /docs/src/public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/public/icon.png -------------------------------------------------------------------------------- /docs/src/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/public/logo.svg -------------------------------------------------------------------------------- /docs/src/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /docs/src/public/screenshots/access-lists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/public/screenshots/access-lists.png -------------------------------------------------------------------------------- /docs/src/public/screenshots/audit-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/public/screenshots/audit-log.png -------------------------------------------------------------------------------- /docs/src/public/screenshots/certificates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/public/screenshots/certificates.png -------------------------------------------------------------------------------- /docs/src/public/screenshots/custom-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/public/screenshots/custom-settings.png -------------------------------------------------------------------------------- /docs/src/public/screenshots/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/public/screenshots/dashboard.png -------------------------------------------------------------------------------- /docs/src/public/screenshots/dead-hosts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/public/screenshots/dead-hosts.png -------------------------------------------------------------------------------- /docs/src/public/screenshots/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/public/screenshots/login.png -------------------------------------------------------------------------------- /docs/src/public/screenshots/permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/public/screenshots/permissions.png -------------------------------------------------------------------------------- /docs/src/public/screenshots/proxy-hosts-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/public/screenshots/proxy-hosts-add.png -------------------------------------------------------------------------------- /docs/src/public/screenshots/proxy-hosts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/public/screenshots/proxy-hosts.png -------------------------------------------------------------------------------- /docs/src/public/screenshots/redirection-hosts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/public/screenshots/redirection-hosts.png -------------------------------------------------------------------------------- /docs/src/screenshots/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/screenshots/index.md -------------------------------------------------------------------------------- /docs/src/setup/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/setup/index.md -------------------------------------------------------------------------------- /docs/src/third-party/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/third-party/index.md -------------------------------------------------------------------------------- /docs/src/upgrading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/src/upgrading/index.md -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /frontend/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/.babelrc -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | webpack_stats.html 4 | yarn-error.log 5 | -------------------------------------------------------------------------------- /frontend/app-images/default-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/app-images/default-avatar.jpg -------------------------------------------------------------------------------- /frontend/app-images/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/app-images/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /frontend/app-images/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/app-images/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /frontend/app-images/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/app-images/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /frontend/app-images/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/app-images/favicons/browserconfig.xml -------------------------------------------------------------------------------- /frontend/app-images/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/app-images/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /frontend/app-images/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/app-images/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /frontend/app-images/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/app-images/favicons/favicon.ico -------------------------------------------------------------------------------- /frontend/app-images/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/app-images/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /frontend/app-images/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/app-images/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /frontend/app-images/favicons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/app-images/favicons/site.webmanifest -------------------------------------------------------------------------------- /frontend/app-images/logo-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/app-images/logo-256.png -------------------------------------------------------------------------------- /frontend/app-images/logo-text-vertical-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/app-images/logo-text-vertical-grey.png -------------------------------------------------------------------------------- /frontend/app-images/open-appsec-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/app-images/open-appsec-logo.svg -------------------------------------------------------------------------------- /frontend/fonts/feather: -------------------------------------------------------------------------------- 1 | ../node_modules/tabler-ui/dist/assets/fonts/feather -------------------------------------------------------------------------------- /frontend/fonts/source-sans-pro/source-sans-pro-v14-latin-ext_latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/fonts/source-sans-pro/source-sans-pro-v14-latin-ext_latin-700.woff -------------------------------------------------------------------------------- /frontend/fonts/source-sans-pro/source-sans-pro-v14-latin-ext_latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/fonts/source-sans-pro/source-sans-pro-v14-latin-ext_latin-700.woff2 -------------------------------------------------------------------------------- /frontend/fonts/source-sans-pro/source-sans-pro-v14-latin-ext_latin-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/fonts/source-sans-pro/source-sans-pro-v14-latin-ext_latin-700italic.woff -------------------------------------------------------------------------------- /frontend/fonts/source-sans-pro/source-sans-pro-v14-latin-ext_latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/fonts/source-sans-pro/source-sans-pro-v14-latin-ext_latin-700italic.woff2 -------------------------------------------------------------------------------- /frontend/fonts/source-sans-pro/source-sans-pro-v14-latin-ext_latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/fonts/source-sans-pro/source-sans-pro-v14-latin-ext_latin-italic.woff -------------------------------------------------------------------------------- /frontend/fonts/source-sans-pro/source-sans-pro-v14-latin-ext_latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/fonts/source-sans-pro/source-sans-pro-v14-latin-ext_latin-italic.woff2 -------------------------------------------------------------------------------- /frontend/fonts/source-sans-pro/source-sans-pro-v14-latin-ext_latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/fonts/source-sans-pro/source-sans-pro-v14-latin-ext_latin-regular.woff -------------------------------------------------------------------------------- /frontend/fonts/source-sans-pro/source-sans-pro-v14-latin-ext_latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/fonts/source-sans-pro/source-sans-pro-v14-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /frontend/html/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/html/index.ejs -------------------------------------------------------------------------------- /frontend/html/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/html/login.ejs -------------------------------------------------------------------------------- /frontend/html/partials/footer.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /frontend/html/partials/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/html/partials/header.ejs -------------------------------------------------------------------------------- /frontend/images: -------------------------------------------------------------------------------- 1 | ./node_modules/tabler-ui/dist/assets/images -------------------------------------------------------------------------------- /frontend/js/app/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/api.js -------------------------------------------------------------------------------- /frontend/js/app/audit-log/list/item.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/audit-log/list/item.ejs -------------------------------------------------------------------------------- /frontend/js/app/audit-log/list/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/audit-log/list/item.js -------------------------------------------------------------------------------- /frontend/js/app/audit-log/list/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/audit-log/list/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/audit-log/list/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/audit-log/list/main.js -------------------------------------------------------------------------------- /frontend/js/app/audit-log/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/audit-log/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/audit-log/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/audit-log/main.js -------------------------------------------------------------------------------- /frontend/js/app/audit-log/meta.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/audit-log/meta.ejs -------------------------------------------------------------------------------- /frontend/js/app/audit-log/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/audit-log/meta.js -------------------------------------------------------------------------------- /frontend/js/app/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/cache.js -------------------------------------------------------------------------------- /frontend/js/app/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/controller.js -------------------------------------------------------------------------------- /frontend/js/app/dashboard/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/dashboard/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/dashboard/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/dashboard/main.js -------------------------------------------------------------------------------- /frontend/js/app/empty/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/empty/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/empty/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/empty/main.js -------------------------------------------------------------------------------- /frontend/js/app/error/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/error/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/error/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/error/main.js -------------------------------------------------------------------------------- /frontend/js/app/help/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/help/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/help/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/help/main.js -------------------------------------------------------------------------------- /frontend/js/app/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/i18n.js -------------------------------------------------------------------------------- /frontend/js/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/main.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/access/delete.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/access/delete.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/access/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/access/delete.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/access/form.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/access/form.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/access/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/access/form.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/access/form/client.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/access/form/client.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/access/form/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/access/form/client.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/access/form/item.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/access/form/item.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/access/form/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/access/form/item.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/access/list/item.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/access/list/item.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/access/list/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/access/list/item.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/access/list/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/access/list/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/access/list/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/access/list/main.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/access/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/access/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/access/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/access/main.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/certificates-list-item.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/certificates-list-item.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/certificates/delete.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/certificates/delete.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/certificates/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/certificates/delete.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/certificates/form.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/certificates/form.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/certificates/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/certificates/form.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/certificates/list/item.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/certificates/list/item.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/certificates/list/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/certificates/list/item.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/certificates/list/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/certificates/list/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/certificates/list/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/certificates/list/main.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/certificates/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/certificates/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/certificates/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/certificates/main.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/certificates/renew.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/certificates/renew.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/certificates/renew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/certificates/renew.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/certificates/test.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/certificates/test.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/certificates/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/certificates/test.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/dead/delete.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/dead/delete.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/dead/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/dead/delete.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/dead/form.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/dead/form.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/dead/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/dead/form.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/dead/list/item.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/dead/list/item.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/dead/list/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/dead/list/item.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/dead/list/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/dead/list/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/dead/list/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/dead/list/main.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/dead/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/dead/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/dead/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/dead/main.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/proxy/access-list-item.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/proxy/access-list-item.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/proxy/delete.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/proxy/delete.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/proxy/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/proxy/delete.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/proxy/form.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/proxy/form.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/proxy/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/proxy/form.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/proxy/list/item.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/proxy/list/item.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/proxy/list/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/proxy/list/item.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/proxy/list/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/proxy/list/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/proxy/list/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/proxy/list/main.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/proxy/location-item.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/proxy/location-item.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/proxy/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/proxy/location.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/proxy/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/proxy/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/proxy/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/proxy/main.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/redirection/delete.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/redirection/delete.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/redirection/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/redirection/delete.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/redirection/form.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/redirection/form.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/redirection/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/redirection/form.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/redirection/list/item.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/redirection/list/item.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/redirection/list/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/redirection/list/item.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/redirection/list/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/redirection/list/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/redirection/list/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/redirection/list/main.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/redirection/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/redirection/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/redirection/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/redirection/main.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/stream/delete.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/stream/delete.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/stream/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/stream/delete.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/stream/form.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/stream/form.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/stream/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/stream/form.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/stream/list/item.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/stream/list/item.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/stream/list/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/stream/list/item.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/stream/list/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/stream/list/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/stream/list/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/stream/list/main.js -------------------------------------------------------------------------------- /frontend/js/app/nginx/stream/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/stream/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/nginx/stream/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/nginx/stream/main.js -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/list-all/item.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/list-all/item.ejs -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/list-all/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/list-all/item.js -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/list-all/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/list-all/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/list-all/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/list-all/main.js -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/list-important/item.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/list-important/item.ejs -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/list-important/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/list-important/item.js -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/list-important/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/list-important/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/list-important/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/list-important/main.js -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/list-notifications/item.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/list-notifications/item.ejs -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/list-notifications/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/list-notifications/item.js -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/list-notifications/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/list-notifications/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/list-notifications/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/list-notifications/main.js -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/list/item.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/list/item.ejs -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/list/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/list/item.js -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/list/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/list/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/list/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/list/main.js -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/main.js -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/meta.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/meta.ejs -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/meta.js -------------------------------------------------------------------------------- /frontend/js/app/openappsec-log/pagination.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/openappsec-log/pagination.ejs -------------------------------------------------------------------------------- /frontend/js/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/router.js -------------------------------------------------------------------------------- /frontend/js/app/settings/default-site/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/settings/default-site/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/settings/default-site/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/settings/default-site/main.js -------------------------------------------------------------------------------- /frontend/js/app/settings/list/item.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/settings/list/item.ejs -------------------------------------------------------------------------------- /frontend/js/app/settings/list/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/settings/list/item.js -------------------------------------------------------------------------------- /frontend/js/app/settings/list/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/settings/list/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/settings/list/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/settings/list/main.js -------------------------------------------------------------------------------- /frontend/js/app/settings/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/settings/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/settings/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/settings/main.js -------------------------------------------------------------------------------- /frontend/js/app/tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/tokens.js -------------------------------------------------------------------------------- /frontend/js/app/ui/footer/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/ui/footer/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/ui/footer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/ui/footer/main.js -------------------------------------------------------------------------------- /frontend/js/app/ui/header/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/ui/header/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/ui/header/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/ui/header/main.js -------------------------------------------------------------------------------- /frontend/js/app/ui/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/ui/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/ui/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/ui/main.js -------------------------------------------------------------------------------- /frontend/js/app/ui/menu/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/ui/menu/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/ui/menu/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/ui/menu/main.js -------------------------------------------------------------------------------- /frontend/js/app/user/delete.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/user/delete.ejs -------------------------------------------------------------------------------- /frontend/js/app/user/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/user/delete.js -------------------------------------------------------------------------------- /frontend/js/app/user/form.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/user/form.ejs -------------------------------------------------------------------------------- /frontend/js/app/user/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/user/form.js -------------------------------------------------------------------------------- /frontend/js/app/user/password.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/user/password.ejs -------------------------------------------------------------------------------- /frontend/js/app/user/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/user/password.js -------------------------------------------------------------------------------- /frontend/js/app/user/permissions.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/user/permissions.ejs -------------------------------------------------------------------------------- /frontend/js/app/user/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/user/permissions.js -------------------------------------------------------------------------------- /frontend/js/app/users/list/item.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/users/list/item.ejs -------------------------------------------------------------------------------- /frontend/js/app/users/list/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/users/list/item.js -------------------------------------------------------------------------------- /frontend/js/app/users/list/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/users/list/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/users/list/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/users/list/main.js -------------------------------------------------------------------------------- /frontend/js/app/users/main.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/users/main.ejs -------------------------------------------------------------------------------- /frontend/js/app/users/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/app/users/main.js -------------------------------------------------------------------------------- /frontend/js/i18n/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/i18n/messages.json -------------------------------------------------------------------------------- /frontend/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/index.js -------------------------------------------------------------------------------- /frontend/js/lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/lib/helpers.js -------------------------------------------------------------------------------- /frontend/js/lib/marionette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/lib/marionette.js -------------------------------------------------------------------------------- /frontend/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/login.js -------------------------------------------------------------------------------- /frontend/js/login/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/login/main.js -------------------------------------------------------------------------------- /frontend/js/login/ui/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/login/ui/login.ejs -------------------------------------------------------------------------------- /frontend/js/login/ui/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/login/ui/login.js -------------------------------------------------------------------------------- /frontend/js/models/access-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/models/access-list.js -------------------------------------------------------------------------------- /frontend/js/models/audit-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/models/audit-log.js -------------------------------------------------------------------------------- /frontend/js/models/certificate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/models/certificate.js -------------------------------------------------------------------------------- /frontend/js/models/dead-host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/models/dead-host.js -------------------------------------------------------------------------------- /frontend/js/models/openappsec-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/models/openappsec-log.js -------------------------------------------------------------------------------- /frontend/js/models/proxy-host-location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/models/proxy-host-location.js -------------------------------------------------------------------------------- /frontend/js/models/proxy-host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/models/proxy-host.js -------------------------------------------------------------------------------- /frontend/js/models/redirection-host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/models/redirection-host.js -------------------------------------------------------------------------------- /frontend/js/models/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/models/setting.js -------------------------------------------------------------------------------- /frontend/js/models/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/models/stream.js -------------------------------------------------------------------------------- /frontend/js/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/js/models/user.js -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/scss/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/scss/custom.scss -------------------------------------------------------------------------------- /frontend/scss/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/scss/fonts.scss -------------------------------------------------------------------------------- /frontend/scss/selectize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/scss/selectize.scss -------------------------------------------------------------------------------- /frontend/scss/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/scss/styles.scss -------------------------------------------------------------------------------- /frontend/scss/tabler-extra.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/scss/tabler-extra.scss -------------------------------------------------------------------------------- /frontend/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/webpack.config.js -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/frontend/yarn.lock -------------------------------------------------------------------------------- /global/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/global/README.md -------------------------------------------------------------------------------- /global/certbot-dns-plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/global/certbot-dns-plugins.json -------------------------------------------------------------------------------- /scripts/.common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/scripts/.common.sh -------------------------------------------------------------------------------- /scripts/buildx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/scripts/buildx -------------------------------------------------------------------------------- /scripts/ci/frontend-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/scripts/ci/frontend-build -------------------------------------------------------------------------------- /scripts/ci/fulltest-cypress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/scripts/ci/fulltest-cypress -------------------------------------------------------------------------------- /scripts/ci/test-and-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/scripts/ci/test-and-build -------------------------------------------------------------------------------- /scripts/cypress-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/scripts/cypress-dev -------------------------------------------------------------------------------- /scripts/destroy-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/scripts/destroy-dev -------------------------------------------------------------------------------- /scripts/docs-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/scripts/docs-build -------------------------------------------------------------------------------- /scripts/docs-upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/scripts/docs-upload -------------------------------------------------------------------------------- /scripts/start-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/scripts/start-dev -------------------------------------------------------------------------------- /scripts/stop-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/scripts/stop-dev -------------------------------------------------------------------------------- /scripts/wait-healthy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/scripts/wait-healthy -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/.prettierrc -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/README.md -------------------------------------------------------------------------------- /test/cypress/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/cypress/Dockerfile -------------------------------------------------------------------------------- /test/cypress/config/ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/cypress/config/ci.js -------------------------------------------------------------------------------- /test/cypress/e2e/api/Certificates.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/cypress/e2e/api/Certificates.cy.js -------------------------------------------------------------------------------- /test/cypress/e2e/api/FullCertProvision.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/cypress/e2e/api/FullCertProvision.cy.js -------------------------------------------------------------------------------- /test/cypress/e2e/api/Health.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/cypress/e2e/api/Health.cy.js -------------------------------------------------------------------------------- /test/cypress/e2e/api/Ldap.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/cypress/e2e/api/Ldap.cy.js -------------------------------------------------------------------------------- /test/cypress/e2e/api/OAuth.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/cypress/e2e/api/OAuth.cy.js -------------------------------------------------------------------------------- /test/cypress/e2e/api/ProxyHosts.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/cypress/e2e/api/ProxyHosts.cy.js -------------------------------------------------------------------------------- /test/cypress/e2e/api/Settings.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/cypress/e2e/api/Settings.cy.js -------------------------------------------------------------------------------- /test/cypress/e2e/api/Streams.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/cypress/e2e/api/Streams.cy.js -------------------------------------------------------------------------------- /test/cypress/e2e/api/Users.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/cypress/e2e/api/Users.cy.js -------------------------------------------------------------------------------- /test/cypress/fixtures/test.example.com-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/cypress/fixtures/test.example.com-key.pem -------------------------------------------------------------------------------- /test/cypress/fixtures/test.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/cypress/fixtures/test.example.com.pem -------------------------------------------------------------------------------- /test/cypress/plugins/backendApi/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/cypress/plugins/backendApi/client.js -------------------------------------------------------------------------------- /test/cypress/plugins/backendApi/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/cypress/plugins/backendApi/logger.js -------------------------------------------------------------------------------- /test/cypress/plugins/backendApi/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/cypress/plugins/backendApi/task.js -------------------------------------------------------------------------------- /test/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/cypress/plugins/index.js -------------------------------------------------------------------------------- /test/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/cypress/support/commands.js -------------------------------------------------------------------------------- /test/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/cypress/support/e2e.js -------------------------------------------------------------------------------- /test/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/jsconfig.json -------------------------------------------------------------------------------- /test/multi-reporter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/multi-reporter.json -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/package.json -------------------------------------------------------------------------------- /test/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openappsec/open-appsec-npm/HEAD/test/yarn.lock --------------------------------------------------------------------------------