gitextract_kcmoh57o/ ├── .devcontainer/ │ ├── Dockerfile │ ├── base.Dockerfile │ ├── devcontainer.json │ └── post-create.sh ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ └── feature_request.md │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ ├── deploy.yml │ ├── publish-gem.yml │ └── update_jekyll-anchor-heading.yml ├── .gitignore ├── .prettierignore ├── .vscode/ │ └── tasks.json ├── 404.html ├── CNAME ├── Dockerfile ├── Gemfile ├── README.md ├── Rakefile ├── _config.yml ├── _includes/ │ ├── components/ │ │ ├── aux_nav.html │ │ ├── breadcrumbs.html │ │ ├── children_nav.html │ │ ├── footer.html │ │ ├── header.html │ │ ├── mermaid.html │ │ ├── search_footer.html │ │ ├── search_header.html │ │ └── sidebar.html │ ├── css/ │ │ ├── callouts.scss.liquid │ │ ├── custom.scss.liquid │ │ └── just-the-docs.scss.liquid │ ├── fix_linenos.html │ ├── footer_custom.html │ ├── head.html │ ├── head_custom.html │ ├── header_custom.html │ ├── icons/ │ │ ├── code_copy.html │ │ ├── document.html │ │ ├── expand.html │ │ ├── external_link.html │ │ ├── icons.html │ │ ├── link.html │ │ ├── menu.html │ │ └── search.html │ ├── js/ │ │ └── custom.js │ ├── lunr/ │ │ ├── custom-data.json │ │ └── custom-index.js │ ├── mermaid_config.js │ ├── nav.html │ ├── nav_footer_custom.html │ ├── search_placeholder_custom.html │ ├── title.html │ ├── toc_heading_custom.html │ └── vendor/ │ └── anchor_headings.html ├── _layouts/ │ ├── about.html │ ├── default.html │ ├── home.html │ ├── minimal.html │ ├── page.html │ ├── post.html │ ├── table_wrappers.html │ └── vendor/ │ └── compress.html ├── _sass/ │ ├── base.scss │ ├── buttons.scss │ ├── code.scss │ ├── color_schemes/ │ │ ├── dark.scss │ │ ├── legacy_light.scss │ │ └── light.scss │ ├── content.scss │ ├── custom/ │ │ ├── custom.scss │ │ └── setup.scss │ ├── labels.scss │ ├── layout.scss │ ├── modules.scss │ ├── navigation.scss │ ├── print.scss │ ├── search.scss │ ├── skiptomain.scss │ ├── support/ │ │ ├── _functions.scss │ │ ├── _variables.scss │ │ ├── mixins/ │ │ │ ├── _buttons.scss │ │ │ ├── _layout.scss │ │ │ ├── _typography.scss │ │ │ └── mixins.scss │ │ └── support.scss │ ├── tables.scss │ ├── typography.scss │ ├── utilities/ │ │ ├── _colors.scss │ │ ├── _layout.scss │ │ ├── _lists.scss │ │ ├── _spacing.scss │ │ ├── _typography.scss │ │ └── utilities.scss │ └── vendor/ │ ├── OneDarkJekyll/ │ │ ├── LICENSE │ │ └── syntax.scss │ ├── OneLightJekyll/ │ │ ├── LICENSE │ │ └── syntax.scss │ └── normalize.scss/ │ ├── README.md │ └── normalize.scss ├── ads.txt ├── assets/ │ ├── css/ │ │ ├── just-the-docs-dark.scss │ │ ├── just-the-docs-default.scss │ │ └── just-the-docs-light.scss │ ├── images/ │ │ ├── arti.drawio.xml │ │ ├── change.drawio.xml │ │ ├── cicd-initial.drawio.xml │ │ ├── cred-key.drawio.xml │ │ ├── cred-serv.drawio.xml │ │ ├── crypto.drawio.xml │ │ ├── dependency.drawio.xml │ │ ├── depi.drawio.xml │ │ ├── dos.drawio.xml │ │ ├── endpoint.drawio.xml │ │ ├── ex-pip.drawio.xml │ │ ├── ex-pro.drawio.xml │ │ ├── github.drawio.xml │ │ ├── localdos.drawio.xml │ │ ├── monitoring.drawio.xml │ │ ├── per-arti.drawio.xml │ │ ├── per-img.drawio.xml │ │ ├── per-reg.drawio.xml │ │ ├── per-service.drawio.xml │ │ ├── ppe.drawio.xml │ │ ├── priv-cert.drawio.xml │ │ ├── priv-key.drawio.xml │ │ ├── priv-pro.drawio.xml │ │ ├── regi.drawio.xml │ │ ├── registry.drawio.xml │ │ ├── res-del.drawio.xml │ │ ├── resources.drawio.xml │ │ ├── scm.drawio.xml │ │ ├── unprotected.drawio.xml │ │ └── webhook.drawio.xml │ └── js/ │ ├── just-the-docs.js │ └── zzzz-search-data.json ├── bin/ │ └── just-the-docs ├── docker-compose.yml ├── docs/ │ ├── aisecops/ │ │ ├── aisecops.md │ │ ├── azure.md │ │ ├── biasandfairness.md │ │ └── driver.md │ ├── attacks/ │ │ ├── application.md │ │ ├── attacks.md │ │ ├── cloud.md │ │ ├── container.md │ │ └── pipeline.md │ ├── build-test/ │ │ ├── artifacts.md │ │ ├── build-test.md │ │ ├── configuration-management.md │ │ ├── dast.md │ │ ├── iast.md │ │ └── smoke-test.md │ ├── checklists/ │ │ ├── apache.md │ │ ├── argocd.md │ │ ├── auth0.md │ │ ├── aws.md │ │ ├── ceph.md │ │ ├── checklists.md │ │ ├── consul.md │ │ ├── couchdb.md │ │ ├── docker.md │ │ ├── ebpf.md │ │ ├── elasticsearch.md │ │ ├── etcd.md │ │ ├── git.md │ │ ├── gitlab.md │ │ ├── glusterfs.md │ │ ├── gradle.md │ │ ├── graphite.md │ │ ├── iis.md │ │ ├── jenkins.md │ │ ├── kubernetes.md │ │ ├── maven.md │ │ ├── memcached.md │ │ ├── mongodb.md │ │ ├── mysql.md │ │ ├── nginx.md │ │ ├── openshift.md │ │ ├── redis.md │ │ ├── saltstack.md │ │ ├── sbom.md │ │ ├── squid.md │ │ ├── terraform.md │ │ ├── tomcat.md │ │ ├── weblogic.md │ │ └── webservice │ ├── code/ │ │ ├── code.md │ │ ├── sast.md │ │ ├── sca.md │ │ └── secure-pipeline.md │ ├── mlsecops/ │ │ ├── azure.md │ │ ├── mlsecops.md │ │ └── modelrobustnessandadversarialattacks.md │ ├── model/ │ │ ├── model.md │ │ └── simple.md │ ├── operate/ │ │ ├── monitoring.md │ │ ├── operate.md │ │ └── virtual-patching.md │ ├── plan-develop/ │ │ ├── appsec.md │ │ ├── driver.md │ │ ├── methodology.md │ │ ├── plan-develop.md │ │ └── threats.md │ ├── privacy-policy/ │ │ └── privacy-policy.md │ ├── production/ │ │ ├── cloud.md │ │ ├── infrastructure.md │ │ ├── production.md │ │ ├── secrets-management.md │ │ ├── threat-intelligence.md │ │ └── vulnerability-assessment.md │ ├── resources/ │ │ └── resources.md │ ├── rules/ │ │ ├── android.md │ │ ├── c.md │ │ ├── cloudFormation.md │ │ ├── cpp.md │ │ ├── csharp.md │ │ ├── django.md │ │ ├── docker.md │ │ ├── go.md │ │ ├── java.md │ │ ├── kotlin.md │ │ ├── kubernetes.md │ │ ├── laravel.md │ │ ├── llm.md │ │ ├── nodejs.md │ │ ├── objectivec.md │ │ ├── php.md │ │ ├── python.md │ │ ├── rails.md │ │ ├── ruby.md │ │ ├── rules.md │ │ ├── scala.md │ │ ├── swift.md │ │ ├── terraform.md │ │ └── xml.md │ └── stories/ │ └── stories.md ├── fixtures/ │ ├── Gemfile-github-pages │ └── README.md ├── index.md ├── just-the-docs.gemspec ├── lib/ │ └── tasks/ │ └── search.rake └── package.json