├── .gitignore ├── LICENSE ├── README.md ├── apps ├── adapter │ ├── README.md │ └── main.go ├── dnsrecon │ └── Dockerfile ├── fn-crtsh │ ├── README.md │ ├── app.js │ ├── ingress.yml │ └── package.json ├── fn-reporting │ ├── README.md │ ├── app.js │ └── package.json ├── fn-sep │ ├── README.md │ ├── app.js │ └── package.json ├── fn-uep │ ├── README.md │ ├── app.js │ └── package.json ├── nmap-workflow │ ├── Dockerfile │ └── README.md ├── report-generator │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── handler.sh │ ├── site-legacy │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .prettierrc │ │ ├── LICENSE │ │ ├── README.md │ │ ├── docs │ │ │ ├── another-page │ │ │ │ └── index.html │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ └── styles.css │ │ │ │ └── images │ │ │ │ │ ├── branching.png │ │ │ │ │ └── octocat.png │ │ │ ├── ejs-page │ │ │ │ └── index.html │ │ │ ├── html-page │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── scripts │ │ │ └── build.js │ │ ├── site.config.js │ │ └── src │ │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── bulma_apsc.css │ │ │ │ ├── font-awesome5-all.js │ │ │ │ └── styles.css │ │ │ └── images │ │ │ │ ├── branching.png │ │ │ │ ├── octocat.png │ │ │ │ └── splat-logo-blue.png │ │ │ ├── layouts │ │ │ ├── default.ejs │ │ │ └── minimal.ejs │ │ │ ├── pages │ │ │ ├── another-page │ │ │ │ └── index.md │ │ │ ├── ejs-page │ │ │ │ └── index.ejs │ │ │ ├── hosts.ejs │ │ │ ├── html-page │ │ │ │ └── index.html │ │ │ ├── index.ejs │ │ │ ├── nmap.ejs │ │ │ └── zap.ejs │ │ │ └── partials │ │ │ ├── foot.ejs │ │ │ └── head.ejs │ └── site.tar.gz ├── report-trigger │ ├── README.md │ ├── app.js │ └── package.json ├── shell-tools │ ├── Dockerfile │ └── README.md └── zap-workflow │ ├── Dockerfile │ └── README.md ├── gitbook ├── README.md ├── SUMMARY.md ├── apps-setup │ ├── configure-minio-service.md │ ├── deploy-http-endpoints-discovery-workflow.md │ ├── deploy-kubeless-functions.md │ ├── deploy-nmap-workflow.md │ ├── deploy-reporting-workflow.md │ └── deploy-zap-workflow.md ├── cluster-setup │ ├── create-cluster-in-gke.md │ ├── install-cert-manager.md │ ├── install-helm-tiller.md │ ├── install-kubeless-with-nats-trigger.md │ ├── install-minio.md │ ├── install-nats.md │ └── install-nginx-ingress.md ├── execution │ ├── submit-reporting-request.md │ └── submit-scan-request.md ├── getting-started.md └── prerequisites.md ├── images └── splat-logo.png ├── infra ├── apps-ingress-tls │ └── nginx-ingress-tls.yaml ├── cert-manager │ └── clusterissuer.yaml ├── helm-rbac │ ├── README.md │ └── helm-rbac.yaml ├── http-endpoint-workflow │ └── http-endpoint-workflow.yaml ├── kubeless │ ├── kubeless-v1.0.2.yaml │ └── nats-v1.0.0-alpha.9.yaml ├── nmap-workflow │ └── nmap-workflow.yaml ├── report-generator │ └── report-generator.yaml └── zap-workflow │ └── zap-workflow.yaml └── presentation ├── Using-Docker-Kubernetes-for-Automating-AppSec-and-OSINT-Workflows-Presentation.pdf └── Using-Docker-Kubernetes-for-Automating-AppSec-and-OSINT-Workflows-Presentation.pptx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/README.md -------------------------------------------------------------------------------- /apps/adapter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/adapter/README.md -------------------------------------------------------------------------------- /apps/adapter/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/adapter/main.go -------------------------------------------------------------------------------- /apps/dnsrecon/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/dnsrecon/Dockerfile -------------------------------------------------------------------------------- /apps/fn-crtsh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/fn-crtsh/README.md -------------------------------------------------------------------------------- /apps/fn-crtsh/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/fn-crtsh/app.js -------------------------------------------------------------------------------- /apps/fn-crtsh/ingress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/fn-crtsh/ingress.yml -------------------------------------------------------------------------------- /apps/fn-crtsh/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/fn-crtsh/package.json -------------------------------------------------------------------------------- /apps/fn-reporting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/fn-reporting/README.md -------------------------------------------------------------------------------- /apps/fn-reporting/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/fn-reporting/app.js -------------------------------------------------------------------------------- /apps/fn-reporting/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/fn-reporting/package.json -------------------------------------------------------------------------------- /apps/fn-sep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/fn-sep/README.md -------------------------------------------------------------------------------- /apps/fn-sep/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/fn-sep/app.js -------------------------------------------------------------------------------- /apps/fn-sep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/fn-sep/package.json -------------------------------------------------------------------------------- /apps/fn-uep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/fn-uep/README.md -------------------------------------------------------------------------------- /apps/fn-uep/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/fn-uep/app.js -------------------------------------------------------------------------------- /apps/fn-uep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/fn-uep/package.json -------------------------------------------------------------------------------- /apps/nmap-workflow/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/nmap-workflow/Dockerfile -------------------------------------------------------------------------------- /apps/nmap-workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/nmap-workflow/README.md -------------------------------------------------------------------------------- /apps/report-generator/.dockerignore: -------------------------------------------------------------------------------- 1 | site-legacy 2 | -------------------------------------------------------------------------------- /apps/report-generator/.gitignore: -------------------------------------------------------------------------------- 1 | google-sa.json 2 | -------------------------------------------------------------------------------- /apps/report-generator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/Dockerfile -------------------------------------------------------------------------------- /apps/report-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/README.md -------------------------------------------------------------------------------- /apps/report-generator/handler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/handler.sh -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/.editorconfig -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vscode 3 | .DS_Store 4 | node_modules 5 | public 6 | -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/.prettierrc: -------------------------------------------------------------------------------- 1 | singleQuote: true -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/LICENSE -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/README.md -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/docs/another-page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/docs/another-page/index.html -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/docs/assets/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/docs/assets/css/styles.css -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/docs/assets/images/branching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/docs/assets/images/branching.png -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/docs/assets/images/octocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/docs/assets/images/octocat.png -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/docs/ejs-page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/docs/ejs-page/index.html -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/docs/html-page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/docs/html-page/index.html -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/docs/index.html -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/package-lock.json -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/package.json -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/scripts/build.js -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/site.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/site.config.js -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/src/assets/css/bulma_apsc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/src/assets/css/bulma_apsc.css -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/src/assets/css/font-awesome5-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/src/assets/css/font-awesome5-all.js -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/src/assets/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/src/assets/css/styles.css -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/src/assets/images/branching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/src/assets/images/branching.png -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/src/assets/images/octocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/src/assets/images/octocat.png -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/src/assets/images/splat-logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/src/assets/images/splat-logo-blue.png -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/src/layouts/default.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/src/layouts/default.ejs -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/src/layouts/minimal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/src/layouts/minimal.ejs -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/src/pages/another-page/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/src/pages/another-page/index.md -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/src/pages/ejs-page/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/src/pages/ejs-page/index.ejs -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/src/pages/hosts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/src/pages/hosts.ejs -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/src/pages/html-page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/src/pages/html-page/index.html -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/src/pages/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/src/pages/index.ejs -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/src/pages/nmap.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/src/pages/nmap.ejs -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/src/pages/zap.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/src/pages/zap.ejs -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/src/partials/foot.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/src/partials/foot.ejs -------------------------------------------------------------------------------- /apps/report-generator/site-legacy/src/partials/head.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site-legacy/src/partials/head.ejs -------------------------------------------------------------------------------- /apps/report-generator/site.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-generator/site.tar.gz -------------------------------------------------------------------------------- /apps/report-trigger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-trigger/README.md -------------------------------------------------------------------------------- /apps/report-trigger/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-trigger/app.js -------------------------------------------------------------------------------- /apps/report-trigger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/report-trigger/package.json -------------------------------------------------------------------------------- /apps/shell-tools/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/shell-tools/Dockerfile -------------------------------------------------------------------------------- /apps/shell-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/shell-tools/README.md -------------------------------------------------------------------------------- /apps/zap-workflow/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/zap-workflow/Dockerfile -------------------------------------------------------------------------------- /apps/zap-workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/apps/zap-workflow/README.md -------------------------------------------------------------------------------- /gitbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/gitbook/README.md -------------------------------------------------------------------------------- /gitbook/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/gitbook/SUMMARY.md -------------------------------------------------------------------------------- /gitbook/apps-setup/configure-minio-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/gitbook/apps-setup/configure-minio-service.md -------------------------------------------------------------------------------- /gitbook/apps-setup/deploy-http-endpoints-discovery-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/gitbook/apps-setup/deploy-http-endpoints-discovery-workflow.md -------------------------------------------------------------------------------- /gitbook/apps-setup/deploy-kubeless-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/gitbook/apps-setup/deploy-kubeless-functions.md -------------------------------------------------------------------------------- /gitbook/apps-setup/deploy-nmap-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/gitbook/apps-setup/deploy-nmap-workflow.md -------------------------------------------------------------------------------- /gitbook/apps-setup/deploy-reporting-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/gitbook/apps-setup/deploy-reporting-workflow.md -------------------------------------------------------------------------------- /gitbook/apps-setup/deploy-zap-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/gitbook/apps-setup/deploy-zap-workflow.md -------------------------------------------------------------------------------- /gitbook/cluster-setup/create-cluster-in-gke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/gitbook/cluster-setup/create-cluster-in-gke.md -------------------------------------------------------------------------------- /gitbook/cluster-setup/install-cert-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/gitbook/cluster-setup/install-cert-manager.md -------------------------------------------------------------------------------- /gitbook/cluster-setup/install-helm-tiller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/gitbook/cluster-setup/install-helm-tiller.md -------------------------------------------------------------------------------- /gitbook/cluster-setup/install-kubeless-with-nats-trigger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/gitbook/cluster-setup/install-kubeless-with-nats-trigger.md -------------------------------------------------------------------------------- /gitbook/cluster-setup/install-minio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/gitbook/cluster-setup/install-minio.md -------------------------------------------------------------------------------- /gitbook/cluster-setup/install-nats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/gitbook/cluster-setup/install-nats.md -------------------------------------------------------------------------------- /gitbook/cluster-setup/install-nginx-ingress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/gitbook/cluster-setup/install-nginx-ingress.md -------------------------------------------------------------------------------- /gitbook/execution/submit-reporting-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/gitbook/execution/submit-reporting-request.md -------------------------------------------------------------------------------- /gitbook/execution/submit-scan-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/gitbook/execution/submit-scan-request.md -------------------------------------------------------------------------------- /gitbook/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/gitbook/getting-started.md -------------------------------------------------------------------------------- /gitbook/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/gitbook/prerequisites.md -------------------------------------------------------------------------------- /images/splat-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/images/splat-logo.png -------------------------------------------------------------------------------- /infra/apps-ingress-tls/nginx-ingress-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/infra/apps-ingress-tls/nginx-ingress-tls.yaml -------------------------------------------------------------------------------- /infra/cert-manager/clusterissuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/infra/cert-manager/clusterissuer.yaml -------------------------------------------------------------------------------- /infra/helm-rbac/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/helm-rbac/helm-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/infra/helm-rbac/helm-rbac.yaml -------------------------------------------------------------------------------- /infra/http-endpoint-workflow/http-endpoint-workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/infra/http-endpoint-workflow/http-endpoint-workflow.yaml -------------------------------------------------------------------------------- /infra/kubeless/kubeless-v1.0.2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/infra/kubeless/kubeless-v1.0.2.yaml -------------------------------------------------------------------------------- /infra/kubeless/nats-v1.0.0-alpha.9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/infra/kubeless/nats-v1.0.0-alpha.9.yaml -------------------------------------------------------------------------------- /infra/nmap-workflow/nmap-workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/infra/nmap-workflow/nmap-workflow.yaml -------------------------------------------------------------------------------- /infra/report-generator/report-generator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/infra/report-generator/report-generator.yaml -------------------------------------------------------------------------------- /infra/zap-workflow/zap-workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/infra/zap-workflow/zap-workflow.yaml -------------------------------------------------------------------------------- /presentation/Using-Docker-Kubernetes-for-Automating-AppSec-and-OSINT-Workflows-Presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/presentation/Using-Docker-Kubernetes-for-Automating-AppSec-and-OSINT-Workflows-Presentation.pdf -------------------------------------------------------------------------------- /presentation/Using-Docker-Kubernetes-for-Automating-AppSec-and-OSINT-Workflows-Presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appsecco/using-docker-kubernetes-for-automating-appsec-and-osint-workflows/HEAD/presentation/Using-Docker-Kubernetes-for-Automating-AppSec-and-OSINT-Workflows-Presentation.pptx --------------------------------------------------------------------------------