Skip to content

chains-project/sbom.exe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b1f1ac5 · Mar 13, 2024
Mar 13, 2024
Mar 13, 2024
Jul 21, 2023
Mar 13, 2024
Mar 13, 2024
Mar 13, 2024
Aug 28, 2023
Aug 22, 2023
Jul 14, 2023
Mar 13, 2024
Mar 13, 2024
Mar 13, 2024
Mar 13, 2024
Jul 14, 2023

Repository files navigation

sbom.exe

tests

A tool to illustrate termination of Java virtual machine if a prohibited method is invoked. Checkout the README on that branch for instructions.

Visualization of the codebase

Project structure

The project has two concepts - generating fingerprints and watching for prohibited classes.

Generation of fingerprints

The fingerprints are generated using the classfile-fingerprint CLI.

It has three subcommands. All the commands take in the following parameters:

Required Parameters

Parameter Type Description
output or input File Path to index file. output will create a
new file. input will merge the indices.
  1. jdk: Generate fingerprints for JDK classes. |

  2. supply-chain: Generate fingerprints for all the dependencies captured in the SBOM.

    • Required Parameters

      Parameter Type Description
      sbom File Path to the sbom file.

      sbom could be CycloneDX 1.4 or 1.5 JSON document.

  3. runtime: Generate fingerprints for all the classes loaded at runtime.

    • Required Parameters

      Parameter Type Description
      project File Path to the project.
      executable-jar-module String The module
      (artifactID)that generates the executable jar.
    • Optional Parameters

      Parameter Type Description
      cleanup File Delete the temporary project after the process.

Watching for prohibited classes

The watchdog-agent is a Java agent that watches for prohibited classes.

It takes in the following parameters:

Required Parameters

Parameter Type Description
sbom File Path to the index file.

Optional Parameters

Parameter Type Description
skipShutdown boolean If true, the JVM will not shutdown if a prohibited class is loaded. Default: false.