Skip to content

Commit

Permalink
Update formfill.go (#736)
Browse files Browse the repository at this point in the history
* fix: Dockerfile to reduce vulnerabilities (#732)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-ALPINE318-BUSYBOX-5890990
- https://snyk.io/vuln/SNYK-ALPINE318-BUSYBOX-5890990
- https://snyk.io/vuln/SNYK-ALPINE318-BUSYBOX-5890990
- https://snyk.io/vuln/SNYK-ALPINE318-OPENSSL-6032386
- https://snyk.io/vuln/SNYK-ALPINE318-OPENSSL-6032386

Co-authored-by: snyk-bot <snyk-bot@snyk.io>

* Update formfill.go

---------

Co-authored-by: beac0n5 <129071263+beac0n5@users.noreply.github.com>
Co-authored-by: snyk-bot <snyk-bot@snyk.io>
  • Loading branch information
3 people committed Feb 12, 2024
1 parent 2a82896 commit a172bcd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -5,7 +5,7 @@ COPY . /app
RUN go mod download
RUN go build ./cmd/katana

FROM alpine:3.18.2
FROM alpine:3.18.5
RUN apk -U upgrade --no-cache \
&& apk add --no-cache bind-tools ca-certificates chromium
COPY --from=builder /app/katana /usr/local/bin/
Expand Down
2 changes: 1 addition & 1 deletion pkg/utils/formfill.go
Expand Up @@ -26,7 +26,7 @@ type FormFillData struct {
}

var DefaultFormFillData = FormFillData{
Email: fmt.Sprintf("%s@katanacrawler.io", xid.New().String()),
Email: fmt.Sprintf("%s@example.org", xid.New().String()),
Color: "#e66465",
Password: "katanaP@assw0rd1",
PhoneNumber: "2124567890",
Expand Down

0 comments on commit a172bcd

Please sign in to comment.