├── 404 └── index.md ├── .github └── workflows │ ├── jekyll.yml │ ├── pr_label_toolcenter.yml │ ├── update-contributors.yml │ └── validate_tools_yaml.yml ├── .gitignore ├── .well-known └── security.txt ├── CODEOWNERS ├── Gemfile ├── Gemfile.lock ├── README.md ├── _config.yml ├── _data ├── .schema │ └── tools.schema.yaml ├── articles.yml ├── carousel.yml ├── guides.yml ├── supporters.yml ├── tool-categories.yml └── tools.yml ├── _posts ├── 2021-05-04-cyclonedx-v1.3-released.md ├── 2021-06-11-cyclonedx-joins-owasp_foundation.md ├── 2021-08-16-cyclonedx-launches-learning-series.md ├── 2022-01-12-cyclonedx-v1.4-released.md ├── 2022-05-12-owasp-cyclonedx-launches-sbom-exchange-api--standardizing-sbom-distribution.md ├── 2023-03-01-ibm-contributes-two-open-source-projects-sbom-utility-and-license-scanner-to-cyclonedx.md ├── 2023-06-26-cyclonedx-v1.5-released.md ├── 2023-10-12-OWASP-Foundation-Joins-Ecma-International-to-Drive-Software-Transparency-and-Standardization-of-OWASP-CycloneDX.md ├── 2024-04-09-cyclonedx-v1.6-released.md └── 2024-07-01-cyclonedx-v1.6-now-an-ecma-international-standard.md ├── _redirects ├── about ├── branding │ ├── cyclonedx-logo-black.eps │ ├── cyclonedx-logo-black.png │ ├── cyclonedx-logo-black.svg │ ├── cyclonedx-logo-symbol.eps │ ├── cyclonedx-logo-symbol.png │ ├── cyclonedx-logo-symbol.svg │ ├── cyclonedx-logo-white.eps │ ├── cyclonedx-logo-white.png │ ├── cyclonedx-logo-white.svg │ └── index.md ├── governance │ └── index.md ├── guiding-principles │ └── index.md ├── history │ └── index.md ├── participate │ └── index.md ├── standardization-process │ └── index.md ├── supporters-only │ └── index.md ├── supporters │ ├── index.md │ └── supporters.json ├── voting-process │ └── index.md └── working-groups │ ├── index.md │ └── working-groups.json ├── capabilities ├── attestations │ └── index.md ├── bomlink │ └── index.md ├── bov │ └── index.md ├── cbom │ └── index.md ├── hbom │ └── index.md ├── index.md ├── mbom │ └── index.md ├── mlbom │ └── index.md ├── obom │ └── index.md ├── release-notes │ └── index.md ├── saasbom │ └── index.md ├── sbom │ └── index.md ├── vdr │ └── index.md └── vex │ └── index.md ├── cyclonedx-icon.png ├── docs ├── 1.0 │ └── xml │ │ └── index.html ├── 1.1 │ └── xml │ │ └── index.html ├── 1.2 │ ├── json │ │ ├── index.html │ │ ├── schema_doc.css │ │ └── schema_doc.min.js │ └── xml │ │ └── index.html ├── 1.3 │ ├── json │ │ ├── index.html │ │ ├── schema_doc.css │ │ └── schema_doc.min.js │ └── xml │ │ └── index.html ├── 1.4 │ ├── json │ │ ├── index.html │ │ ├── schema_doc.css │ │ └── schema_doc.min.js │ └── xml │ │ └── index.html ├── 1.5 │ ├── json │ │ ├── index.html │ │ ├── schema_doc.css │ │ └── schema_doc.min.js │ └── xml │ │ └── index.html └── 1.6 │ ├── json │ ├── index.html │ ├── schema_doc.css │ └── schema_doc.min.js │ └── xml │ └── index.html ├── ext ├── bom-descriptor │ └── index.md ├── dependency-graph │ └── index.md └── vulnerability │ └── index.md ├── favicon.ico ├── google8587d85d89ed81c7.html ├── guides ├── CycloneDX One Pager.pdf ├── OWASP_CycloneDX-Authoritative-Guide-to-Attestations-en.pdf ├── OWASP_CycloneDX-Authoritative-Guide-to-CBOM-en.pdf ├── OWASP_CycloneDX-Authoritative-Guide-to-SBOM-en.pdf ├── index.md └── sbom │ ├── OWASP_CycloneDX-SBOM-Guide-en.pdf │ ├── bom.md │ ├── consumption.md │ ├── data_components.md │ ├── evidence.md │ ├── extensibility.md │ ├── external-references.md │ ├── formulation.md │ ├── frontispiece.md │ ├── generation.md │ ├── glossary.md │ ├── index.md │ ├── introduction.md │ ├── lifecycle_phases.md │ ├── linking.md │ ├── object-model.md │ ├── pedigree.md │ ├── preface.md │ ├── references.md │ ├── relationships.md │ ├── scenarios.md │ └── use_cases.md ├── index.md ├── local-build.sh ├── news └── index.md ├── robots.txt ├── schema ├── bom-1.0.xsd ├── bom-1.1.xsd ├── bom-1.2-strict.schema.json ├── bom-1.2.schema.json ├── bom-1.2.xsd ├── bom-1.3-strict.schema.json ├── bom-1.3.proto ├── bom-1.3.schema.json ├── bom-1.3.xsd ├── bom-1.4.proto ├── bom-1.4.schema.json ├── bom-1.4.xsd ├── bom-1.5.proto ├── bom-1.5.schema.json ├── bom-1.5.xsd ├── bom-1.6.proto ├── bom-1.6.schema.json ├── bom-1.6.xsd ├── ext │ ├── bom-descriptor-0.9.xsd │ ├── bom-descriptor-1.0.xsd │ ├── dependency-graph-1.0.xsd │ └── vulnerability-1.0.xsd ├── jsf-0.82.schema.json ├── spdx.schema.json └── spdx.xsd ├── serve.sh ├── specification └── overview │ └── index.md ├── theme ├── _includes │ ├── breadcrumbs.html │ ├── capabilities-selection.html │ ├── capabilities-stack.html │ ├── carousel.html │ ├── code-example-tabs-head.html │ ├── code-example-tabs-tab1.html │ ├── code-example-tabs-tab2.html │ ├── code-example-tabs-tail.html │ ├── comments.html │ ├── examples │ │ ├── assembly.html │ │ ├── authenticity.html │ │ ├── bom-link-bom.html │ │ ├── bom-link-vex.html │ │ ├── compositions.html │ │ ├── dependency-graph.html │ │ ├── external-references.html │ │ ├── integrity.html │ │ ├── inventory.html │ │ ├── license-compliance.html │ │ ├── openchain-conformance.html │ │ ├── outdated.html │ │ ├── packaging-distribution.html │ │ ├── pedigree.html │ │ ├── properties.html │ │ ├── provenance.html │ │ ├── security-advisories.html │ │ ├── security.html │ │ ├── services.html │ │ ├── vex.html │ │ └── vulnerability-remediation.html │ ├── external-news-cards.html │ ├── google-analytics.html │ ├── guide-cards.html │ ├── internal-news-cards.html │ ├── micro-nav.html │ ├── site-footer.html │ ├── site-head.html │ ├── site-header.html │ ├── site-supporters-footer.html │ ├── tool-card.html │ └── tool-categories.html ├── _layouts │ ├── default.html │ ├── document.html │ ├── error-404.html │ ├── examples.html │ ├── extension.html │ ├── guide.html │ ├── guides.html │ ├── home.html │ ├── homepage.html │ ├── newsroom.html │ ├── supporters-only.html │ ├── supporters.html │ ├── table-of-contents.html │ ├── tools.html │ ├── verbatim.html │ └── working-groups.html ├── _sass │ ├── _variables.scss │ ├── components │ │ ├── _callout.scss │ │ ├── _card.scss │ │ ├── _collapsibles.scss │ │ ├── _example.scss │ │ ├── _guides.scss │ │ ├── _hero-headline.scss │ │ ├── _hero-subheader.scss │ │ ├── _implementations.scss │ │ ├── _info-card.scss │ │ ├── _logo-card.scss │ │ ├── _micro-nav.scss │ │ ├── _nav-grid.scss │ │ ├── _newsroom.scss │ │ ├── _page-nav.scss │ │ ├── _quote-card.scss │ │ ├── _sections-list.scss │ │ ├── _site-footer.scss │ │ ├── _site-header.scss │ │ ├── _social-list.scss │ │ ├── _tabbed-code-examples.scss │ │ └── _title-anchor-link.scss │ ├── generic │ │ ├── _base.scss │ │ ├── _code.scss │ │ └── _normalize.scss │ ├── objects │ │ ├── _badges.scss │ │ ├── _buttons.scss │ │ ├── _content.scss │ │ ├── _error-404.scss │ │ ├── _grid.scss │ │ ├── _icons.scss │ │ └── _section.scss │ ├── tools │ │ ├── _clearfix.scss │ │ ├── _grid-framework.scss │ │ ├── _grid.scss │ │ ├── _hyperlinks.scss │ │ ├── _lists.scss │ │ ├── _prefixer.scss │ │ └── _responsive-visibility.scss │ └── utilities │ │ ├── _alignment.scss │ │ └── _visibility.scss └── assets │ ├── css │ ├── animate.min.css │ └── style.scss │ ├── fonts │ └── icons │ │ ├── icons.svg │ │ ├── icons.ttf │ │ ├── icons.woff │ │ └── selection.json │ ├── images │ ├── CycloneDX-Object-Model-Swimlane.svg │ ├── CycloneDX-Twitter-Card.png │ ├── VDR+VEX-BOM-Cascade.svg │ ├── beyond_sbom_hero.jpg │ ├── capability-tile.svg │ ├── cbom-sbom.svg │ ├── cyclone_watermark_dark.svg │ ├── cyclone_watermark_light.svg │ ├── cyclonedx-release-timeline.svg │ ├── dataflow-diagram-1.svg │ ├── defense_hero.jpg │ ├── ecma_hero.jpg │ ├── embedded-cbom.svg │ ├── embedded-saasbom.svg │ ├── embedded-vdr.svg │ ├── embedded-vex.svg │ ├── enterprise_hero.jpg │ ├── guides │ │ └── SBOM │ │ │ ├── Annotations.svg │ │ │ ├── Components.svg │ │ │ ├── Compositions.svg │ │ │ ├── CycloneDX-Object-Type-Overview.svg │ │ │ ├── CycloneDX-Object-Type-Overview_with-Attestations.svg │ │ │ ├── Dependencies.svg │ │ │ ├── Extensions.svg │ │ │ ├── Formulation.svg │ │ │ ├── Lifecycles.svg │ │ │ ├── Metadata.svg │ │ │ ├── Nested_Component_Data.svg │ │ │ ├── Services.svg │ │ │ ├── Vulnerabilities.svg │ │ │ ├── advanced_sbom_process.jpg │ │ │ ├── advanced_sbom_process.pdf │ │ │ ├── assemblies.svg │ │ │ ├── bom-linking-boms.svg │ │ │ ├── bom-tool-ladder.svg │ │ │ ├── dependency-graph.svg │ │ │ ├── identity-tree.svg │ │ │ ├── license.svg │ │ │ ├── quality-dimensions.svg │ │ │ ├── recommended_sbom_process_lifecycles.svg │ │ │ └── simple_sbom_process.svg │ ├── headshots │ │ ├── andrew-hoog.jpg │ │ ├── asaf-karas.png │ │ ├── brian-fox.jpg │ │ ├── christopher-gates.jpg │ │ ├── dennis-roellke.jpg │ │ ├── guillaume-le-floch.jpg │ │ ├── jan-kowalleck.jpg │ │ ├── jc-herz.jpg │ │ ├── jeff-williams.jpg │ │ ├── jerod-heck.jpg │ │ ├── jim-bugwadia.jpg │ │ ├── kayla-heard-rising.jpg │ │ ├── mark-sturdevant.jpg │ │ ├── matt-rutkowski.jpg │ │ ├── meridith-greythorne.jpg │ │ ├── niklas-düster.jpg │ │ ├── nilesh-thatte.jpg │ │ ├── patrick-dwyer.jpg │ │ ├── philippe-ombredanne.jpg │ │ ├── priti-desai.jpg │ │ ├── profile.png │ │ ├── richard-lee.jpg │ │ ├── robert-smigielski.jpg │ │ ├── ryan-searle.jpg │ │ ├── sambhav-kothari.jpg │ │ ├── sergey-khokhlov.jpg │ │ ├── steve-springett.jpg │ │ └── vinod-anandan.jpg │ ├── hero-header.png │ ├── hero-subheader.png │ ├── high-level-object-model-small.svg │ ├── high-level-object-model.svg │ ├── layout │ │ ├── logo-symbol.svg │ │ ├── logo-white.svg │ │ ├── logo.svg │ │ └── owasp_logo_1c_notext.svg │ ├── license_hero.jpg │ ├── logos │ │ ├── 18f.svg │ │ ├── adolus.svg │ │ ├── amass.svg │ │ ├── anchore.svg │ │ ├── apiiro.svg │ │ ├── aqua-trivy.svg │ │ ├── aquasec.svg │ │ ├── armorcode.svg │ │ ├── arnica.svg │ │ ├── blackberry.svg │ │ ├── bloomberg.svg │ │ ├── buildpacks.svg │ │ ├── bytesafe.svg │ │ ├── cast-software.svg │ │ ├── chainguard.svg │ │ ├── chainloop.png │ │ ├── checkmarx.svg │ │ ├── checkov.svg │ │ ├── cisco.svg │ │ ├── cloudsmith.svg │ │ ├── cncf.svg │ │ ├── code-notary.svg │ │ ├── contrast-security.svg │ │ ├── cybeats.svg │ │ ├── cybellum.svg │ │ ├── cybertest.svg │ │ ├── debricked.svg │ │ ├── deepfence.svg │ │ ├── defectdojo.svg │ │ ├── dependency-track.svg │ │ ├── dkfm.svg │ │ ├── ecma.svg │ │ ├── emba.svg │ │ ├── endorlabs.svg │ │ ├── enso.svg │ │ ├── finite-state.svg │ │ ├── flexera.svg │ │ ├── fortress.svg │ │ ├── fossa.svg │ │ ├── github.svg │ │ ├── gitlab.svg │ │ ├── google.svg │ │ ├── goreleaser.svg │ │ ├── graalvm.svg │ │ ├── grammatech.svg │ │ ├── grype.svg │ │ ├── ibm.svg │ │ ├── intel.svg │ │ ├── interlynk.svg │ │ ├── ionchannel.svg │ │ ├── jdisc.svg │ │ ├── jfrog.svg │ │ ├── jupiterone.svg │ │ ├── ko.png │ │ ├── kondukto.svg │ │ ├── ksoc.svg │ │ ├── kubeclarity.svg │ │ ├── kyverno.svg │ │ ├── lagoon.svg │ │ ├── leanix.svg │ │ ├── lockheed-martin.svg │ │ ├── manifest.svg │ │ ├── medcrypt.svg │ │ ├── medsec.svg │ │ ├── mend.svg │ │ ├── mergebase.svg │ │ ├── microfocus.svg │ │ ├── netrise.svg │ │ ├── nexb.svg │ │ ├── nowsecure.svg │ │ ├── oligo.svg │ │ ├── openrewrite.svg │ │ ├── oracle.svg │ │ ├── ort.png │ │ ├── osv.svg │ │ ├── owasp.svg │ │ ├── palo-alto-networks.svg │ │ ├── qwiet-ai.svg │ │ ├── rapidfort.svg │ │ ├── redhat.svg │ │ ├── reliableenergyanalytics.svg │ │ ├── reliza.svg │ │ ├── revenera.svg │ │ ├── reversing-labs.svg │ │ ├── rezilion.png │ │ ├── rkvst.svg │ │ ├── salus.png │ │ ├── sap.svg │ │ ├── sbomify.svg │ │ ├── scanoss.svg │ │ ├── scribe.svg │ │ ├── secobserve.svg │ │ ├── securestack.svg │ │ ├── semgrep.svg │ │ ├── servicenow.svg │ │ ├── sigstore.svg │ │ ├── snyk.svg │ │ ├── sonarsource.svg │ │ ├── sonatype.svg │ │ ├── spack.svg │ │ ├── stackaware.svg │ │ ├── syft.svg │ │ ├── synopsys.svg │ │ ├── sysdig.svg │ │ ├── temurin.svg │ │ ├── tern.svg │ │ ├── tidelift.svg │ │ ├── timesys.svg │ │ ├── tivo.svg │ │ ├── trustsource.svg │ │ ├── vdoo.svg │ │ ├── veracode.svg │ │ ├── vmware.svg │ │ ├── xperi.svg │ │ ├── xygeni.svg │ │ └── zap.svg │ ├── mbom-sbom.svg │ ├── medical_hero.jpg │ ├── news │ │ ├── cloud_sec.png │ │ ├── confluent.png │ │ ├── evolve.jpg │ │ ├── machine-learning-transparency.jpg │ │ ├── supply_chain.png │ │ └── transparency.png │ ├── object-model │ │ ├── Annotations.svg │ │ ├── Components.svg │ │ ├── Compositions.svg │ │ ├── CycloneDX-Object-Type-Overview.svg │ │ ├── Data.svg │ │ ├── Declarations.svg │ │ ├── Definitions.svg │ │ ├── Dependencies.svg │ │ ├── Extensions.svg │ │ ├── Formulation.svg │ │ ├── Metadata.svg │ │ ├── Services.svg │ │ └── Vulnerabilities.svg │ ├── obom-sbom.svg │ ├── saasbom-sbom.svg │ ├── sources │ │ ├── CycloneDX-Object-Model-Swimlane.afdesign │ │ ├── VDR+VEX-BOM-Cascade.afdesign │ │ ├── embedded-saasbom.afdesign │ │ ├── embedded-vdr.afdesign │ │ ├── embedded-vex.afdesign │ │ ├── obom-sbom.afdesign │ │ ├── saasbom-sbom.afdesign │ │ ├── tiles.afdesign │ │ ├── vdrbom.afdesign │ │ └── vexbom.afdesign │ ├── standardization-workflow.svg │ ├── standardization-working-model-1.svg │ ├── standardization-working-model-2.svg │ ├── vdrbom.svg │ └── vexbom.svg │ └── js │ ├── scripts.js │ ├── scripts.min.js │ ├── tools.js │ ├── vendor │ ├── bootstrap │ │ ├── affix.js │ │ ├── affix.min.js │ │ ├── scrollspy.js │ │ └── scrollspy.min.js │ ├── jquery-3.5.1.min.js │ ├── jquery.easing.min.js │ ├── jquery.inview.min.js │ ├── matchHeight.js │ └── matchHeight.min.js │ └── working-groups.js ├── tool-center └── index.md ├── update_contributors.py └── use-cases └── index.md /.github/workflows/jekyll.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/.github/workflows/jekyll.yml -------------------------------------------------------------------------------- /.github/workflows/pr_label_toolcenter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/.github/workflows/pr_label_toolcenter.yml -------------------------------------------------------------------------------- /.github/workflows/update-contributors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/.github/workflows/update-contributors.yml -------------------------------------------------------------------------------- /.github/workflows/validate_tools_yaml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/.github/workflows/validate_tools_yaml.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/.gitignore -------------------------------------------------------------------------------- /.well-known/security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/.well-known/security.txt -------------------------------------------------------------------------------- /404/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/404/index.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/_config.yml -------------------------------------------------------------------------------- /_data/.schema/tools.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/_data/.schema/tools.schema.yaml -------------------------------------------------------------------------------- /_data/articles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/_data/articles.yml -------------------------------------------------------------------------------- /_data/carousel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/_data/carousel.yml -------------------------------------------------------------------------------- /_data/guides.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/_data/guides.yml -------------------------------------------------------------------------------- /_data/supporters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/_data/supporters.yml -------------------------------------------------------------------------------- /_data/tool-categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/_data/tool-categories.yml -------------------------------------------------------------------------------- /_data/tools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/_data/tools.yml -------------------------------------------------------------------------------- /_posts/2021-05-04-cyclonedx-v1.3-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/_posts/2021-05-04-cyclonedx-v1.3-released.md -------------------------------------------------------------------------------- /_posts/2021-06-11-cyclonedx-joins-owasp_foundation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/_posts/2021-06-11-cyclonedx-joins-owasp_foundation.md -------------------------------------------------------------------------------- /_posts/2021-08-16-cyclonedx-launches-learning-series.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/_posts/2021-08-16-cyclonedx-launches-learning-series.md -------------------------------------------------------------------------------- /_posts/2022-01-12-cyclonedx-v1.4-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/_posts/2022-01-12-cyclonedx-v1.4-released.md -------------------------------------------------------------------------------- /_posts/2022-05-12-owasp-cyclonedx-launches-sbom-exchange-api--standardizing-sbom-distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/_posts/2022-05-12-owasp-cyclonedx-launches-sbom-exchange-api--standardizing-sbom-distribution.md -------------------------------------------------------------------------------- /_posts/2023-03-01-ibm-contributes-two-open-source-projects-sbom-utility-and-license-scanner-to-cyclonedx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/_posts/2023-03-01-ibm-contributes-two-open-source-projects-sbom-utility-and-license-scanner-to-cyclonedx.md -------------------------------------------------------------------------------- /_posts/2023-06-26-cyclonedx-v1.5-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/_posts/2023-06-26-cyclonedx-v1.5-released.md -------------------------------------------------------------------------------- /_posts/2023-10-12-OWASP-Foundation-Joins-Ecma-International-to-Drive-Software-Transparency-and-Standardization-of-OWASP-CycloneDX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/_posts/2023-10-12-OWASP-Foundation-Joins-Ecma-International-to-Drive-Software-Transparency-and-Standardization-of-OWASP-CycloneDX.md -------------------------------------------------------------------------------- /_posts/2024-04-09-cyclonedx-v1.6-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/_posts/2024-04-09-cyclonedx-v1.6-released.md -------------------------------------------------------------------------------- /_posts/2024-07-01-cyclonedx-v1.6-now-an-ecma-international-standard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/_posts/2024-07-01-cyclonedx-v1.6-now-an-ecma-international-standard.md -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/_redirects -------------------------------------------------------------------------------- /about/branding/cyclonedx-logo-black.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/branding/cyclonedx-logo-black.eps -------------------------------------------------------------------------------- /about/branding/cyclonedx-logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/branding/cyclonedx-logo-black.png -------------------------------------------------------------------------------- /about/branding/cyclonedx-logo-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/branding/cyclonedx-logo-black.svg -------------------------------------------------------------------------------- /about/branding/cyclonedx-logo-symbol.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/branding/cyclonedx-logo-symbol.eps -------------------------------------------------------------------------------- /about/branding/cyclonedx-logo-symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/branding/cyclonedx-logo-symbol.png -------------------------------------------------------------------------------- /about/branding/cyclonedx-logo-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/branding/cyclonedx-logo-symbol.svg -------------------------------------------------------------------------------- /about/branding/cyclonedx-logo-white.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/branding/cyclonedx-logo-white.eps -------------------------------------------------------------------------------- /about/branding/cyclonedx-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/branding/cyclonedx-logo-white.png -------------------------------------------------------------------------------- /about/branding/cyclonedx-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/branding/cyclonedx-logo-white.svg -------------------------------------------------------------------------------- /about/branding/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/branding/index.md -------------------------------------------------------------------------------- /about/governance/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/governance/index.md -------------------------------------------------------------------------------- /about/guiding-principles/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/guiding-principles/index.md -------------------------------------------------------------------------------- /about/history/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/history/index.md -------------------------------------------------------------------------------- /about/participate/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/participate/index.md -------------------------------------------------------------------------------- /about/standardization-process/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/standardization-process/index.md -------------------------------------------------------------------------------- /about/supporters-only/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/supporters-only/index.md -------------------------------------------------------------------------------- /about/supporters/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/supporters/index.md -------------------------------------------------------------------------------- /about/supporters/supporters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/supporters/supporters.json -------------------------------------------------------------------------------- /about/voting-process/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/voting-process/index.md -------------------------------------------------------------------------------- /about/working-groups/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/working-groups/index.md -------------------------------------------------------------------------------- /about/working-groups/working-groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/about/working-groups/working-groups.json -------------------------------------------------------------------------------- /capabilities/attestations/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/capabilities/attestations/index.md -------------------------------------------------------------------------------- /capabilities/bomlink/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/capabilities/bomlink/index.md -------------------------------------------------------------------------------- /capabilities/bov/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/capabilities/bov/index.md -------------------------------------------------------------------------------- /capabilities/cbom/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/capabilities/cbom/index.md -------------------------------------------------------------------------------- /capabilities/hbom/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/capabilities/hbom/index.md -------------------------------------------------------------------------------- /capabilities/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/capabilities/index.md -------------------------------------------------------------------------------- /capabilities/mbom/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/capabilities/mbom/index.md -------------------------------------------------------------------------------- /capabilities/mlbom/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/capabilities/mlbom/index.md -------------------------------------------------------------------------------- /capabilities/obom/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/capabilities/obom/index.md -------------------------------------------------------------------------------- /capabilities/release-notes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/capabilities/release-notes/index.md -------------------------------------------------------------------------------- /capabilities/saasbom/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/capabilities/saasbom/index.md -------------------------------------------------------------------------------- /capabilities/sbom/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/capabilities/sbom/index.md -------------------------------------------------------------------------------- /capabilities/vdr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/capabilities/vdr/index.md -------------------------------------------------------------------------------- /capabilities/vex/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/capabilities/vex/index.md -------------------------------------------------------------------------------- /cyclonedx-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/cyclonedx-icon.png -------------------------------------------------------------------------------- /docs/1.0/xml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.0/xml/index.html -------------------------------------------------------------------------------- /docs/1.1/xml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.1/xml/index.html -------------------------------------------------------------------------------- /docs/1.2/json/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.2/json/index.html -------------------------------------------------------------------------------- /docs/1.2/json/schema_doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.2/json/schema_doc.css -------------------------------------------------------------------------------- /docs/1.2/json/schema_doc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.2/json/schema_doc.min.js -------------------------------------------------------------------------------- /docs/1.2/xml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.2/xml/index.html -------------------------------------------------------------------------------- /docs/1.3/json/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.3/json/index.html -------------------------------------------------------------------------------- /docs/1.3/json/schema_doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.3/json/schema_doc.css -------------------------------------------------------------------------------- /docs/1.3/json/schema_doc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.3/json/schema_doc.min.js -------------------------------------------------------------------------------- /docs/1.3/xml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.3/xml/index.html -------------------------------------------------------------------------------- /docs/1.4/json/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.4/json/index.html -------------------------------------------------------------------------------- /docs/1.4/json/schema_doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.4/json/schema_doc.css -------------------------------------------------------------------------------- /docs/1.4/json/schema_doc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.4/json/schema_doc.min.js -------------------------------------------------------------------------------- /docs/1.4/xml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.4/xml/index.html -------------------------------------------------------------------------------- /docs/1.5/json/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.5/json/index.html -------------------------------------------------------------------------------- /docs/1.5/json/schema_doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.5/json/schema_doc.css -------------------------------------------------------------------------------- /docs/1.5/json/schema_doc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.5/json/schema_doc.min.js -------------------------------------------------------------------------------- /docs/1.5/xml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.5/xml/index.html -------------------------------------------------------------------------------- /docs/1.6/json/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.6/json/index.html -------------------------------------------------------------------------------- /docs/1.6/json/schema_doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.6/json/schema_doc.css -------------------------------------------------------------------------------- /docs/1.6/json/schema_doc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.6/json/schema_doc.min.js -------------------------------------------------------------------------------- /docs/1.6/xml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/docs/1.6/xml/index.html -------------------------------------------------------------------------------- /ext/bom-descriptor/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/ext/bom-descriptor/index.md -------------------------------------------------------------------------------- /ext/dependency-graph/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/ext/dependency-graph/index.md -------------------------------------------------------------------------------- /ext/vulnerability/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/ext/vulnerability/index.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/favicon.ico -------------------------------------------------------------------------------- /google8587d85d89ed81c7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/google8587d85d89ed81c7.html -------------------------------------------------------------------------------- /guides/CycloneDX One Pager.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/CycloneDX One Pager.pdf -------------------------------------------------------------------------------- /guides/OWASP_CycloneDX-Authoritative-Guide-to-Attestations-en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/OWASP_CycloneDX-Authoritative-Guide-to-Attestations-en.pdf -------------------------------------------------------------------------------- /guides/OWASP_CycloneDX-Authoritative-Guide-to-CBOM-en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/OWASP_CycloneDX-Authoritative-Guide-to-CBOM-en.pdf -------------------------------------------------------------------------------- /guides/OWASP_CycloneDX-Authoritative-Guide-to-SBOM-en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/OWASP_CycloneDX-Authoritative-Guide-to-SBOM-en.pdf -------------------------------------------------------------------------------- /guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/index.md -------------------------------------------------------------------------------- /guides/sbom/OWASP_CycloneDX-SBOM-Guide-en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/OWASP_CycloneDX-SBOM-Guide-en.pdf -------------------------------------------------------------------------------- /guides/sbom/bom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/bom.md -------------------------------------------------------------------------------- /guides/sbom/consumption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/consumption.md -------------------------------------------------------------------------------- /guides/sbom/data_components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/data_components.md -------------------------------------------------------------------------------- /guides/sbom/evidence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/evidence.md -------------------------------------------------------------------------------- /guides/sbom/extensibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/extensibility.md -------------------------------------------------------------------------------- /guides/sbom/external-references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/external-references.md -------------------------------------------------------------------------------- /guides/sbom/formulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/formulation.md -------------------------------------------------------------------------------- /guides/sbom/frontispiece.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/frontispiece.md -------------------------------------------------------------------------------- /guides/sbom/generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/generation.md -------------------------------------------------------------------------------- /guides/sbom/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/glossary.md -------------------------------------------------------------------------------- /guides/sbom/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/index.md -------------------------------------------------------------------------------- /guides/sbom/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/introduction.md -------------------------------------------------------------------------------- /guides/sbom/lifecycle_phases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/lifecycle_phases.md -------------------------------------------------------------------------------- /guides/sbom/linking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/linking.md -------------------------------------------------------------------------------- /guides/sbom/object-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/object-model.md -------------------------------------------------------------------------------- /guides/sbom/pedigree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/pedigree.md -------------------------------------------------------------------------------- /guides/sbom/preface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/preface.md -------------------------------------------------------------------------------- /guides/sbom/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/references.md -------------------------------------------------------------------------------- /guides/sbom/relationships.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/relationships.md -------------------------------------------------------------------------------- /guides/sbom/scenarios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/scenarios.md -------------------------------------------------------------------------------- /guides/sbom/use_cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/guides/sbom/use_cases.md -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/index.md -------------------------------------------------------------------------------- /local-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/local-build.sh -------------------------------------------------------------------------------- /news/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/news/index.md -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/robots.txt -------------------------------------------------------------------------------- /schema/bom-1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/bom-1.0.xsd -------------------------------------------------------------------------------- /schema/bom-1.1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/bom-1.1.xsd -------------------------------------------------------------------------------- /schema/bom-1.2-strict.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/bom-1.2-strict.schema.json -------------------------------------------------------------------------------- /schema/bom-1.2.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/bom-1.2.schema.json -------------------------------------------------------------------------------- /schema/bom-1.2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/bom-1.2.xsd -------------------------------------------------------------------------------- /schema/bom-1.3-strict.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/bom-1.3-strict.schema.json -------------------------------------------------------------------------------- /schema/bom-1.3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/bom-1.3.proto -------------------------------------------------------------------------------- /schema/bom-1.3.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/bom-1.3.schema.json -------------------------------------------------------------------------------- /schema/bom-1.3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/bom-1.3.xsd -------------------------------------------------------------------------------- /schema/bom-1.4.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/bom-1.4.proto -------------------------------------------------------------------------------- /schema/bom-1.4.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/bom-1.4.schema.json -------------------------------------------------------------------------------- /schema/bom-1.4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/bom-1.4.xsd -------------------------------------------------------------------------------- /schema/bom-1.5.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/bom-1.5.proto -------------------------------------------------------------------------------- /schema/bom-1.5.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/bom-1.5.schema.json -------------------------------------------------------------------------------- /schema/bom-1.5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/bom-1.5.xsd -------------------------------------------------------------------------------- /schema/bom-1.6.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/bom-1.6.proto -------------------------------------------------------------------------------- /schema/bom-1.6.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/bom-1.6.schema.json -------------------------------------------------------------------------------- /schema/bom-1.6.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/bom-1.6.xsd -------------------------------------------------------------------------------- /schema/ext/bom-descriptor-0.9.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/ext/bom-descriptor-0.9.xsd -------------------------------------------------------------------------------- /schema/ext/bom-descriptor-1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/ext/bom-descriptor-1.0.xsd -------------------------------------------------------------------------------- /schema/ext/dependency-graph-1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/ext/dependency-graph-1.0.xsd -------------------------------------------------------------------------------- /schema/ext/vulnerability-1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/ext/vulnerability-1.0.xsd -------------------------------------------------------------------------------- /schema/jsf-0.82.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/jsf-0.82.schema.json -------------------------------------------------------------------------------- /schema/spdx.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/spdx.schema.json -------------------------------------------------------------------------------- /schema/spdx.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/schema/spdx.xsd -------------------------------------------------------------------------------- /serve.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | cd _site 3 | python3 -m http.server 8000 4 | -------------------------------------------------------------------------------- /specification/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/specification/overview/index.md -------------------------------------------------------------------------------- /theme/_includes/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/breadcrumbs.html -------------------------------------------------------------------------------- /theme/_includes/capabilities-selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/capabilities-selection.html -------------------------------------------------------------------------------- /theme/_includes/capabilities-stack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/capabilities-stack.html -------------------------------------------------------------------------------- /theme/_includes/carousel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/carousel.html -------------------------------------------------------------------------------- /theme/_includes/code-example-tabs-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/code-example-tabs-head.html -------------------------------------------------------------------------------- /theme/_includes/code-example-tabs-tab1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/code-example-tabs-tab1.html -------------------------------------------------------------------------------- /theme/_includes/code-example-tabs-tab2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/code-example-tabs-tab2.html -------------------------------------------------------------------------------- /theme/_includes/code-example-tabs-tail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/code-example-tabs-tail.html -------------------------------------------------------------------------------- /theme/_includes/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/comments.html -------------------------------------------------------------------------------- /theme/_includes/examples/assembly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/assembly.html -------------------------------------------------------------------------------- /theme/_includes/examples/authenticity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/authenticity.html -------------------------------------------------------------------------------- /theme/_includes/examples/bom-link-bom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/bom-link-bom.html -------------------------------------------------------------------------------- /theme/_includes/examples/bom-link-vex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/bom-link-vex.html -------------------------------------------------------------------------------- /theme/_includes/examples/compositions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/compositions.html -------------------------------------------------------------------------------- /theme/_includes/examples/dependency-graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/dependency-graph.html -------------------------------------------------------------------------------- /theme/_includes/examples/external-references.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/external-references.html -------------------------------------------------------------------------------- /theme/_includes/examples/integrity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/integrity.html -------------------------------------------------------------------------------- /theme/_includes/examples/inventory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/inventory.html -------------------------------------------------------------------------------- /theme/_includes/examples/license-compliance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/license-compliance.html -------------------------------------------------------------------------------- /theme/_includes/examples/openchain-conformance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/openchain-conformance.html -------------------------------------------------------------------------------- /theme/_includes/examples/outdated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/outdated.html -------------------------------------------------------------------------------- /theme/_includes/examples/packaging-distribution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/packaging-distribution.html -------------------------------------------------------------------------------- /theme/_includes/examples/pedigree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/pedigree.html -------------------------------------------------------------------------------- /theme/_includes/examples/properties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/properties.html -------------------------------------------------------------------------------- /theme/_includes/examples/provenance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/provenance.html -------------------------------------------------------------------------------- /theme/_includes/examples/security-advisories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/security-advisories.html -------------------------------------------------------------------------------- /theme/_includes/examples/security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/security.html -------------------------------------------------------------------------------- /theme/_includes/examples/services.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/services.html -------------------------------------------------------------------------------- /theme/_includes/examples/vex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/vex.html -------------------------------------------------------------------------------- /theme/_includes/examples/vulnerability-remediation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/examples/vulnerability-remediation.html -------------------------------------------------------------------------------- /theme/_includes/external-news-cards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/external-news-cards.html -------------------------------------------------------------------------------- /theme/_includes/google-analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/google-analytics.html -------------------------------------------------------------------------------- /theme/_includes/guide-cards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/guide-cards.html -------------------------------------------------------------------------------- /theme/_includes/internal-news-cards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/internal-news-cards.html -------------------------------------------------------------------------------- /theme/_includes/micro-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/micro-nav.html -------------------------------------------------------------------------------- /theme/_includes/site-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/site-footer.html -------------------------------------------------------------------------------- /theme/_includes/site-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/site-head.html -------------------------------------------------------------------------------- /theme/_includes/site-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/site-header.html -------------------------------------------------------------------------------- /theme/_includes/site-supporters-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/site-supporters-footer.html -------------------------------------------------------------------------------- /theme/_includes/tool-card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/tool-card.html -------------------------------------------------------------------------------- /theme/_includes/tool-categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_includes/tool-categories.html -------------------------------------------------------------------------------- /theme/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_layouts/default.html -------------------------------------------------------------------------------- /theme/_layouts/document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_layouts/document.html -------------------------------------------------------------------------------- /theme/_layouts/error-404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_layouts/error-404.html -------------------------------------------------------------------------------- /theme/_layouts/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_layouts/examples.html -------------------------------------------------------------------------------- /theme/_layouts/extension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_layouts/extension.html -------------------------------------------------------------------------------- /theme/_layouts/guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_layouts/guide.html -------------------------------------------------------------------------------- /theme/_layouts/guides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_layouts/guides.html -------------------------------------------------------------------------------- /theme/_layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_layouts/home.html -------------------------------------------------------------------------------- /theme/_layouts/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_layouts/homepage.html -------------------------------------------------------------------------------- /theme/_layouts/newsroom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_layouts/newsroom.html -------------------------------------------------------------------------------- /theme/_layouts/supporters-only.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_layouts/supporters-only.html -------------------------------------------------------------------------------- /theme/_layouts/supporters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_layouts/supporters.html -------------------------------------------------------------------------------- /theme/_layouts/table-of-contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_layouts/table-of-contents.html -------------------------------------------------------------------------------- /theme/_layouts/tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_layouts/tools.html -------------------------------------------------------------------------------- /theme/_layouts/verbatim.html: -------------------------------------------------------------------------------- 1 | {{ content }} -------------------------------------------------------------------------------- /theme/_layouts/working-groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_layouts/working-groups.html -------------------------------------------------------------------------------- /theme/_sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/_variables.scss -------------------------------------------------------------------------------- /theme/_sass/components/_callout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_callout.scss -------------------------------------------------------------------------------- /theme/_sass/components/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_card.scss -------------------------------------------------------------------------------- /theme/_sass/components/_collapsibles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_collapsibles.scss -------------------------------------------------------------------------------- /theme/_sass/components/_example.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_example.scss -------------------------------------------------------------------------------- /theme/_sass/components/_guides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_guides.scss -------------------------------------------------------------------------------- /theme/_sass/components/_hero-headline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_hero-headline.scss -------------------------------------------------------------------------------- /theme/_sass/components/_hero-subheader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_hero-subheader.scss -------------------------------------------------------------------------------- /theme/_sass/components/_implementations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_implementations.scss -------------------------------------------------------------------------------- /theme/_sass/components/_info-card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_info-card.scss -------------------------------------------------------------------------------- /theme/_sass/components/_logo-card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_logo-card.scss -------------------------------------------------------------------------------- /theme/_sass/components/_micro-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_micro-nav.scss -------------------------------------------------------------------------------- /theme/_sass/components/_nav-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_nav-grid.scss -------------------------------------------------------------------------------- /theme/_sass/components/_newsroom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_newsroom.scss -------------------------------------------------------------------------------- /theme/_sass/components/_page-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_page-nav.scss -------------------------------------------------------------------------------- /theme/_sass/components/_quote-card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_quote-card.scss -------------------------------------------------------------------------------- /theme/_sass/components/_sections-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_sections-list.scss -------------------------------------------------------------------------------- /theme/_sass/components/_site-footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_site-footer.scss -------------------------------------------------------------------------------- /theme/_sass/components/_site-header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_site-header.scss -------------------------------------------------------------------------------- /theme/_sass/components/_social-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_social-list.scss -------------------------------------------------------------------------------- /theme/_sass/components/_tabbed-code-examples.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_tabbed-code-examples.scss -------------------------------------------------------------------------------- /theme/_sass/components/_title-anchor-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/components/_title-anchor-link.scss -------------------------------------------------------------------------------- /theme/_sass/generic/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/generic/_base.scss -------------------------------------------------------------------------------- /theme/_sass/generic/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/generic/_code.scss -------------------------------------------------------------------------------- /theme/_sass/generic/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/generic/_normalize.scss -------------------------------------------------------------------------------- /theme/_sass/objects/_badges.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/objects/_badges.scss -------------------------------------------------------------------------------- /theme/_sass/objects/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/objects/_buttons.scss -------------------------------------------------------------------------------- /theme/_sass/objects/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/objects/_content.scss -------------------------------------------------------------------------------- /theme/_sass/objects/_error-404.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/objects/_error-404.scss -------------------------------------------------------------------------------- /theme/_sass/objects/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/objects/_grid.scss -------------------------------------------------------------------------------- /theme/_sass/objects/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/objects/_icons.scss -------------------------------------------------------------------------------- /theme/_sass/objects/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/objects/_section.scss -------------------------------------------------------------------------------- /theme/_sass/tools/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/tools/_clearfix.scss -------------------------------------------------------------------------------- /theme/_sass/tools/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/tools/_grid-framework.scss -------------------------------------------------------------------------------- /theme/_sass/tools/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/tools/_grid.scss -------------------------------------------------------------------------------- /theme/_sass/tools/_hyperlinks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/tools/_hyperlinks.scss -------------------------------------------------------------------------------- /theme/_sass/tools/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/tools/_lists.scss -------------------------------------------------------------------------------- /theme/_sass/tools/_prefixer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/tools/_prefixer.scss -------------------------------------------------------------------------------- /theme/_sass/tools/_responsive-visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/tools/_responsive-visibility.scss -------------------------------------------------------------------------------- /theme/_sass/utilities/_alignment.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/utilities/_alignment.scss -------------------------------------------------------------------------------- /theme/_sass/utilities/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/_sass/utilities/_visibility.scss -------------------------------------------------------------------------------- /theme/assets/css/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/css/animate.min.css -------------------------------------------------------------------------------- /theme/assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/css/style.scss -------------------------------------------------------------------------------- /theme/assets/fonts/icons/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/fonts/icons/icons.svg -------------------------------------------------------------------------------- /theme/assets/fonts/icons/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/fonts/icons/icons.ttf -------------------------------------------------------------------------------- /theme/assets/fonts/icons/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/fonts/icons/icons.woff -------------------------------------------------------------------------------- /theme/assets/fonts/icons/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/fonts/icons/selection.json -------------------------------------------------------------------------------- /theme/assets/images/CycloneDX-Object-Model-Swimlane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/CycloneDX-Object-Model-Swimlane.svg -------------------------------------------------------------------------------- /theme/assets/images/CycloneDX-Twitter-Card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/CycloneDX-Twitter-Card.png -------------------------------------------------------------------------------- /theme/assets/images/VDR+VEX-BOM-Cascade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/VDR+VEX-BOM-Cascade.svg -------------------------------------------------------------------------------- /theme/assets/images/beyond_sbom_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/beyond_sbom_hero.jpg -------------------------------------------------------------------------------- /theme/assets/images/capability-tile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/capability-tile.svg -------------------------------------------------------------------------------- /theme/assets/images/cbom-sbom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/cbom-sbom.svg -------------------------------------------------------------------------------- /theme/assets/images/cyclone_watermark_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/cyclone_watermark_dark.svg -------------------------------------------------------------------------------- /theme/assets/images/cyclone_watermark_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/cyclone_watermark_light.svg -------------------------------------------------------------------------------- /theme/assets/images/cyclonedx-release-timeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/cyclonedx-release-timeline.svg -------------------------------------------------------------------------------- /theme/assets/images/dataflow-diagram-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/dataflow-diagram-1.svg -------------------------------------------------------------------------------- /theme/assets/images/defense_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/defense_hero.jpg -------------------------------------------------------------------------------- /theme/assets/images/ecma_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/ecma_hero.jpg -------------------------------------------------------------------------------- /theme/assets/images/embedded-cbom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/embedded-cbom.svg -------------------------------------------------------------------------------- /theme/assets/images/embedded-saasbom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/embedded-saasbom.svg -------------------------------------------------------------------------------- /theme/assets/images/embedded-vdr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/embedded-vdr.svg -------------------------------------------------------------------------------- /theme/assets/images/embedded-vex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/embedded-vex.svg -------------------------------------------------------------------------------- /theme/assets/images/enterprise_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/enterprise_hero.jpg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/Annotations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/Annotations.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/Components.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/Components.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/Compositions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/Compositions.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/CycloneDX-Object-Type-Overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/CycloneDX-Object-Type-Overview.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/CycloneDX-Object-Type-Overview_with-Attestations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/CycloneDX-Object-Type-Overview_with-Attestations.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/Dependencies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/Dependencies.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/Extensions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/Extensions.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/Formulation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/Formulation.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/Lifecycles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/Lifecycles.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/Metadata.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/Metadata.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/Nested_Component_Data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/Nested_Component_Data.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/Services.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/Services.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/Vulnerabilities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/Vulnerabilities.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/advanced_sbom_process.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/advanced_sbom_process.jpg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/advanced_sbom_process.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/advanced_sbom_process.pdf -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/assemblies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/assemblies.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/bom-linking-boms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/bom-linking-boms.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/bom-tool-ladder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/bom-tool-ladder.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/dependency-graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/dependency-graph.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/identity-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/identity-tree.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/license.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/license.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/quality-dimensions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/quality-dimensions.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/recommended_sbom_process_lifecycles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/recommended_sbom_process_lifecycles.svg -------------------------------------------------------------------------------- /theme/assets/images/guides/SBOM/simple_sbom_process.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/guides/SBOM/simple_sbom_process.svg -------------------------------------------------------------------------------- /theme/assets/images/headshots/andrew-hoog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/andrew-hoog.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/asaf-karas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/asaf-karas.png -------------------------------------------------------------------------------- /theme/assets/images/headshots/brian-fox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/brian-fox.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/christopher-gates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/christopher-gates.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/dennis-roellke.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/dennis-roellke.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/guillaume-le-floch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/guillaume-le-floch.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/jan-kowalleck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/jan-kowalleck.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/jc-herz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/jc-herz.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/jeff-williams.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/jeff-williams.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/jerod-heck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/jerod-heck.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/jim-bugwadia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/jim-bugwadia.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/kayla-heard-rising.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/kayla-heard-rising.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/mark-sturdevant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/mark-sturdevant.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/matt-rutkowski.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/matt-rutkowski.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/meridith-greythorne.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/meridith-greythorne.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/niklas-düster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/niklas-düster.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/nilesh-thatte.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/nilesh-thatte.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/patrick-dwyer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/patrick-dwyer.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/philippe-ombredanne.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/philippe-ombredanne.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/priti-desai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/priti-desai.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/profile.png -------------------------------------------------------------------------------- /theme/assets/images/headshots/richard-lee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/richard-lee.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/robert-smigielski.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/robert-smigielski.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/ryan-searle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/ryan-searle.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/sambhav-kothari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/sambhav-kothari.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/sergey-khokhlov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/sergey-khokhlov.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/steve-springett.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/steve-springett.jpg -------------------------------------------------------------------------------- /theme/assets/images/headshots/vinod-anandan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/headshots/vinod-anandan.jpg -------------------------------------------------------------------------------- /theme/assets/images/hero-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/hero-header.png -------------------------------------------------------------------------------- /theme/assets/images/hero-subheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/hero-subheader.png -------------------------------------------------------------------------------- /theme/assets/images/high-level-object-model-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/high-level-object-model-small.svg -------------------------------------------------------------------------------- /theme/assets/images/high-level-object-model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/high-level-object-model.svg -------------------------------------------------------------------------------- /theme/assets/images/layout/logo-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/layout/logo-symbol.svg -------------------------------------------------------------------------------- /theme/assets/images/layout/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/layout/logo-white.svg -------------------------------------------------------------------------------- /theme/assets/images/layout/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/layout/logo.svg -------------------------------------------------------------------------------- /theme/assets/images/layout/owasp_logo_1c_notext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/layout/owasp_logo_1c_notext.svg -------------------------------------------------------------------------------- /theme/assets/images/license_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/license_hero.jpg -------------------------------------------------------------------------------- /theme/assets/images/logos/18f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/18f.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/adolus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/adolus.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/amass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/amass.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/anchore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/anchore.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/apiiro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/apiiro.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/aqua-trivy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/aqua-trivy.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/aquasec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/aquasec.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/armorcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/armorcode.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/arnica.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/arnica.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/blackberry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/blackberry.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/bloomberg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/bloomberg.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/buildpacks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/buildpacks.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/bytesafe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/bytesafe.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/cast-software.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/cast-software.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/chainguard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/chainguard.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/chainloop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/chainloop.png -------------------------------------------------------------------------------- /theme/assets/images/logos/checkmarx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/checkmarx.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/checkov.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/checkov.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/cisco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/cisco.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/cloudsmith.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/cloudsmith.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/cncf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/cncf.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/code-notary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/code-notary.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/contrast-security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/contrast-security.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/cybeats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/cybeats.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/cybellum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/cybellum.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/cybertest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/cybertest.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/debricked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/debricked.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/deepfence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/deepfence.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/defectdojo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/defectdojo.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/dependency-track.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/dependency-track.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/dkfm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/dkfm.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/ecma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/ecma.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/emba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/emba.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/endorlabs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/endorlabs.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/enso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/enso.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/finite-state.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/finite-state.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/flexera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/flexera.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/fortress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/fortress.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/fossa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/fossa.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/github.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/gitlab.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/google.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/goreleaser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/goreleaser.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/graalvm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/graalvm.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/grammatech.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/grammatech.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/grype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/grype.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/ibm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/ibm.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/intel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/intel.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/interlynk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/interlynk.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/ionchannel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/ionchannel.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/jdisc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/jdisc.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/jfrog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/jfrog.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/jupiterone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/jupiterone.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/ko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/ko.png -------------------------------------------------------------------------------- /theme/assets/images/logos/kondukto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/kondukto.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/ksoc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/ksoc.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/kubeclarity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/kubeclarity.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/kyverno.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/kyverno.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/lagoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/lagoon.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/leanix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/leanix.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/lockheed-martin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/lockheed-martin.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/manifest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/manifest.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/medcrypt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/medcrypt.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/medsec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/medsec.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/mend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/mend.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/mergebase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/mergebase.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/microfocus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/microfocus.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/netrise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/netrise.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/nexb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/nexb.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/nowsecure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/nowsecure.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/oligo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/oligo.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/openrewrite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/openrewrite.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/oracle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/oracle.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/ort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/ort.png -------------------------------------------------------------------------------- /theme/assets/images/logos/osv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/osv.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/owasp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/owasp.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/palo-alto-networks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/palo-alto-networks.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/qwiet-ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/qwiet-ai.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/rapidfort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/rapidfort.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/redhat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/redhat.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/reliableenergyanalytics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/reliableenergyanalytics.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/reliza.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/reliza.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/revenera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/revenera.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/reversing-labs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/reversing-labs.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/rezilion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/rezilion.png -------------------------------------------------------------------------------- /theme/assets/images/logos/rkvst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/rkvst.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/salus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/salus.png -------------------------------------------------------------------------------- /theme/assets/images/logos/sap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/sap.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/sbomify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/sbomify.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/scanoss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/scanoss.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/scribe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/scribe.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/secobserve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/secobserve.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/securestack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/securestack.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/semgrep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/semgrep.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/servicenow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/servicenow.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/sigstore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/sigstore.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/snyk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/snyk.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/sonarsource.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/sonarsource.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/sonatype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/sonatype.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/spack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/spack.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/stackaware.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/stackaware.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/syft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/syft.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/synopsys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/synopsys.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/sysdig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/sysdig.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/temurin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/temurin.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/tern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/tern.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/tidelift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/tidelift.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/timesys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/timesys.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/tivo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/tivo.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/trustsource.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/trustsource.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/vdoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/vdoo.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/veracode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/veracode.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/vmware.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/vmware.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/xperi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/xperi.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/xygeni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/xygeni.svg -------------------------------------------------------------------------------- /theme/assets/images/logos/zap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/logos/zap.svg -------------------------------------------------------------------------------- /theme/assets/images/mbom-sbom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/mbom-sbom.svg -------------------------------------------------------------------------------- /theme/assets/images/medical_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/medical_hero.jpg -------------------------------------------------------------------------------- /theme/assets/images/news/cloud_sec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/news/cloud_sec.png -------------------------------------------------------------------------------- /theme/assets/images/news/confluent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/news/confluent.png -------------------------------------------------------------------------------- /theme/assets/images/news/evolve.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/news/evolve.jpg -------------------------------------------------------------------------------- /theme/assets/images/news/machine-learning-transparency.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/news/machine-learning-transparency.jpg -------------------------------------------------------------------------------- /theme/assets/images/news/supply_chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/news/supply_chain.png -------------------------------------------------------------------------------- /theme/assets/images/news/transparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/news/transparency.png -------------------------------------------------------------------------------- /theme/assets/images/object-model/Annotations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/object-model/Annotations.svg -------------------------------------------------------------------------------- /theme/assets/images/object-model/Components.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/object-model/Components.svg -------------------------------------------------------------------------------- /theme/assets/images/object-model/Compositions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/object-model/Compositions.svg -------------------------------------------------------------------------------- /theme/assets/images/object-model/CycloneDX-Object-Type-Overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/object-model/CycloneDX-Object-Type-Overview.svg -------------------------------------------------------------------------------- /theme/assets/images/object-model/Data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/object-model/Data.svg -------------------------------------------------------------------------------- /theme/assets/images/object-model/Declarations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/object-model/Declarations.svg -------------------------------------------------------------------------------- /theme/assets/images/object-model/Definitions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/object-model/Definitions.svg -------------------------------------------------------------------------------- /theme/assets/images/object-model/Dependencies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/object-model/Dependencies.svg -------------------------------------------------------------------------------- /theme/assets/images/object-model/Extensions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/object-model/Extensions.svg -------------------------------------------------------------------------------- /theme/assets/images/object-model/Formulation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/object-model/Formulation.svg -------------------------------------------------------------------------------- /theme/assets/images/object-model/Metadata.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/object-model/Metadata.svg -------------------------------------------------------------------------------- /theme/assets/images/object-model/Services.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/object-model/Services.svg -------------------------------------------------------------------------------- /theme/assets/images/object-model/Vulnerabilities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/object-model/Vulnerabilities.svg -------------------------------------------------------------------------------- /theme/assets/images/obom-sbom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/obom-sbom.svg -------------------------------------------------------------------------------- /theme/assets/images/saasbom-sbom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/saasbom-sbom.svg -------------------------------------------------------------------------------- /theme/assets/images/sources/CycloneDX-Object-Model-Swimlane.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/sources/CycloneDX-Object-Model-Swimlane.afdesign -------------------------------------------------------------------------------- /theme/assets/images/sources/VDR+VEX-BOM-Cascade.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/sources/VDR+VEX-BOM-Cascade.afdesign -------------------------------------------------------------------------------- /theme/assets/images/sources/embedded-saasbom.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/sources/embedded-saasbom.afdesign -------------------------------------------------------------------------------- /theme/assets/images/sources/embedded-vdr.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/sources/embedded-vdr.afdesign -------------------------------------------------------------------------------- /theme/assets/images/sources/embedded-vex.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/sources/embedded-vex.afdesign -------------------------------------------------------------------------------- /theme/assets/images/sources/obom-sbom.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/sources/obom-sbom.afdesign -------------------------------------------------------------------------------- /theme/assets/images/sources/saasbom-sbom.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/sources/saasbom-sbom.afdesign -------------------------------------------------------------------------------- /theme/assets/images/sources/tiles.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/sources/tiles.afdesign -------------------------------------------------------------------------------- /theme/assets/images/sources/vdrbom.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/sources/vdrbom.afdesign -------------------------------------------------------------------------------- /theme/assets/images/sources/vexbom.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/sources/vexbom.afdesign -------------------------------------------------------------------------------- /theme/assets/images/standardization-workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/standardization-workflow.svg -------------------------------------------------------------------------------- /theme/assets/images/standardization-working-model-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/standardization-working-model-1.svg -------------------------------------------------------------------------------- /theme/assets/images/standardization-working-model-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/standardization-working-model-2.svg -------------------------------------------------------------------------------- /theme/assets/images/vdrbom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/vdrbom.svg -------------------------------------------------------------------------------- /theme/assets/images/vexbom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/images/vexbom.svg -------------------------------------------------------------------------------- /theme/assets/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/js/scripts.js -------------------------------------------------------------------------------- /theme/assets/js/scripts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/js/scripts.min.js -------------------------------------------------------------------------------- /theme/assets/js/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/js/tools.js -------------------------------------------------------------------------------- /theme/assets/js/vendor/bootstrap/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/js/vendor/bootstrap/affix.js -------------------------------------------------------------------------------- /theme/assets/js/vendor/bootstrap/affix.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/js/vendor/bootstrap/affix.min.js -------------------------------------------------------------------------------- /theme/assets/js/vendor/bootstrap/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/js/vendor/bootstrap/scrollspy.js -------------------------------------------------------------------------------- /theme/assets/js/vendor/bootstrap/scrollspy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/js/vendor/bootstrap/scrollspy.min.js -------------------------------------------------------------------------------- /theme/assets/js/vendor/jquery-3.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/js/vendor/jquery-3.5.1.min.js -------------------------------------------------------------------------------- /theme/assets/js/vendor/jquery.easing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/js/vendor/jquery.easing.min.js -------------------------------------------------------------------------------- /theme/assets/js/vendor/jquery.inview.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/js/vendor/jquery.inview.min.js -------------------------------------------------------------------------------- /theme/assets/js/vendor/matchHeight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/js/vendor/matchHeight.js -------------------------------------------------------------------------------- /theme/assets/js/vendor/matchHeight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/js/vendor/matchHeight.min.js -------------------------------------------------------------------------------- /theme/assets/js/working-groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/theme/assets/js/working-groups.js -------------------------------------------------------------------------------- /tool-center/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/tool-center/index.md -------------------------------------------------------------------------------- /update_contributors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/update_contributors.py -------------------------------------------------------------------------------- /use-cases/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx.org-archived/HEAD/use-cases/index.md --------------------------------------------------------------------------------