-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add support for new SSC 23.2 download SBOM feature
- Loading branch information
Showing
7 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
parserType=debricked |
1 change: 1 addition & 0 deletions
1
fortify-ssc-23.2+-parser-debricked-cyclonedx/sampleData/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Please see [Debricked sampleData](../../sampleData/debricked) in the main project directory. |
Binary file added
BIN
+551 Bytes
...c-23.2+-parser-debricked-cyclonedx/src/main/resources/images/debricked-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+23 KB
...c-23.2+-parser-debricked-cyclonedx/src/main/resources/images/debricked-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions
31
fortify-ssc-23.2+-parser-debricked-cyclonedx/src/main/resources/plugin.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<plugin xmlns="xmlns://www.fortify.com/schema/pluginmanifest-1.1.xsd" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="PluginDescriptor" | ||
id="com.fortify.ssc.parser.cyclonedx.debricked" api-version="1.2"> | ||
<plugin-info> | ||
<name>Debricked parser plugin for SSC 23.2+</name> | ||
<version><!--VERSION-->0.0<!--/VERSION--></version> | ||
<data-version>1</data-version> | ||
<vendor name="Micro Focus" url="https://www.microfocus.com"/> | ||
<description>Parser plugin for Debricked vulnerability data in CycloneDX format (results shown on SSC Audit and Open Source pages)</description> | ||
<resources> | ||
<localization> | ||
<language id="default" location="/resources/cyclonedx_en.properties"/> | ||
<language id="en" location="/resources/cyclonedx_en.properties"/> | ||
</localization> | ||
<images> | ||
<image imageType="icon" location="/images/debricked-icon.png"/> | ||
<image imageType="logo" location="/images/debricked-logo.png"/> | ||
</images> | ||
</resources> | ||
</plugin-info> | ||
<issue-parser xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<engine-type>DEBRICKED</engine-type> | ||
<supported-engine-versions>[1.2, 1.4]</supported-engine-versions> | ||
<view-template location="/viewtemplate/ViewTemplate.json"> | ||
<description>Default CycloneDX vulnerability view template.</description> | ||
</view-template> | ||
<parser-type>DEPENDENCY_SCAN</parser-type> | ||
</issue-parser> | ||
</plugin> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
rootProject.name = 'fortify-ssc-parser-debricked-cyclonedx' | ||
include 'fortify-ssc-parser-debricked-cyclonedx' | ||
include 'fortify-ssc-22.2+-parser-debricked-cyclonedx' | ||
include 'fortify-ssc-23.2+-parser-debricked-cyclonedx' |