Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions components/producers/modelscan/examples/input.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{
"modelscan_version": "0.5.0",
"timestamp": "2024-01-25T17:56:00.855056",
"input_path": "/Users/mehrinkiani/Documents/modelscan/notebooks/XGBoostModels/unsafe_model.pkl",
"total_issues": 1,
"summary": {
"total_issues_by_severity": {
"LOW": 0,
"MEDIUM": 0,
"HIGH": 0,
"CRITICAL": 1
}
},
"issues_by_severity": {
"CRITICAL": [
{
"description": "Use of unsafe operator 'system' from module 'posix'",
"operator": "system",
"module": "posix",
"source": "/Users/mehrinkiani/Documents/modelscan/notebooks/XGBoostModels/unsafe_model.pkl",
"scanner": "modelscan.scanners.PickleUnsafeOpScan"
}
],
"MEDIUM": [
{
"description": "Use of unsafe operator 'system' from module 'posix'",
"operator": "system",
"module": "posix",
"source": "/Users/mehrinkiani/Documents/modelscan/notebooks/XGBoostModels/unsafe_model.pkl",
"scanner": "modelscan.scanners.PickleUnsafeOpScan"
}
],
"HIGH": [
{
"description": "Use of unsafe operator 'system' from module 'posix'",
"operator": "system",
"module": "posix",
"source": "/Users/mehrinkiani/Documents/modelscan/notebooks/XGBoostModels/unsafe_model.pkl",
"scanner": "modelscan.scanners.PickleUnsafeOpScan"
}
],
"LOW": [
{
"description": "Use of unsafe operator 'system' from module 'posix'",
"operator": "system",
"module": "posix",
"source": "/Users/mehrinkiani/Documents/modelscan/notebooks/XGBoostModels/unsafe_model.pkl",
"scanner": "modelscan.scanners.PickleUnsafeOpScan"
}
]
},
"errors": [],
"scanned": {
"total_scanned": 4,
"scanned_files": [
"/Users/mehrinkiani/Documents/modelscan/notebooks/XGBoostModels/unsafe_model.pkl"
]
}
}
6 changes: 6 additions & 0 deletions components/producers/modelscan/examples/modelscan.pb
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

 ¢Í™¸í–ž²gosecë
O/Users/mehrinkiani/Documents/modelscan/notebooks/XGBoostModels/unsafe_model.pkl%modelscan.scanners.PickleUnsafeOpScan3Use of unsafe operator 'system' from module 'posix':3Use of unsafe operator 'system' from module 'posix'Bunknownë
O/Users/mehrinkiani/Documents/modelscan/notebooks/XGBoostModels/unsafe_model.pkl%modelscan.scanners.PickleUnsafeOpScan3Use of unsafe operator 'system' from module 'posix':3Use of unsafe operator 'system' from module 'posix'Bunknownë
O/Users/mehrinkiani/Documents/modelscan/notebooks/XGBoostModels/unsafe_model.pkl%modelscan.scanners.PickleUnsafeOpScan3Use of unsafe operator 'system' from module 'posix':3Use of unsafe operator 'system' from module 'posix'Bunknownë
O/Users/mehrinkiani/Documents/modelscan/notebooks/XGBoostModels/unsafe_model.pkl%modelscan.scanners.PickleUnsafeOpScan3Use of unsafe operator 'system' from module 'posix':3Use of unsafe operator 'system' from module 'posix'Bunknown
110 changes: 110 additions & 0 deletions components/producers/modelscan/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
package main

import (
"encoding/json"
"log"
"log/slog"

v1 "github.com/ocurity/dracon/api/proto/v1"

"github.com/ocurity/dracon/components/producers"
)

func main() {
if err := producers.ParseFlags(); err != nil {
log.Fatal(err)
}

inFile, err := producers.ReadInFile()
if err != nil {
log.Fatal(err)
}

var results ModelScanOut
if err := json.Unmarshal(inFile, &results); err != nil {
log.Fatal(err)
}

issues, err := parseIssues(&results)
if err != nil {
log.Fatal(err)
}
if err := producers.WriteDraconOut(
"modelscan",
issues,
); err != nil {
log.Fatal(err)
}
}

func parseIssues(out *ModelScanOut) ([]*v1.Issue, error) {
issues := make([]*v1.Issue, 0, len(out.Issues))
slog.Info("found Critical issues", slog.Int("numCrit", out.Summary.TotalIssuesBySeverity.Critical))
slog.Info("found High issues", slog.Int("numCrit", out.Summary.TotalIssuesBySeverity.High))
slog.Info("found Medium issues", slog.Int("numCrit", out.Summary.TotalIssuesBySeverity.Medium))
slog.Info("found Low issues", slog.Int("numCrit", out.Summary.TotalIssuesBySeverity.Low))
for _, issue := range out.Issues {
issues = append(issues,
&v1.Issue{
Target: "file:///" + issue.Source,
Type: issue.Scanner,
Description: issue.Description,
Title: issue.Description,
Severity: modelScanSeverityToDracon(issue.Severity),
Confidence: v1.Confidence_CONFIDENCE_UNSPECIFIED,
})
}
return issues, nil
}

func modelScanSeverityToDracon(severity string) v1.Severity {
switch severity {
case "CRITICAL":
return v1.Severity_SEVERITY_CRITICAL
case "HIGH":
return v1.Severity_SEVERITY_HIGH
case "MEDIUM":
return v1.Severity_SEVERITY_MEDIUM
case "LOW":
return v1.Severity_SEVERITY_LOW
default:
return v1.Severity_SEVERITY_UNSPECIFIED
}
}

type ModelScanOut struct {
Summary ModelScanSummary `json:"summary,omitempty"`
Issues []ModelScanIssue `json:"issues,omitempty"`
Errors []any `json:"errors,omitempty"`
}

type ModelScanIssue struct {
Description string `json:"description,omitempty"`
Operator string `json:"operator,omitempty"`
Module string `json:"module,omitempty"`
Source string `json:"source,omitempty"`
Scanner string `json:"scanner,omitempty"`
Severity string `json:"severity,omitempty"`
}

type ModelScanSummary struct {
TotalIssuesBySeverity TotalIssuesBySeverity `json:"total_issues_by_severity,omitempty"`
TotalIssues int `json:"total_issues,omitempty"`
InputPath string `json:"input_path,omitempty"`
AbsolutePath string `json:"absolute_path,omitempty"`
ModelscanVersion string `json:"modelscan_version,omitempty"`
Timestamp string `json:"timestamp,omitempty"`
Scanned Scanned `json:"scanned,omitempty"`
}

type TotalIssuesBySeverity struct {
Low int `json:"LOW,omitempty"`
Medium int `json:"MEDIUM,omitempty"`
High int `json:"HIGH,omitempty"`
Critical int `json:"CRITICAL,omitempty"`
}

type Scanned struct {
TotalScanned int `json:"total_scanned,omitempty"`
ScannedFiles []string `json:"scanned_files,omitempty"`
}
109 changes: 109 additions & 0 deletions components/producers/modelscan/main_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
package main

import (
"encoding/json"
"testing"

v1 "github.com/ocurity/dracon/api/proto/v1"

"github.com/stretchr/testify/require"
)

func TestParseIssues(t *testing.T) {
var results ModelScanOut
err := json.Unmarshal([]byte(modelScanOut), &results)
require.NoError(t, err)

issues, err := parseIssues(&results)
require.NoError(t, err)
expectedIssue := []*v1.Issue{

{
Target: "/Users/mehrinkiani/Documents/modelscan/notebooks/XGBoostModels/unsafe_model.pkl",
Type: "modelscan.scanners.PickleUnsafeOpScan",
Title: "Use of unsafe operator 'system' from module 'posix'",
Description: "Use of unsafe operator 'system' from module 'posix'",
},
{
Target: "/Users/mehrinkiani/Documents/modelscan/notebooks/XGBoostModels/unsafe_model.pkl",
Type: "modelscan.scanners.PickleUnsafeOpScan",
Title: "Use of unsafe operator 'system' from module 'posix'",
Description: "Use of unsafe operator 'system' from module 'posix'",
},
{
Target: "/Users/mehrinkiani/Documents/modelscan/notebooks/XGBoostModels/unsafe_model.pkl",
Type: "modelscan.scanners.PickleUnsafeOpScan",
Title: "Use of unsafe operator 'system' from module 'posix'",
Description: "Use of unsafe operator 'system' from module 'posix'",
},
{
Target: "/Users/mehrinkiani/Documents/modelscan/notebooks/XGBoostModels/unsafe_model.pkl",
Type: "modelscan.scanners.PickleUnsafeOpScan",
Title: "Use of unsafe operator 'system' from module 'posix'",
Description: "Use of unsafe operator 'system' from module 'posix'",
},
}

require.Equal(t, expectedIssue, issues)
}

const modelScanOut = `{
"modelscan_version": "0.5.0",
"timestamp": "2024-01-25T17:56:00.855056",
"input_path": "/Users/mehrinkiani/Documents/modelscan/notebooks/XGBoostModels/unsafe_model.pkl",
"total_issues": 4,
"summary": {
"total_issues_by_severity": {
"LOW": 1,
"MEDIUM": 1,
"HIGH": 1,
"CRITICAL": 1
}
},
"issues_by_severity": {
"CRITICAL": [
{
"description": "Use of unsafe operator 'system' from module 'posix'",
"operator": "system",
"module": "posix",
"source": "/Users/mehrinkiani/Documents/modelscan/notebooks/XGBoostModels/unsafe_model.pkl",
"scanner": "modelscan.scanners.PickleUnsafeOpScan"
}
],
"MEDIUM": [
{
"description": "Use of unsafe operator 'system' from module 'posix'",
"operator": "system",
"module": "posix",
"source": "/Users/mehrinkiani/Documents/modelscan/notebooks/XGBoostModels/unsafe_model.pkl",
"scanner": "modelscan.scanners.PickleUnsafeOpScan"
}
],
"HIGH": [
{
"description": "Use of unsafe operator 'system' from module 'posix'",
"operator": "system",
"module": "posix",
"source": "/Users/mehrinkiani/Documents/modelscan/notebooks/XGBoostModels/unsafe_model.pkl",
"scanner": "modelscan.scanners.PickleUnsafeOpScan"
}
],
"LOW": [
{
"description": "Use of unsafe operator 'system' from module 'posix'",
"operator": "system",
"module": "posix",
"source": "/Users/mehrinkiani/Documents/modelscan/notebooks/XGBoostModels/unsafe_model.pkl",
"scanner": "modelscan.scanners.PickleUnsafeOpScan"
}
]
},
"errors": [],
"scanned": {
"total_scanned": 4,
"scanned_files": [
"/Users/mehrinkiani/Documents/modelscan/notebooks/XGBoostModels/unsafe_model.pkl"
]
}
}
`
64 changes: 64 additions & 0 deletions components/producers/modelscan/task.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
---
apiVersion: tekton.dev/v1beta1
kind: Task
metadata:
name: producer-modelscan
labels:
v1.dracon.ocurity.com/component: producer
v1.dracon.ocurity.com/test-type: sast
v1.dracon.ocurity.com/language: python
spec:
description: Analyse Go source code to look for security issues.
params:
- name: producer-modelscan-relative-path-to-model
type: string
volumes:
- name: scratch
emptyDir: {}
workspaces:
- name: output
description: The workspace containing the source-code to scan.
steps:
- name: run-modelscan
image: python:3.11-alpine
imagePullPolicy: Always
script: |
set -x
set +e

pip install 'modelscan'
modelscan --path "$(workspaces.output.path)/source-code/$(params.producer-modelscan-relative-path-to-model)" --reporting-format json --output-file /scratch/out.json
exitCode=$?

if [[ $exitCode -eq 1 ]]; then
echo "ModelScan found vulnerabilities"
exit 0
elif [[ $exitCode -eq 2 ]]; then
echo "ModelScan failed, error while scanning"
exit $exitCode
elif [[ $exitCode -eq 3 ]]; then
echo "ModelScan did not find any supported files while scanning"
exit $exitCode
elif [[ $exitCode -eq 4 ]]; then
echo "ModelScan encountered an error whle parsing CLI variables, the task definition has a bug"
exit $exitCode
elif [[ $exitCode -eq 0 ]]; then
echo "ModelScan did not find any vulnerabilities"
exit $exitCode
else
echo "Received unexpected exit code, exiting"
exit $exitCode
fi
volumeMounts:
- mountPath: /scratch
name: scratch
- name: produce-issues
imagePullPolicy: Always
image: '{{ default "ghcr.io/ocurity/dracon" .Values.image.registry }}/components/producers/modelscan:{{ .Chart.AppVersion }}'
command: ["/app/components/producers/modelscan/modelscan-parser"]
args:
- "-in=/scratch/out.json"
- "-out=$(workspaces.output.path)/.dracon/producers/modelscan.pb"
volumeMounts:
- mountPath: /scratch
name: scratch
12 changes: 12 additions & 0 deletions examples/pipelines/machine-learning-project/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
nameSuffix: -machine-learning-project
components:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insane vulnerability

Fix fix fix

Findinglink
Instancelink
Toolgosec

- pkg:helm/dracon-oss-components/base

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insane vulnerability

Fix fix fix

Findinglink
Instancelink
Toolgosec

- pkg:helm/dracon-oss-components/git-clone
- pkg:helm/dracon-oss-components/producer-modelscan
- pkg:helm/dracon-oss-components/producer-aggregator
- pkg:helm/dracon-oss-components/enricher-codeowners
- pkg:helm/dracon-oss-components/enricher-aggregator
- pkg:helm/dracon-oss-components/consumer-stdout-json
22 changes: 22 additions & 0 deletions examples/pipelines/machine-learning-project/pipelinerun.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
apiVersion: tekton.dev/v1beta1
kind: PipelineRun
metadata:
generateName: dracon-machine-learning-project-

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insane vulnerability

Fix fix fix

Finding [Smithy finding 1](https://plexor.saas.smithy.security/issues/1)
Priority DANGER
Instance [Smithy instance 83f3d21b-dab3-4a1e-b411-30739272a176](https://plexor.saas.smithy.security/instances/83f3d21b-dab3-4a1e-b411-30739272a176)
Tool gosec

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insane vulnerability

Fix fix fix

Finding [Smithy finding 1](https://plexor.saas.smithy.security/issues/1)
Priority DANGER
Instance [Smithy instance 83f3d21b-dab3-4a1e-b411-30739272a176](https://plexor.saas.smithy.security/instances/83f3d21b-dab3-4a1e-b411-30739272a176)
Tool gosec

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insane vulnerability

Fix fix fix

Findinglink
Instancelink
Toolgosec

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

./assets/info-priority.svg Insane vulnerability

Fix fix fix

Findinglink
Instancelink
Toolgosec

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

priority Insane vulnerability

Fix fix fix

Findinglink
Instancelink
Toolgosec

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="#a9b9f4"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="lucide lucide-circle-alert"
version="1.1"
id="svg2"
sodipodi:docname="circle-info.svg"
inkscape:version="1.3.2 (1:1.3.2+202311252150+091e20ef0f)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape&#34;
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd&#34;
xmlns="http://www.w3.org/2000/svg&#34;
xmlns:svg="http://www.w3.org/2000/svg&#34;>
<defs
id="defs2" />
<sodipodi:namedview
id="namedview2"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="78.791667"
inkscape:cx="11.993654"
inkscape:cy="12"
inkscape:window-width="3774"
inkscape:window-height="2091"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<circle
cx="-12"
cy="-12"
r="10"
id="circle1"
transform="scale(-1)" />
<line
x1="12"
x2="12"
y1="16"
y2="12"
id="line1" />
<line
x1="12"
x2="11.99"
y1="8"
y2="8"
id="line2" />
</svg>
Insane vulnerability

Fix fix fix

Findinglink
Instancelink
Toolgosec

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

./assets/info-priority.svg Insane vulnerability

Fix fix fix

Findinglink
Instancelink
Toolgosec

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

&lt;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34; standalone=&#34;no&#34;?&gt;
&lt;svg
width=&#34;24&#34;
height=&#34;24&#34;
viewBox=&#34;0 0 24 24&#34;
fill=&#34;none&#34;
stroke=&#34;#a9b9f4&#34;
stroke-width=&#34;2&#34;
stroke-linecap=&#34;round&#34;
stroke-linejoin=&#34;round&#34;
class=&#34;lucide lucide-circle-alert&#34;
version=&#34;1.1&#34;
id=&#34;svg2&#34;
sodipodi:docname=&#34;circle-info.svg&#34;
inkscape:version=&#34;1.3.2 (1:1.3.2+202311252150+091e20ef0f)&#34;
xmlns:inkscape=&#34;http://www.inkscape.org/namespaces/inkscape&amp;#34;
xmlns:sodipodi=&#34;http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd&amp;#34;
xmlns=&#34;http://www.w3.org/2000/svg&amp;#34;
xmlns:svg=&#34;http://www.w3.org/2000/svg&amp;#34;&amp;gt;
&lt;defs
id=&#34;defs2&#34; /&gt;
&lt;sodipodi:namedview
id=&#34;namedview2&#34;
pagecolor=&#34;#ffffff&#34;
bordercolor=&#34;#000000&#34;
borderopacity=&#34;0.25&#34;
inkscape:showpageshadow=&#34;2&#34;
inkscape:pageopacity=&#34;0.0&#34;
inkscape:pagecheckerboard=&#34;0&#34;
inkscape:deskcolor=&#34;#d1d1d1&#34;
inkscape:zoom=&#34;78.791667&#34;
inkscape:cx=&#34;11.993654&#34;
inkscape:cy=&#34;12&#34;
inkscape:window-width=&#34;3774&#34;
inkscape:window-height=&#34;2091&#34;
inkscape:window-x=&#34;0&#34;
inkscape:window-y=&#34;0&#34;
inkscape:window-maximized=&#34;1&#34;
inkscape:current-layer=&#34;svg2&#34; /&gt;
&lt;circle
cx=&#34;-12&#34;
cy=&#34;-12&#34;
r=&#34;10&#34;
id=&#34;circle1&#34;
transform=&#34;scale(-1)&#34; /&gt;
&lt;line
x1=&#34;12&#34;
x2=&#34;12&#34;
y1=&#34;16&#34;
y2=&#34;12&#34;
id=&#34;line1&#34; /&gt;
&lt;line
x1=&#34;12&#34;
x2=&#34;11.99&#34;
y1=&#34;8&#34;
y2=&#34;8&#34;
id=&#34;line2&#34; /&gt;
&lt;/svg&gt;
Insane vulnerability

Fix fix fix

Findinglink
Instancelink
Toolgosec

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

assets/low-priority.svg Insane vulnerability

Fix fix fix

Findinglink
Instancelink
Toolgosec

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.



<sodipodi:namedview
id="namedview2"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="78.791667"
inkscape:cx="11.993654"
inkscape:cy="12"
inkscape:window-width="3774"
inkscape:window-height="2091"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />




Insane vulnerability

Fix fix fix

Findinglink
Instancelink
Toolgosec

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="#a9b9f4"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="lucide lucide-circle-alert"
version="1.1"
id="svg2"
sodipodi:docname="circle-info.svg"
inkscape:version="1.3.2 (1:1.3.2+202311252150+091e20ef0f)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape&#34;
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd&#34;
xmlns="http://www.w3.org/2000/svg&#34;
xmlns:svg="http://www.w3.org/2000/svg&#34;>
<defs
id="defs2" />
<sodipodi:namedview
id="namedview2"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="78.791667"
inkscape:cx="11.993654"
inkscape:cy="12"
inkscape:window-width="3774"
inkscape:window-height="2091"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<circle
cx="-12"
cy="-12"
r="10"
id="circle1"
transform="scale(-1)" />
<line
x1="12"
x2="12"
y1="16"
y2="12"
id="line1" />
<line
x1="12"
x2="11.99"
y1="8"
y2="8"
id="line2" />
</svg>
Insane vulnerability

Fix fix fix

Findinglink
Instancelink
Toolgosec

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insane vulnerability

Fix fix fix

Findinglink
Instancelink
Toolgosec

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insane vulnerability

Fix fix fix

Findinglink
Instancelink
Toolgosec

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insane vulnerability

Fix fix fix

Findinglink
Instancelink
Toolgosec

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

**Insane vulnerability**

Fix fix fix

Findinglink
Instancelink
Toolgosec

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insane vulnerability

Fix fix fix

Findinglink
Instancelink
Toolgosec

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insane vulnerability

Fix fix fix

Findinglink
Instancelink
Toolgosec

spec:
pipelineRef:
name: dracon-machine-learning-project
params:
- name: git-clone-url
value: https://github.com/ocurity/e2e-monorepo.git
- name: producer-modelscan-relative-path-to-model
value: "vulnerable-ml-models/unsafe_xgboost_model.pkl"
workspaces:
- name: output
volumeClaimTemplate:
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
Loading