├── .github └── workflows │ └── gh-pages-deploy.yml ├── .gitignore ├── .reuse └── dep5 ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSES └── Apache-2.0.txt ├── README.md ├── package.json ├── public └── index.html ├── references-template.json └── src ├── App.js ├── app.css ├── components ├── attacksearchbar │ └── AttackSearchbar.jsx ├── legend │ └── Legend.jsx ├── modal │ ├── Modal.jsx │ └── modal.css ├── safeguardsearchbar │ └── SafeguardSearchbar.jsx ├── sidebar │ ├── Sidebar.jsx │ ├── SidebarData.js │ └── sidebar.css ├── taxonomy │ ├── Taxonomy.jsx │ └── taxonomy.css └── topbar │ ├── Topbar.jsx │ └── topbar.css ├── data ├── attackvectors.json ├── references.json ├── safeguards.json └── taxonomy.json ├── images ├── AttackTreeExample-modified.png ├── AttackTreeExample.png ├── OSS-SuppChainModel-FMC-modified.png ├── OSS-SuppChainModel-FMC.png ├── SAP_R_grad_scrn.png ├── assuremoss_logo.png ├── attackgraph.svg └── sparta-logo.png ├── index.js └── pages ├── attacktree ├── Attacktree.jsx └── attacktree.css ├── attackvectors ├── Attackvectors.jsx └── attackvectors.css ├── documentation ├── Documentation.jsx └── documentation.css ├── home ├── Home.jsx └── home.css ├── references ├── References.jsx └── references.css └── safeguards ├── Safeguards.jsx └── safeguards.css /.github/workflows/gh-pages-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/.github/workflows/gh-pages-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/.gitignore -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/public/index.html -------------------------------------------------------------------------------- /references-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/references-template.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/App.js -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- 1 | .container{ 2 | display: flex; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /src/components/attacksearchbar/AttackSearchbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/components/attacksearchbar/AttackSearchbar.jsx -------------------------------------------------------------------------------- /src/components/legend/Legend.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/components/legend/Legend.jsx -------------------------------------------------------------------------------- /src/components/modal/Modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/components/modal/Modal.jsx -------------------------------------------------------------------------------- /src/components/modal/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/components/modal/modal.css -------------------------------------------------------------------------------- /src/components/safeguardsearchbar/SafeguardSearchbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/components/safeguardsearchbar/SafeguardSearchbar.jsx -------------------------------------------------------------------------------- /src/components/sidebar/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/components/sidebar/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/sidebar/SidebarData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/components/sidebar/SidebarData.js -------------------------------------------------------------------------------- /src/components/sidebar/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/components/sidebar/sidebar.css -------------------------------------------------------------------------------- /src/components/taxonomy/Taxonomy.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/components/taxonomy/Taxonomy.jsx -------------------------------------------------------------------------------- /src/components/taxonomy/taxonomy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/components/taxonomy/taxonomy.css -------------------------------------------------------------------------------- /src/components/topbar/Topbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/components/topbar/Topbar.jsx -------------------------------------------------------------------------------- /src/components/topbar/topbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/components/topbar/topbar.css -------------------------------------------------------------------------------- /src/data/attackvectors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/data/attackvectors.json -------------------------------------------------------------------------------- /src/data/references.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/data/references.json -------------------------------------------------------------------------------- /src/data/safeguards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/data/safeguards.json -------------------------------------------------------------------------------- /src/data/taxonomy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/data/taxonomy.json -------------------------------------------------------------------------------- /src/images/AttackTreeExample-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/images/AttackTreeExample-modified.png -------------------------------------------------------------------------------- /src/images/AttackTreeExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/images/AttackTreeExample.png -------------------------------------------------------------------------------- /src/images/OSS-SuppChainModel-FMC-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/images/OSS-SuppChainModel-FMC-modified.png -------------------------------------------------------------------------------- /src/images/OSS-SuppChainModel-FMC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/images/OSS-SuppChainModel-FMC.png -------------------------------------------------------------------------------- /src/images/SAP_R_grad_scrn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/images/SAP_R_grad_scrn.png -------------------------------------------------------------------------------- /src/images/assuremoss_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/images/assuremoss_logo.png -------------------------------------------------------------------------------- /src/images/attackgraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/images/attackgraph.svg -------------------------------------------------------------------------------- /src/images/sparta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/images/sparta-logo.png -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/attacktree/Attacktree.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/pages/attacktree/Attacktree.jsx -------------------------------------------------------------------------------- /src/pages/attacktree/attacktree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/pages/attacktree/attacktree.css -------------------------------------------------------------------------------- /src/pages/attackvectors/Attackvectors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/pages/attackvectors/Attackvectors.jsx -------------------------------------------------------------------------------- /src/pages/attackvectors/attackvectors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/pages/attackvectors/attackvectors.css -------------------------------------------------------------------------------- /src/pages/documentation/Documentation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/pages/documentation/Documentation.jsx -------------------------------------------------------------------------------- /src/pages/documentation/documentation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/pages/documentation/documentation.css -------------------------------------------------------------------------------- /src/pages/home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/pages/home/Home.jsx -------------------------------------------------------------------------------- /src/pages/home/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/pages/home/home.css -------------------------------------------------------------------------------- /src/pages/references/References.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/pages/references/References.jsx -------------------------------------------------------------------------------- /src/pages/references/references.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/pages/references/references.css -------------------------------------------------------------------------------- /src/pages/safeguards/Safeguards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/pages/safeguards/Safeguards.jsx -------------------------------------------------------------------------------- /src/pages/safeguards/safeguards.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP/risk-explorer-for-software-supply-chains/HEAD/src/pages/safeguards/safeguards.css --------------------------------------------------------------------------------