Skip to content

feat: make ephemeral parameters optional #8571

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 18, 2023
Merged
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
5 changes: 0 additions & 5 deletions cli/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ func (r *RootCmd) create() *clibase.Cmd {
startAt string
stopAfter time.Duration
workspaceName string

parameterFlags workspaceParameterFlags
)
client := new(codersdk.Client)
cmd := &clibase.Cmd{
Expand Down Expand Up @@ -135,7 +133,6 @@ func (r *RootCmd) create() *clibase.Cmd {
Template: template,
RichParameterFile: richParameterFile,
NewWorkspaceName: workspaceName,
BuildOptions: parameterFlags.buildOptions,
})
if err != nil {
return xerrors.Errorf("prepare build: %w", err)
Expand Down Expand Up @@ -204,8 +201,6 @@ func (r *RootCmd) create() *clibase.Cmd {
},
cliui.SkipPromptOption(),
)
cmd.Options = append(cmd.Options, parameterFlags.options()...)

return cmd
}

Expand Down
59 changes: 0 additions & 59 deletions cli/create_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,6 @@ func TestCreateWithRichParameters(t *testing.T) {
secondParameterDescription = "This is second parameter"
secondParameterValue = "2"

ephemeralParameterName = "ephemeral_parameter"
ephemeralParameterDescription = "This is ephemeral parameter"
ephemeralParameterValue = "3"

immutableParameterName = "third_parameter"
immutableParameterDescription = "This is not mutable parameter"
immutableParameterValue = "4"
Expand All @@ -270,7 +266,6 @@ func TestCreateWithRichParameters(t *testing.T) {
Parameters: []*proto.RichParameter{
{Name: firstParameterName, Description: firstParameterDescription, Mutable: true},
{Name: secondParameterName, DisplayName: secondParameterDisplayName, Description: secondParameterDescription, Mutable: true},
{Name: ephemeralParameterName, Description: ephemeralParameterDescription, Mutable: true, Ephemeral: true},
{Name: immutableParameterName, Description: immutableParameterDescription, Mutable: false},
},
},
Expand Down Expand Up @@ -362,60 +357,6 @@ func TestCreateWithRichParameters(t *testing.T) {
}
<-doneChan
})

t.Run("BuildOptions", func(t *testing.T) {
t.Parallel()

client := coderdtest.New(t, &coderdtest.Options{IncludeProvisionerDaemon: true})
user := coderdtest.CreateFirstUser(t, client)
version := coderdtest.CreateTemplateVersion(t, client, user.OrganizationID, echoResponses)
coderdtest.AwaitTemplateVersionJob(t, client, version.ID)

template := coderdtest.CreateTemplate(t, client, user.OrganizationID, version.ID)

const workspaceName = "my-workspace"
inv, root := clitest.New(t, "create", workspaceName, "--template", template.Name, "--build-options")
clitest.SetupConfig(t, client, root)
doneChan := make(chan struct{})
pty := ptytest.New(t).Attach(inv)
go func() {
defer close(doneChan)
err := inv.Run()
assert.NoError(t, err)
}()

matches := []string{
ephemeralParameterDescription, ephemeralParameterValue,
firstParameterDescription, firstParameterValue,
secondParameterDisplayName, "",
secondParameterDescription, secondParameterValue,
immutableParameterDescription, immutableParameterValue,
"Confirm create?", "yes",
}
for i := 0; i < len(matches); i += 2 {
match := matches[i]
value := matches[i+1]
pty.ExpectMatch(match)

if value != "" {
pty.WriteLine(value)
}
}
<-doneChan

// Verify if build option is set
ctx, cancel := context.WithTimeout(context.Background(), testutil.WaitShort)
defer cancel()

workspace, err := client.WorkspaceByOwnerAndName(ctx, user.UserID.String(), workspaceName, codersdk.WorkspaceOptions{})
require.NoError(t, err)
actualParameters, err := client.WorkspaceBuildParameters(ctx, workspace.LatestBuild.ID)
require.NoError(t, err)
require.Contains(t, actualParameters, codersdk.WorkspaceBuildParameter{
Name: ephemeralParameterName,
Value: ephemeralParameterValue,
})
})
}

func TestCreateValidateRichParameters(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion cli/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"github.com/coder/coder/codersdk"
)

// workspaceParameterFlags are used by "start", "restart", "create", and "update".
// workspaceParameterFlags are used by "start", "restart", and "update".
type workspaceParameterFlags struct {
buildOptions bool
}
Expand Down
3 changes: 0 additions & 3 deletions cli/testdata/coder_create_--help.golden
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ Create a workspace
 $ coder create <username>/<workspace_name> 

Options
--build-options bool
Prompt for one-time build options defined with ephemeral parameters.

--rich-parameter-file string, $CODER_RICH_PARAMETER_FILE
Specify a file path with values for rich parameters defined in the
template.
Expand Down
38 changes: 10 additions & 28 deletions codersdk/richparameters_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -315,11 +315,11 @@ func TestParameterResolver_ValidateResolve_Ephemeral_OverridePrevious(t *testing
Rich: []codersdk.WorkspaceBuildParameter{{Name: "n", Value: "5"}},
}
p := codersdk.TemplateVersionParameter{
Name: "n",
Type: "number",
Mutable: true,
Required: true,
Ephemeral: true,
Name: "n",
Type: "number",
Mutable: true,
DefaultValue: "4",
Ephemeral: true,
}
v, err := uut.ValidateResolve(p, &codersdk.WorkspaceBuildParameter{
Name: "n",
Expand All @@ -333,11 +333,11 @@ func TestParameterResolver_ValidateResolve_Ephemeral_FirstTime(t *testing.T) {
t.Parallel()
uut := codersdk.ParameterResolver{}
p := codersdk.TemplateVersionParameter{
Name: "n",
Type: "number",
Mutable: true,
Required: true,
Ephemeral: true,
Name: "n",
Type: "number",
Mutable: true,
DefaultValue: "5",
Ephemeral: true,
}
v, err := uut.ValidateResolve(p, &codersdk.WorkspaceBuildParameter{
Name: "n",
Expand Down Expand Up @@ -376,21 +376,3 @@ func TestParameterResolver_ValidateResolve_Ephemeral_UseEmptyDefault(t *testing.
require.NoError(t, err)
require.Equal(t, "", v)
}

func TestParameterResolver_ValidateResolve_Ephemeral_RequiredButMissing(t *testing.T) {
t.Parallel()
uut := codersdk.ParameterResolver{}
p := codersdk.TemplateVersionParameter{
Name: "n",
Type: "number",
Mutable: true,
Required: true,
Ephemeral: true,
}
// It is more theoretical than practical case. Schema allows to configure a parameter,
// which always requires from initiator to provide the value, but it is not persisted between
// consecutive workspace builds.
v, err := uut.ValidateResolve(p, nil)
require.Error(t, err) // Parameter is required, but not provided.
require.Equal(t, "", v)
}
8 changes: 0 additions & 8 deletions docs/cli/create.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,6 @@ coder create [flags] [name]

## Options

### --build-options

| | |
| ---- | ----------------- |
| Type | <code>bool</code> |

Prompt for one-time build options defined with ephemeral parameters.

### --rich-parameter-file

| | |
Expand Down
1 change: 1 addition & 0 deletions docs/templates/parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ data "coder_parameter" "force_rebuild" {
type = "bool"
description = "Rebuild the Docker image rather than use the cached one."
mutable = true
default = false
ephemeral = true
}
```
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ require (
github.com/codeclysm/extract/v3 v3.1.1
github.com/coder/flog v1.1.0
github.com/coder/retry v1.4.0
github.com/coder/terraform-provider-coder v0.11.0
github.com/coder/terraform-provider-coder v0.11.1
github.com/coder/wgtunnel v0.1.5
github.com/coreos/go-oidc/v3 v3.6.0
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@ github.com/coder/ssh v0.0.0-20230621095435-9a7e23486f1c h1:TI7TzdFI0UvQmwgyQhtI1
github.com/coder/ssh v0.0.0-20230621095435-9a7e23486f1c/go.mod h1:aGQbuCLyhRLMzZF067xc84Lh7JDs1FKwCmF1Crl9dxQ=
github.com/coder/tailscale v0.0.0-20230522123520-74712221d00f h1:F0Xr1d8h8dAHn7tab1HXuzYFkcjmCydnEfdMbkOhlVk=
github.com/coder/tailscale v0.0.0-20230522123520-74712221d00f/go.mod h1:jpg+77g19FpXL43U1VoIqoSg1K/Vh5CVxycGldQ8KhA=
github.com/coder/terraform-provider-coder v0.11.0 h1:/swgVstwRaj12S/iHIA3zxFKSSQj+ohZZyb4CZQ7f4A=
github.com/coder/terraform-provider-coder v0.11.0/go.mod h1:UIfU3bYNeSzJJvHyJ30tEKjD6Z9utloI+HUM/7n94CY=
github.com/coder/terraform-provider-coder v0.11.1 h1:1sXcHfQrX8XhmLbtKxBED2lZ5jk3/ezBtaw6uVhpJZ4=

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20220422013727-9388b58f7150 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20201009025420-dfb3f7c4e634 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20210927094055-39ccf1dd6fa6 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20210330210617-4fbd30eecc44 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20211025201205-69cdffdb9359 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20220128215802-99c3d69c2c27 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/text 0.0.0-20170915032832-14c0d48ead0c / go.sum

Total vulnerabilities: 2

Critical: 0 High: 2 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-32149 HIGH HIGH 7 0.3.8 Open
CVE-2021-38561 HIGH HIGH 7 0.3.7 Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20220622161953-175b2fd9d664 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20210104204734-6f8348627aad / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20210630005230-0f9fa26af87c / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20210423185535-09eb48e85fd7 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20210225134936-a50acf3fe073 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20220811171246-fbc7d0a398ab / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

golang.org/x/text 0.3.5 / go.sum

Total vulnerabilities: 2

Critical: 0 High: 2 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-32149 HIGH HIGH 7 0.3.8 Open
CVE-2021-38561 HIGH HIGH 7 0.3.7 Open

Choose a reason for hiding this comment

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

golang.org/x/text 0.3.0 / go.sum

Total vulnerabilities: 2

Critical: 0 High: 2 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-32149 HIGH HIGH 7 0.3.8 Open
CVE-2021-38561 HIGH HIGH 7 0.3.7 Open

Choose a reason for hiding this comment

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

golang.org/x/text 0.3.2 / go.sum

Total vulnerabilities: 2

Critical: 0 High: 2 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-32149 HIGH HIGH 7 0.3.8 Open
CVE-2021-38561 HIGH HIGH 7 0.3.7 Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.1.0 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20211216021012-1d35b9e2eb4e / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/text 0.3.7 / go.sum

Total vulnerabilities: 2

Critical: 0 High: 2 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-32149 HIGH HIGH 7 0.3.8 Open
CVE-2021-38561 HIGH HIGH 7 - Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20220722155257-8c9f86f7a55f / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20201119102817-f84b799fce68 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20220715151400-c0bba94af5f8 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

golang.org/x/net 0.1.0 / go.sum

Total vulnerabilities: 11

Critical: 0 High: 10 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-27664 HIGH HIGH 7 - Open
CVE-2022-41723 HIGH HIGH 7 0.7.0 Open
CVE-2021-33194 HIGH HIGH 7 - Open
CVE-2019-9514 HIGH HIGH 7 - Open
CVE-2019-9512 HIGH HIGH 7 - Open
CVE-2018-17848 HIGH HIGH 7 - Open
CVE-2018-17847 HIGH HIGH 7 - Open
CVE-2018-17143 HIGH HIGH 7 - Open
CVE-2018-17142 HIGH HIGH 7 - Open
CVE-2018-17075 HIGH HIGH 7 - Open
CVE-2021-31525 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

golang.org/x/net 0.0.0-20201010224723-4f7140c49acb / go.sum

Total vulnerabilities: 11

Critical: 0 High: 10 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-27664 HIGH HIGH 7 0.0.0-20220906165146-f3363e06e74c Open
CVE-2022-41723 HIGH HIGH 7 0.7.0 Open
CVE-2021-33194 HIGH HIGH 7 0.0.0-20210520170846-37e1c6afe023 Open
CVE-2019-9514 HIGH HIGH 7 - Open
CVE-2019-9512 HIGH HIGH 7 - Open
CVE-2018-17848 HIGH HIGH 7 - Open
CVE-2018-17847 HIGH HIGH 7 - Open
CVE-2018-17143 HIGH HIGH 7 - Open
CVE-2018-17142 HIGH HIGH 7 - Open
CVE-2018-17075 HIGH HIGH 7 - Open
CVE-2021-31525 MEDIUM MEDIUM 4 0.0.0-20210428140749-89ef3d95e781 Open

Choose a reason for hiding this comment

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

golang.org/x/net 0.0.0-20201209123823-ac852fbbde11 / go.sum

Total vulnerabilities: 11

Critical: 0 High: 10 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-27664 HIGH HIGH 7 0.0.0-20220906165146-f3363e06e74c Open
CVE-2022-41723 HIGH HIGH 7 0.7.0 Open
CVE-2021-33194 HIGH HIGH 7 0.0.0-20210520170846-37e1c6afe023 Open
CVE-2019-9514 HIGH HIGH 7 - Open
CVE-2019-9512 HIGH HIGH 7 - Open
CVE-2018-17848 HIGH HIGH 7 - Open
CVE-2018-17847 HIGH HIGH 7 - Open
CVE-2018-17143 HIGH HIGH 7 - Open
CVE-2018-17142 HIGH HIGH 7 - Open
CVE-2018-17075 HIGH HIGH 7 - Open
CVE-2021-31525 MEDIUM MEDIUM 4 0.0.0-20210428140749-89ef3d95e781 Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20200501052902-10377860bb8e / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20191026070338-33540a1f6037 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20200331124033-c3d80250170d / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20190215142949-d0b11bdaac8a / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/net 0.0.0-20210928044308-7d9f5e0b762b / go.sum

Total vulnerabilities: 11

Critical: 0 High: 10 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-27664 HIGH HIGH 7 0.0.0-20220906165146-f3363e06e74c Open
CVE-2022-41723 HIGH HIGH 7 0.7.0 Open
CVE-2021-33194 HIGH HIGH 7 - Open
CVE-2019-9514 HIGH HIGH 7 - Open
CVE-2019-9512 HIGH HIGH 7 - Open
CVE-2018-17848 HIGH HIGH 7 - Open
CVE-2018-17847 HIGH HIGH 7 - Open
CVE-2018-17143 HIGH HIGH 7 - Open
CVE-2018-17142 HIGH HIGH 7 - Open
CVE-2018-17075 HIGH HIGH 7 - Open
CVE-2021-31525 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

golang.org/x/net 0.0.0-20201110031124-69a78807bb2b / go.sum

Total vulnerabilities: 11

Critical: 0 High: 10 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-27664 HIGH HIGH 7 0.0.0-20220906165146-f3363e06e74c Open
CVE-2022-41723 HIGH HIGH 7 0.7.0 Open
CVE-2021-33194 HIGH HIGH 7 0.0.0-20210520170846-37e1c6afe023 Open
CVE-2019-9514 HIGH HIGH 7 - Open
CVE-2019-9512 HIGH HIGH 7 - Open
CVE-2018-17848 HIGH HIGH 7 - Open
CVE-2018-17847 HIGH HIGH 7 - Open
CVE-2018-17143 HIGH HIGH 7 - Open
CVE-2018-17142 HIGH HIGH 7 - Open
CVE-2018-17075 HIGH HIGH 7 - Open
CVE-2021-31525 MEDIUM MEDIUM 4 0.0.0-20210428140749-89ef3d95e781 Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20200212091648-12a6c2dcc1e4 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20190411185658-b44545bcd369 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/net 0.0.0-20200202094626-16171245cfb2 / go.sum

Total vulnerabilities: 11

Critical: 0 High: 10 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-27664 HIGH HIGH 7 0.0.0-20220906165146-f3363e06e74c Open
CVE-2022-41723 HIGH HIGH 7 0.7.0 Open
CVE-2021-33194 HIGH HIGH 7 0.0.0-20210520170846-37e1c6afe023 Open
CVE-2019-9514 HIGH HIGH 7 - Open
CVE-2019-9512 HIGH HIGH 7 - Open
CVE-2018-17848 HIGH HIGH 7 - Open
CVE-2018-17847 HIGH HIGH 7 - Open
CVE-2018-17143 HIGH HIGH 7 - Open
CVE-2018-17142 HIGH HIGH 7 - Open
CVE-2018-17075 HIGH HIGH 7 - Open
CVE-2021-31525 MEDIUM MEDIUM 4 0.0.0-20210428140749-89ef3d95e781 Open

Choose a reason for hiding this comment

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

golang.org/x/net 0.0.0-20221002022538-bcab6841153b / go.sum

Total vulnerabilities: 11

Critical: 0 High: 10 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-27664 HIGH HIGH 7 - Open
CVE-2022-41723 HIGH HIGH 7 0.7.0 Open
CVE-2021-33194 HIGH HIGH 7 - Open
CVE-2019-9514 HIGH HIGH 7 - Open
CVE-2019-9512 HIGH HIGH 7 - Open
CVE-2018-17848 HIGH HIGH 7 - Open
CVE-2018-17847 HIGH HIGH 7 - Open
CVE-2018-17143 HIGH HIGH 7 - Open
CVE-2018-17142 HIGH HIGH 7 - Open
CVE-2018-17075 HIGH HIGH 7 - Open
CVE-2021-31525 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20190418153312-f0ce4c0180be / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/net 0.0.0-20200222125558-5a598a2470a0 / go.sum

Total vulnerabilities: 11

Critical: 0 High: 10 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-27664 HIGH HIGH 7 0.0.0-20220906165146-f3363e06e74c Open
CVE-2022-41723 HIGH HIGH 7 0.7.0 Open
CVE-2021-33194 HIGH HIGH 7 0.0.0-20210520170846-37e1c6afe023 Open
CVE-2019-9514 HIGH HIGH 7 - Open
CVE-2019-9512 HIGH HIGH 7 - Open
CVE-2018-17848 HIGH HIGH 7 - Open
CVE-2018-17847 HIGH HIGH 7 - Open
CVE-2018-17143 HIGH HIGH 7 - Open
CVE-2018-17142 HIGH HIGH 7 - Open
CVE-2018-17075 HIGH HIGH 7 - Open
CVE-2021-31525 MEDIUM MEDIUM 4 0.0.0-20210428140749-89ef3d95e781 Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20190312061237-fead79001313 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/net 0.12.0 / go.sum

Total vulnerabilities: 11

Critical: 0 High: 10 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-27664 HIGH HIGH 7 - Open
CVE-2022-41723 HIGH HIGH 7 - Open
CVE-2021-33194 HIGH HIGH 7 - Open
CVE-2019-9514 HIGH HIGH 7 - Open
CVE-2019-9512 HIGH HIGH 7 - Open
CVE-2018-17848 HIGH HIGH 7 - Open
CVE-2018-17847 HIGH HIGH 7 - Open
CVE-2018-17143 HIGH HIGH 7 - Open
CVE-2018-17142 HIGH HIGH 7 - Open
CVE-2018-17075 HIGH HIGH 7 - Open
CVE-2021-31525 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20200302150141-5c8b2ff67527 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20220422013727-9388b58f7150 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20201009025420-dfb3f7c4e634 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20210927094055-39ccf1dd6fa6 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20210330210617-4fbd30eecc44 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20211025201205-69cdffdb9359 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20220128215802-99c3d69c2c27 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/text 0.0.0-20170915032832-14c0d48ead0c / go.sum

Total vulnerabilities: 2

Critical: 0 High: 2 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-32149 HIGH HIGH 7 0.3.8 Open
CVE-2021-38561 HIGH HIGH 7 0.3.7 Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20220622161953-175b2fd9d664 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20210104204734-6f8348627aad / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20210630005230-0f9fa26af87c / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20210423185535-09eb48e85fd7 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20210225134936-a50acf3fe073 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20220811171246-fbc7d0a398ab / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

golang.org/x/text 0.3.5 / go.sum

Total vulnerabilities: 2

Critical: 0 High: 2 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-32149 HIGH HIGH 7 0.3.8 Open
CVE-2021-38561 HIGH HIGH 7 0.3.7 Open

Choose a reason for hiding this comment

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

golang.org/x/text 0.3.0 / go.sum

Total vulnerabilities: 2

Critical: 0 High: 2 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-32149 HIGH HIGH 7 0.3.8 Open
CVE-2021-38561 HIGH HIGH 7 0.3.7 Open

Choose a reason for hiding this comment

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

golang.org/x/text 0.3.2 / go.sum

Total vulnerabilities: 2

Critical: 0 High: 2 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-32149 HIGH HIGH 7 0.3.8 Open
CVE-2021-38561 HIGH HIGH 7 0.3.7 Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.1.0 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20211216021012-1d35b9e2eb4e / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/text 0.3.7 / go.sum

Total vulnerabilities: 2

Critical: 0 High: 2 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-32149 HIGH HIGH 7 0.3.8 Open
CVE-2021-38561 HIGH HIGH 7 - Open

Choose a reason for hiding this comment

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

golang.org/x/net 0.0.0-20190213061140-3a22650c66bd / go.sum

Total vulnerabilities: 11

Critical: 0 High: 10 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-27664 HIGH HIGH 7 0.0.0-20220906165146-f3363e06e74c Open
CVE-2022-41723 HIGH HIGH 7 0.7.0 Open
CVE-2021-33194 HIGH HIGH 7 0.0.0-20210520170846-37e1c6afe023 Open
CVE-2019-9514 HIGH HIGH 7 0.0.0-20190813141303-74dc4d7220e7 Open
CVE-2019-9512 HIGH HIGH 7 0.0.0-20190813141303-74dc4d7220e7 Open
CVE-2018-17848 HIGH HIGH 7 - Open
CVE-2018-17847 HIGH HIGH 7 - Open
CVE-2018-17143 HIGH HIGH 7 - Open
CVE-2018-17142 HIGH HIGH 7 - Open
CVE-2018-17075 HIGH HIGH 7 - Open
CVE-2021-31525 MEDIUM MEDIUM 4 0.0.0-20210428140749-89ef3d95e781 Open

Choose a reason for hiding this comment

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

github.com/valyala/fasthttp 1.48.0 / go.sum

Total vulnerabilities: 2

Critical: 0 High: 1 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-21221 HIGH HIGH 7 - Open
PRISMA-2022-0302 MEDIUM MEDIUM 6.5 - Open

Choose a reason for hiding this comment

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

github.com/ulikunitz/xz 0.5.11 / go.sum

Total vulnerabilities: 2

Critical: 0 High: 2 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2021-29482 HIGH HIGH 7 - Open
CVE-2020-16845 HIGH HIGH 7 - Open

Choose a reason for hiding this comment

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

github.com/u-root/u-root 0.11.0 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 1 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2020-7665 HIGH HIGH 7 - Open

Choose a reason for hiding this comment

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

github.com/pkg/sftp 1.13.6-0.20221018182125-7da137aa03f0 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
PRISMA-2021-0214 MEDIUM MEDIUM 6.5 - Open

Choose a reason for hiding this comment

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

github.com/opencontainers/image-spec 1.1.0-rc2 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 0 Low: 1
Vulnerability IDSeverityCVSSFixed inStatus
GHSA-77vh-xpmg-72qh LOW LOW 1 - Open

Choose a reason for hiding this comment

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

github.com/sirupsen/logrus 1.9.2 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
PRISMA-2023-0056 MEDIUM MEDIUM 6.2 v1.9.3 Open

Choose a reason for hiding this comment

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

github.com/opencontainers/runc 1.1.5 / go.sum

Total vulnerabilities: 10

Critical: 0 High: 3 Medium: 5 Low: 2
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2021-30465 HIGH HIGH 7 - Open
CVE-2019-16884 HIGH HIGH 7 - Open
CVE-2016-3697 HIGH HIGH 7 - Open
CVE-2022-29162 MEDIUM MEDIUM 4 - Open
CVE-2021-43784 MEDIUM MEDIUM 4 - Open
CVE-2019-19921 MEDIUM MEDIUM 4 - Open
CVE-2023-28642 MEDIUM MEDIUM 4 - Open
CVE-2016-9962 MEDIUM MEDIUM 4 - Open
CVE-2023-25809 LOW LOW 1 - Open
GHSA-g54h-m393-cpwq LOW LOW 1 - Open

Choose a reason for hiding this comment

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

github.com/seccomp/libseccomp-golang 0.9.2-0.20220502022130-f33da4d89646 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 1 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2017-18367 HIGH HIGH 7 - Open

Choose a reason for hiding this comment

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

github.com/prometheus/client_golang 1.16.0 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 1 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-21698 HIGH HIGH 7 - Open

Choose a reason for hiding this comment

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

github.com/opencontainers/selinux 1.10.0 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 1 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2019-16884 HIGH HIGH 7 - Open

Choose a reason for hiding this comment

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

github.com/sirupsen/logrus 1.8.1 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
PRISMA-2023-0056 MEDIUM MEDIUM 6.2 v1.9.3 Open

Choose a reason for hiding this comment

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

github.com/pkg/sftp 1.13.1 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
PRISMA-2021-0214 MEDIUM MEDIUM 6.5 - Open

Choose a reason for hiding this comment

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

github.com/miekg/dns 1.1.45 / go.sum

Total vulnerabilities: 3

Critical: 0 High: 2 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2018-17419 HIGH HIGH 7 - Open
CVE-2017-15133 HIGH HIGH 7 - Open
CVE-2019-19794 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

github.com/open-policy-agent/opa 0.51.0 / go.sum

Total vulnerabilities: 2

Critical: 0 High: 2 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-33082 HIGH HIGH 7 - Open
CVE-2022-28946 HIGH HIGH 7 - Open

Choose a reason for hiding this comment

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

github.com/microcosm-cc/bluemonday 1.0.23 / go.sum

Total vulnerabilities: 3

Critical: 0 High: 1 Medium: 2 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
PRISMA-2022-0163 HIGH HIGH 8 - Open
CVE-2021-42576 MEDIUM MEDIUM 4 - Open
CVE-2021-29272 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

github.com/microcosm-cc/bluemonday 1.0.21 / go.sum

Total vulnerabilities: 3

Critical: 0 High: 1 Medium: 2 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
PRISMA-2022-0163 HIGH HIGH 8 - Open
CVE-2021-42576 MEDIUM MEDIUM 4 - Open
CVE-2021-29272 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

github.com/moby/moby 24.0.1+incompatible / go.sum

Total vulnerabilities: 6

Critical: 0 High: 1 Medium: 4 Low: 1
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2014-9356 HIGH HIGH 7 - Open
CVE-2022-36109 MEDIUM MEDIUM 4 - Open
CVE-2015-3631 MEDIUM MEDIUM 4 - Open
PRISMA-2022-0089 MEDIUM MEDIUM 4.2 - Open
PRISMA-2022-0090 MEDIUM MEDIUM 4.2 - Open
GHSA-vp35-85q5-9f25 LOW LOW 1 - Open

Choose a reason for hiding this comment

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

github.com/justinas/nosurf 1.1.1 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 1 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2020-36564 HIGH HIGH 7 - Open

Choose a reason for hiding this comment

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

github.com/gorilla/websocket 1.4.1 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 1 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2020-27813 HIGH HIGH 7 - Open

Choose a reason for hiding this comment

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

github.com/gorilla/websocket 1.5.0 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 1 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2020-27813 HIGH HIGH 7 - Open

Choose a reason for hiding this comment

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

github.com/gohugoio/hugo 0.115.0 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 1 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2020-26284 HIGH HIGH 7 - Open

Choose a reason for hiding this comment

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

github.com/golang-jwt/jwt/v4 4.5.0 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
PRISMA-2022-0270 MEDIUM MEDIUM 5.4 - Open

Choose a reason for hiding this comment

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

github.com/gogo/protobuf 1.3.2 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 1 Medium: 0 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2021-3121 HIGH HIGH 7 - Open

Choose a reason for hiding this comment

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

github.com/docker/docker 23.0.3+incompatible / go.sum

Total vulnerabilities: 7

Critical: 0 High: 4 Medium: 3 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2014-9357 HIGH HIGH 7 - Open
CVE-2014-9356 HIGH HIGH 7 - Open
CVE-2014-6407 HIGH HIGH 7 - Open
CVE-2014-3499 HIGH HIGH 7 - Open
CVE-2015-3627 MEDIUM MEDIUM 4 - Open
CVE-2014-9358 MEDIUM MEDIUM 4 - Open
CVE-2014-5277 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

github.com/docker/cli 20.10.17+incompatible / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2021-41092 MEDIUM MEDIUM 5.4 - Open

Choose a reason for hiding this comment

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

github.com/docker/distribution 2.8.2+incompatible / go.sum

Total vulnerabilities: 3

Critical: 0 High: 2 Medium: 0 Low: 1
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2017-11468 HIGH HIGH 7 - Open
CVE-2023-2253 HIGH HIGH 7 - Open
GHSA-qq97-vm5h-rrhg LOW LOW 1 - Open

Choose a reason for hiding this comment

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

github.com/gin-gonic/gin 1.6.3 / go.sum

Total vulnerabilities: 5

Critical: 0 High: 2 Medium: 3 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2020-36567 HIGH HIGH 7 - Open
CVE-2020-28483 HIGH HIGH 7 1.7.7 Open
CVE-2023-26125 MEDIUM MEDIUM 4 1.9.0 Open
PRISMA-2022-0393 MEDIUM MEDIUM 5.3 - Open
PRISMA-2022-0394 MEDIUM MEDIUM 5.3 - Open

Choose a reason for hiding this comment

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

golang.org/x/net 0.0.0-20220127200216-cd36cc0744dd / go.sum

Total vulnerabilities: 11

Critical: 0 High: 10 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-27664 HIGH HIGH 7 0.0.0-20220906165146-f3363e06e74c Open
CVE-2022-41723 HIGH HIGH 7 0.7.0 Open
CVE-2021-33194 HIGH HIGH 7 - Open
CVE-2019-9514 HIGH HIGH 7 - Open
CVE-2019-9512 HIGH HIGH 7 - Open
CVE-2018-17848 HIGH HIGH 7 - Open
CVE-2018-17847 HIGH HIGH 7 - Open
CVE-2018-17143 HIGH HIGH 7 - Open
CVE-2018-17142 HIGH HIGH 7 - Open
CVE-2018-17075 HIGH HIGH 7 - Open
CVE-2021-31525 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

golang.org/x/net 0.0.0-20200114155413-6afb5195e5aa / go.sum

Total vulnerabilities: 11

Critical: 0 High: 10 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-27664 HIGH HIGH 7 0.0.0-20220906165146-f3363e06e74c Open
CVE-2022-41723 HIGH HIGH 7 0.7.0 Open
CVE-2021-33194 HIGH HIGH 7 0.0.0-20210520170846-37e1c6afe023 Open
CVE-2019-9514 HIGH HIGH 7 - Open
CVE-2019-9512 HIGH HIGH 7 - Open
CVE-2018-17848 HIGH HIGH 7 - Open
CVE-2018-17847 HIGH HIGH 7 - Open
CVE-2018-17143 HIGH HIGH 7 - Open
CVE-2018-17142 HIGH HIGH 7 - Open
CVE-2018-17075 HIGH HIGH 7 - Open
CVE-2021-31525 MEDIUM MEDIUM 4 0.0.0-20210428140749-89ef3d95e781 Open

Choose a reason for hiding this comment

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

golang.org/x/net 0.0.0-20210405180319-a5a99cb37ef4 / go.sum

Total vulnerabilities: 11

Critical: 0 High: 10 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-27664 HIGH HIGH 7 0.0.0-20220906165146-f3363e06e74c Open
CVE-2022-41723 HIGH HIGH 7 0.7.0 Open
CVE-2021-33194 HIGH HIGH 7 0.0.0-20210520170846-37e1c6afe023 Open
CVE-2019-9514 HIGH HIGH 7 - Open
CVE-2019-9512 HIGH HIGH 7 - Open
CVE-2018-17848 HIGH HIGH 7 - Open
CVE-2018-17847 HIGH HIGH 7 - Open
CVE-2018-17143 HIGH HIGH 7 - Open
CVE-2018-17142 HIGH HIGH 7 - Open
CVE-2018-17075 HIGH HIGH 7 - Open
CVE-2021-31525 MEDIUM MEDIUM 4 0.0.0-20210428140749-89ef3d95e781 Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20200113162924-86b910548bc1 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

golang.org/x/net 0.0.0-20220923203811-8be639271d50 / go.sum

Total vulnerabilities: 11

Critical: 0 High: 10 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-27664 HIGH HIGH 7 - Open
CVE-2022-41723 HIGH HIGH 7 0.7.0 Open
CVE-2021-33194 HIGH HIGH 7 - Open
CVE-2019-9514 HIGH HIGH 7 - Open
CVE-2019-9512 HIGH HIGH 7 - Open
CVE-2018-17848 HIGH HIGH 7 - Open
CVE-2018-17847 HIGH HIGH 7 - Open
CVE-2018-17143 HIGH HIGH 7 - Open
CVE-2018-17142 HIGH HIGH 7 - Open
CVE-2018-17075 HIGH HIGH 7 - Open
CVE-2021-31525 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

golang.org/x/sys 0.0.0-20200511232937-7e40ca221e25 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2022-29526 MEDIUM MEDIUM 4 0.0.0-20220412211240-33da011f77ad Open

Choose a reason for hiding this comment

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

github.com/gin-gonic/gin 1.9.1 / go.sum

Total vulnerabilities: 5

Critical: 0 High: 2 Medium: 3 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2020-36567 HIGH HIGH 7 - Open
CVE-2020-28483 HIGH HIGH 7 - Open
CVE-2023-26125 MEDIUM MEDIUM 4 - Open
PRISMA-2022-0393 MEDIUM MEDIUM 5.3 - Open
PRISMA-2022-0394 MEDIUM MEDIUM 5.3 - Open

Choose a reason for hiding this comment

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

github.com/cloudflare/circl 1.3.3 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2023-1732 MEDIUM MEDIUM 4 - Open

Choose a reason for hiding this comment

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

github.com/cloudflare/circl 1.1.0 / go.sum

Total vulnerabilities: 1

Critical: 0 High: 0 Medium: 1 Low: 0
Vulnerability IDSeverityCVSSFixed inStatus
CVE-2023-1732 MEDIUM MEDIUM 4 1.3.3 Open

github.com/coder/terraform-provider-coder v0.11.1/go.mod h1:UIfU3bYNeSzJJvHyJ30tEKjD6Z9utloI+HUM/7n94CY=
github.com/coder/wgtunnel v0.1.5 h1:WP3sCj/3iJ34eKvpMQEp1oJHvm24RYh0NHbj1kfUKfs=
github.com/coder/wgtunnel v0.1.5/go.mod h1:bokoUrHnUFY4lu9KOeSYiIcHTI2MO1KwqumU4DPDyJI=
github.com/containerd/console v1.0.3 h1:lIr7SlA5PxZyMV30bDW0MGbiOPXwc63yRuCP0ARubLw=
Expand Down