Software Component Verification Standard (SCVS) https://owasp.org/scvs https://github.com/OWASP/Software-Component-Verification-Standard/releases/download/1.0/OWASP_SCVS-1.0-en.pdf
- V1: Inventory
- V2: Software Bill of Materials (SBOM)
- V3: Build Environment
- V4: Package Management
- V5: Component Analysis
- V6: Pedigree and Provenance
The Industry Standard for Open Source Compliance https://www.openchainproject.org/ https://wiki.linuxfoundation.org/_media/openchain/openchainspec-2.0.pdf https://github.com/OpenChain-Project/curriculum/raw/master/slides/openchain-curriculum-for-2-0.pdf
CycloneDX is a lightweight software bill-of-material (SBOM) specification designed for use in application security contexts and supply chain component analysis. https://cyclonedx.org/
The Software Package Data Exchange (SPDX) https://spdx.dev/specifications/
Have a few examples of tools that have/are being used at https://github.com/Hack23/cia.
-
Maven plugins Free, manual configuration and reports per project
-
Sonarqube plugin Free, global configuration and reports per project.
-
FOSSA Commercial(Free for open source), global configuration and reports per project.
-
Copilot Blackduck Commercial(Free for open source), global configuration and reports per project.
https://hack23.github.io/cia/third-party-report.html Dependencies https://hack23.github.io/cia/dependencies.html
Good to publish bom:s to maven repository using https://github.com/CycloneDX/cyclonedx-maven-plugin
Resolve projects with missing license information : https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/src/license/THIRD-PARTY.properties
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.0.0</version>
<configuration>
<excludedScopes>test</excludedScopes>
<useMissingFile>true</useMissingFile>
<includedLicenses>
<includedLicense>Public Domain</includedLicense>
<includedLicense>GNU Lesser General Public Licence (LGPL)</includedLicense>
<includedLicense>GNU General Lesser Public License (LGPL) version 2.0</includedLicense>
<includedLicense>GNU General Lesser Public License (LGPL) version 2.1</includedLicense>
<includedLicense>GNU General Lesser Public License (LGPL) version 3.0</includedLicense>
<includedLicense>The Apache Software License, Version 2.0</includedLicense>
<includedLicense>The Apache Software License</includedLicense>
<includedLicense>Eclipse Public License - Version 1.0</includedLicense>
<includedLicense>CDDL+GPL License</includedLicense>
<includedLicense>Common Development and Distribution License (CDDL) version 1.0</includedLicense>
<includedLicense>Common Development and Distribution License (CDDL) version 1.1</includedLicense>
<includedLicense>GNU General Public License, version 2,with the Classpath Exception</includedLicense>
<includedLicense>CDDL + GPLv2 with classpath exception</includedLicense>
<includedLicense>Bouncy Castle Licence</includedLicense>
<includedLicense>New BSD License</includedLicense>
<includedLicense>The BSD License</includedLicense>
<includedLicense>BSD-like</includedLicense>
<includedLicense>Common Public License</includedLicense>
<includedLicense>Do What the Fuck You Want to Public License</includedLicense>
<includedLicense>The JSON License</includedLicense>
<includedLicense>The MIT License</includedLicense>
<includedLicense>Mozilla Public License Version 1.1</includedLicense>
<includedLicense>Mozilla Public License Version 2.0</includedLicense>
<includedLicense>Indiana University Extreme! Lab Software License, vesion 1.1.1</includedLicense>
<includedLicense>BSD style</includedLicense>
<includedLicense>Eclipse Distribution License (EDL), Version 1.0</includedLicense>
<includedLicense>Similar to Apache License but with the acknowledgment clause removed</includedLicense>
<includedLicense>The W3C Software License</includedLicense>
<includedLicense>W3C Software Copyright Notice and License</includedLicense>
</includedLicenses>
<licenseMerges>
<licenseMerge>GNU General Public License, version 2,with the Classpath Exception|GPLv2+CE|GPL2 w/ CPE|GNU General Public License, Version 2 with the Classpath Exception</licenseMerge>
<licenseMerge>Common Public License|CPL</licenseMerge>
<licenseMerge>Do What the Fuck You Want to Public License|WTFPL</licenseMerge>
<licenseMerge>GNU Lesser General Public Licence (LGPL)|GNU Lesser General Public Licence|Lesser General Public License (LGPL)|GNU LESSER GENERAL PUBLIC LICENSE|GNU Lesser General Public License|LGPL</licenseMerge>
<licenseMerge>GNU General Lesser Public License (LGPL) version 2.1|LGPL 2.1|GNU Lesser General Public License, Version 2.1</licenseMerge>
<licenseMerge>The Apache Software License, Version 2.0|Apache License 2.0|Apache 2|Apache License, Version 2.0|Apache 2.0|Apache Software License - Version 2.0|Apache License, version 2.0|Apache License Version 2.0|ASF 2.0|AL 2.0</licenseMerge>
<licenseMerge>The Apache Software License|Apache Software Licenses|ASL</licenseMerge>
<licenseMerge>Eclipse Public License - Version 1.0|Eclipse Public License - v 1.0|Eclipse Public License (EPL), Version 1.0|Eclipse Public License 1.0</licenseMerge>
<licenseMerge>Common Development and Distribution License (CDDL) version 1.0|Common Development and Distribution License (CDDL) v1.0|COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0|CDDL|Common Development and Distribution License</licenseMerge>
<licenseMerge>Common Development and Distribution License (CDDL) version 1.1|CDDL 1.1</licenseMerge>
<licenseMerge>The BSD License|BSD|BSD licence|BSD License</licenseMerge>
<licenseMerge>Mozilla Public License Version 1.1|MPL 1.1</licenseMerge>
<licenseMerge>The MIT License|MIT License|MIT license</licenseMerge>
<licenseMerge>BSD style|dom4j|BSD-Style|BSD-Style License</licenseMerge>
</licenseMerges>
<failIfWarning>true</failIfWarning>
</configuration>
</plugin>
https://github.com/porscheinformatik/sonarqube-licensecheck
https://app.fossa.io/projects/git%2Bgithub.com%2FHack23%2Fcia?ref=badge_large
- fossa init
- fossa analyze
##Report https://copilot.blackducksoftware.com/github/repos/Hack23/cia/branches/master
##Config
- bash <(curl -s https://copilot.blackducksoftware.com/ci/travis/scripts/upload)