From 799e8701a3340ffabedd1d0a9efc9fcc600556f2 Mon Sep 17 00:00:00 2001 From: edoardottt Date: Sun, 14 Apr 2024 10:53:35 +0200 Subject: [PATCH 1/6] fix goreleaser --- .github/workflows/release-binary.yml | 2 +- .github/workflows/release-test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-binary.yml b/.github/workflows/release-binary.yml index 7e6b37c..c10d7cc 100644 --- a/.github/workflows/release-binary.yml +++ b/.github/workflows/release-binary.yml @@ -8,7 +8,7 @@ on: jobs: release: - runs-on: ubuntu-latest-16-cores + runs-on: ubuntu-latest steps: - name: "Check out code" uses: actions/checkout@v3 diff --git a/.github/workflows/release-test.yml b/.github/workflows/release-test.yml index 4a13baa..9286768 100644 --- a/.github/workflows/release-test.yml +++ b/.github/workflows/release-test.yml @@ -9,7 +9,7 @@ on: jobs: release-test: - runs-on: ubuntu-latest-16-cores + runs-on: ubuntu-latest steps: - name: "Check out code" uses: actions/checkout@v3 From 0007ffff53bed661d87cb5c4194420bf20a70763 Mon Sep 17 00:00:00 2001 From: Edoardo Ottavianelli Date: Sun, 14 Apr 2024 11:02:27 +0200 Subject: [PATCH 2/6] Update .goreleaser.yaml --- .goreleaser.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 5398592..efdeef8 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -1,3 +1,10 @@ +header: | + ## cariddi {{ .Tag }} 🥳 + *Take a list of domains, crawl urls and scan for endpoints, secrets, api keys, file extensions, tokens and more* + +footer: | + If you encounter a problem, just open an [issue](https://github.com/edoardottt/cariddi/issues) + before: hooks: - go mod tidy From a78821ffe478aaee1146e831c4b1d9500362ced5 Mon Sep 17 00:00:00 2001 From: edoardottt Date: Sun, 14 Apr 2024 11:07:19 +0200 Subject: [PATCH 3/6] fix goreleaser --- .goreleaser.yaml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index efdeef8..18f0c24 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -1,9 +1,10 @@ -header: | - ## cariddi {{ .Tag }} 🥳 - *Take a list of domains, crawl urls and scan for endpoints, secrets, api keys, file extensions, tokens and more* +release: + header: | + ## cariddi {{ .Tag }} 🥳 + *Take a list of domains, crawl urls and scan for endpoints, secrets, api keys, file extensions, tokens and more* -footer: | - If you encounter a problem, just open an [issue](https://github.com/edoardottt/cariddi/issues) + footer: | + If you encounter a problem, just open an [issue](https://github.com/edoardottt/cariddi/issues) before: hooks: From 902a521509ae8d5729c6265b26d342bf024c8a88 Mon Sep 17 00:00:00 2001 From: edoardottt Date: Sun, 14 Apr 2024 11:12:16 +0200 Subject: [PATCH 4/6] v1.3.4 --- pkg/output/banner.go | 2 +- snapcraft.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/output/banner.go b/pkg/output/banner.go index c7f2223..ffc8bbd 100644 --- a/pkg/output/banner.go +++ b/pkg/output/banner.go @@ -35,7 +35,7 @@ import ( // nolint: checknoglobals const ( - version = "v1.3.3" + version = "v1.3.4" banner = ` _ _ _ _ (_) | | | (_) ___ __ _ _ __ _ __| | __| |_ diff --git a/snapcraft.yaml b/snapcraft.yaml index 204d76d..9ad7806 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -2,7 +2,7 @@ name: cariddi summary: Fast web crawler and scanner description: | Take a list of domains, crawl urls and scan for endpoints, secrets, api keys, file extensions, tokens and more -version: 1.3.3 +version: 1.3.4 grade: stable base: core20 From c77ab31526dfecac6f85ca0e0b9f1b1a8d3e6f2f Mon Sep 17 00:00:00 2001 From: Edoardo Ottavianelli Date: Wed, 17 Apr 2024 10:36:06 +0200 Subject: [PATCH 5/6] Update release-binary.yml --- .github/workflows/release-binary.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-binary.yml b/.github/workflows/release-binary.yml index c10d7cc..77286d2 100644 --- a/.github/workflows/release-binary.yml +++ b/.github/workflows/release-binary.yml @@ -21,10 +21,11 @@ jobs: go-version: 1.21.x - name: "Create release on GitHub" + timeout-minutes: 10 uses: goreleaser/goreleaser-action@v4 with: args: "release --clean" version: latest workdir: . env: - GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" \ No newline at end of file + GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" From 5f8c0142c615fa9d1178e9bb16d372062de70f21 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Apr 2024 12:14:37 +0000 Subject: [PATCH 6/6] chore(deps): bump golang.org/x/net from 0.17.0 to 0.23.0 Bumps [golang.org/x/net](https://github.com/golang/net) from 0.17.0 to 0.23.0. - [Commits](https://github.com/golang/net/compare/v0.17.0...v0.23.0) --- updated-dependencies: - dependency-name: golang.org/x/net dependency-type: indirect ... Signed-off-by: dependabot[bot] --- go.mod | 6 +++--- go.sum | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/go.mod b/go.mod index a1d48c2..3d99ee0 100644 --- a/go.mod +++ b/go.mod @@ -21,9 +21,9 @@ require ( github.com/mattn/go-isatty v0.0.20 // indirect github.com/saintfish/chardet v0.0.0-20230101081208-5e3ef4b5456d // indirect github.com/temoto/robotstxt v1.1.2 // indirect - golang.org/x/net v0.17.0 // indirect - golang.org/x/sys v0.14.0 // indirect - golang.org/x/text v0.13.0 // indirect + golang.org/x/net v0.23.0 // indirect + golang.org/x/sys v0.18.0 // indirect + golang.org/x/text v0.14.0 // indirect google.golang.org/appengine v1.6.8 // indirect google.golang.org/protobuf v1.33.0 // indirect ) diff --git a/go.sum b/go.sum index ec98f1f..b5efea4 100644 --- a/go.sum +++ b/go.sum @@ -55,8 +55,8 @@ golang.org/x/net v0.5.0/go.mod h1:DivGGAXEgPSlEBzxGzZI+ZLohi+xUj054jfeKui00ws= golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= -golang.org/x/net v0.17.0 h1:pVaXccu2ozPjCXewfr1S7xza/zcXTity9cCdXQYSjIM= -golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= +golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= +golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -71,8 +71,8 @@ golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.14.0 h1:Vz7Qs629MkJkGyHxUlRHizWJRG2j8fbQKjELVSNhy7Q= -golang.org/x/sys v0.14.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= +golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.4.0/go.mod h1:9P2UbLfCdcvo3p/nzKvsmas4TnlujnuoV9hGgYzW1lQ= @@ -86,8 +86,8 @@ golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= -golang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k= -golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= +golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= +golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc=