Skip to main content

Hoppr plugin to generate an OpenSSF scorecard

Project description

Hoppr OpenSSF Scorecard Plugin

Plugin for Hoppr to populate component metadata in a CycloneDX Software Bill of Materials (SBOM) with data from OpenSSF Scorecard.

How to use this plugin

Get a Libraries.io API key

In order to use this plugin, an API key from Libraries.io is required.

Once you have this API key, you can provide it to the plugin in one of the following ways:

  • Set the LIBRARIES_API_KEY environment variable in the shell before running Hoppr

    export LIBRARIES_API_KEY="<your key here>"
    
  • Create a Hoppr credentials file with an entry for https://libraries.io/api and an environment variable of your choosing that holds the value of the API key

    ---
    schemaVersion: v1
    kind: Credentials
    
    credential_required_services:
      - url: https://libraries.io/api
        user: ""
        pass_env: API_KEY_ENV_VAR
    

Create a transfer file

A Hoppr transfer file defines the stages to be run and which plugins will be run in those stages.

Create a transfer file that defines a stage with this plugin (identified by hoppr_openssf_scorecard.plugin) specified. For example:

---
schemaVersion: v1
kind: Transfer

stages:
  ScorecardData:
    plugins:
      - name: hoppr_openssf_scorecard.plugin
  Bundle:
    plugins:
      - name: hoppr.core_plugins.bundle_tar
        config:
          tarfile_name: tarfile.tar.gz

max_processes: 10

Run Hoppr

That's everything! Run hopctl bundle as normal and the SBOM with Scorecard data will be located in the specified bundle file.

How does it work?

Get the source control repository URL

Various API endpoints are leveraged in an attempt to retrieve a component's source control repository URL in order to request a Scorecard report.

First, a REST API or well-known metadata URL for the package manager specific to the PURL type of the component is tried.

PURL Type URL Endpoint(s)
deb https://sources.debian.org/api for Debian, https://api.launchpad.net/1.0 for Ubuntu
gem https://rubygems.org/api/v1
git Searches both https://api.github.com and https://gitlab.com/api/v4
golang First https://proxy.golang.org, then https://libraries.io/api/Go if not found
helm https://artifacthub.io/api/v1/packages/helm
maven First, https://search.maven.org/remotecontent, then https://libraries.io/api/Maven if not found
npm https://registry.npmjs.com
pypi https://pypi.org/pypi
rpm Repository metadata from either rpm repositories defined in the manifest file, or sensible defaults.

These are the defaults for RPM components if not provided.

Distribution Metadata URL
Red Hat 7 http://mirror.centos.org/centos/7/os/x86_64
http://mirror.centos.org/centos/7/extras/x86_64
Red Hat/Rocky Linux 8 https://dl.rockylinux.org/pub/rocky/8/AppStream/x86_64/os
https://dl.rockylinux.org/pub/rocky/8/BaseOS/x86_64/os
https://dl.rockylinux.org/pub/rocky/8/PowerTools/x86_64/os
https://dl.rockylinux.org/pub/rocky/8/extras/x86_64/os
Red Hat/Rocky Linux 9 https://dl.rockylinux.org/pub/rocky/9/AppStream/x86_64/os
https://dl.rockylinux.org/pub/rocky/9/BaseOS/x86_64/os
https://dl.rockylinux.org/pub/rocky/9/CRB/x86_64/os
https://dl.rockylinux.org/pub/rocky/9/extras/x86_64/os
Fedora https://dl.fedoraproject.org/pub/fedora/linux/releases/<Fedora release>/Everything/x86_64/os

If a source control repository isn't found this way, the next attempt is to search Libraries.io and try to narrow down and intuit the correct repo URL from the results.

Finally, as a last-ditch effort, the GitHub API is queried in a similar fashion. If no repository URL is found by this point, the component is skipped and the plugin will move on to the next one.

If a repository URL was found during any of these passes, it gets added to the SBOM compoment's externalReferences as a URL with a type of vcs.

Request the report data from Scorecard API

For components that have a vcs repository URL (whether identified as outlined in the previous section or explicitly defined in the SBOM), a request is made to the OpenSSF Scorecard API using that project URL.

The response data is then used to populate the SBOM according to the taxonomy outlined below.

SBOM property taxonomy

Properties generated by this plugin consist of a name prefixed with hoppr:scorecard and a value corresponding to the associated Scorecard field.

Name Description
hoppr:scorecard:date Date of the Scorecard report
hoppr:scorecard:metadata Metadata for the Scorecard report
hoppr:scorecard:repo:commit Commit ref/SHA the report was run on
hoppr:scorecard:repo:name Name of the repository
hoppr:scorecard:score Aggregate score for all checks
hoppr:scorecard:scorecard:commit Commit ref/SHA of Scorecard used to generate the report
hoppr:scorecard:scorecard:version Version of Scorecard used to generate the report
hoppr:scorecard:check:Binary-Artifacts Score for the Binary-Artifacts check
hoppr:scorecard:check:Branch-Protection Score for the Branch-Protection check
hoppr:scorecard:check:CI-Tests Score for the CI-Tests check
hoppr:scorecard:check:CII-Best-Practices Score for the CII-Best-Practices check
hoppr:scorecard:check:Code-Review Score for the Code-Review check
hoppr:scorecard:check:Contributors Score for the Contributors check
hoppr:scorecard:check:Dangerous-Workflow Score for the Dangerous-Workflow check
hoppr:scorecard:check:Dependency-Update-Tool Score for the Dependency-Update-Tool check
hoppr:scorecard:check:Fuzzing Score for the Fuzzing check
hoppr:scorecard:check:License Score for the License check
hoppr:scorecard:check:Maintained Score for the Maintained check
hoppr:scorecard:check:Packaging Score for the Packaging check
hoppr:scorecard:check:Pinned-Dependencies Score for the Pinned-Dependencies check
hoppr:scorecard:check:SAST Score for the SAST check
hoppr:scorecard:check:Security-Policy Score for the Security-Policy check
hoppr:scorecard:check:Signed-Releases Score for the Signed-Releases check
hoppr:scorecard:check:Token-Permissions Score for the Token-Permissions check
hoppr:scorecard:check:Vulnerabilities Score for the Vulnerabilities check
hoppr:scorecard:check:Webhooks Score for the Webhooks check

For descriptions of all the checks performed by Scorecard, see this table.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hoppr_openssf_scorecard-0.0.2.tar.gz (21.4 kB view details)

Uploaded Source

Built Distribution

hoppr_openssf_scorecard-0.0.2-py3-none-any.whl (30.1 kB view details)

Uploaded Python 3

File details

Details for the file hoppr_openssf_scorecard-0.0.2.tar.gz.

File metadata

  • Download URL: hoppr_openssf_scorecard-0.0.2.tar.gz
  • Upload date:
  • Size: 21.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.13 Linux/5.4.109+

File hashes

Hashes for hoppr_openssf_scorecard-0.0.2.tar.gz
Algorithm Hash digest
SHA256 078383a76525efa19118faa977bdfdde298c882b24e3183c3f064ae9a608df9d
MD5 febb3d3de1f619dff73bb18444a0361c
BLAKE2b-256 eb77b1b0c206c7ad78045449f823b43e4b63972d06be35d1387f55a173b59b3c

See more details on using hashes here.

File details

Details for the file hoppr_openssf_scorecard-0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for hoppr_openssf_scorecard-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c5ddecdd148a4eb13c35ca86c81f34c05afb147a99ee7d4d4455986e723a9fc7
MD5 2d0f2ccffcec96e16d879c5f47c7530b
BLAKE2b-256 fb831ab13c58437380e519bcb6faf57b80f552fe39726acd705c470fcdbb977f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page