Skip to content

Commit 805cab4

Browse files
Merge pull request #5935 from projectdiscovery/dev
Nuclei v3.3.8 (maintenance)
2 parents bf01be1 + 8902d13 commit 805cab4

File tree

37 files changed

+325
-256
lines changed

37 files changed

+325
-256
lines changed

.github/dependabot.yml

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
# Please see the documentation for all configuration options:
4-
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5-
61
version: 2
72
updates:
8-
9-
# Maintain dependencies for go modules
103
- package-ecosystem: "gomod"
114
directory: "/"
125
schedule:
@@ -15,23 +8,29 @@ updates:
158
commit-message:
169
prefix: "chore"
1710
include: "scope"
18-
labels:
19-
- "Type: Maintenance"
2011
allow:
2112
- dependency-name: "github.com/projectdiscovery/*"
13+
groups:
14+
modules:
15+
patterns: ["github.com/projectdiscovery/*"]
16+
labels:
17+
- "Type: Maintenance"
18+
19+
- package-ecosystem: "github-actions"
20+
directory: "/"
21+
schedule:
22+
interval: "weekly"
23+
target-branch: "dev"
24+
commit-message:
25+
prefix: "chore"
26+
include: "scope"
27+
groups:
28+
workflows:
29+
patterns: ["*"]
30+
exclude-patterns: ["projectdiscovery/actions/*"]
31+
labels:
32+
- "Type: Maintenance"
2233

23-
# # Maintain dependencies for GitHub Actions
24-
# - package-ecosystem: "github-actions"
25-
# directory: "/"
26-
# schedule:
27-
# interval: "weekly"
28-
# target-branch: "dev"
29-
# commit-message:
30-
# prefix: "chore"
31-
# include: "scope"
32-
# labels:
33-
# - "Type: Maintenance"
34-
#
3534
# # Maintain dependencies for docker
3635
# - package-ecosystem: "docker"
3736
# directory: "/"

.github/workflows/dockerhub-push.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,27 +20,27 @@ jobs:
2020
curl --silent "https://api.github.com/repos/projectdiscovery/nuclei/releases/latest" | jq -r .tag_name | xargs -I {} echo TAG={} >> $GITHUB_OUTPUT
2121
2222
- name: Set up QEMU
23-
uses: docker/setup-qemu-action@v2
23+
uses: docker/setup-qemu-action@v3
2424

2525
- name: Set up Docker Buildx
26-
uses: docker/setup-buildx-action@v2
26+
uses: docker/setup-buildx-action@v3
2727

2828
- name: Login to DockerHub
29-
uses: docker/login-action@v2
29+
uses: docker/login-action@v3
3030
with:
3131
username: ${{ secrets.DOCKER_USERNAME }}
3232
password: ${{ secrets.DOCKER_TOKEN }}
3333

3434
- name: Build and push
35-
uses: docker/build-push-action@v4
35+
uses: docker/build-push-action@v6
3636
with:
3737
context: .
3838
platforms: linux/amd64,linux/arm64
3939
push: true
4040
tags: projectdiscovery/nuclei:latest,projectdiscovery/nuclei:${{ steps.meta.outputs.TAG }}
4141

4242
- name: Update DockerHub Description
43-
uses: peter-evans/dockerhub-description@v3
43+
uses: peter-evans/dockerhub-description@v4
4444
with:
4545
username: ${{ secrets.DOCKER_USERNAME }}
4646
password: ${{ secrets.DOCKER_TOKEN }}

.github/workflows/tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
steps:
7575
- uses: actions/checkout@v4
7676
- uses: projectdiscovery/actions/setup/go@v1
77-
- uses: actions/setup-python@v4
77+
- uses: actions/setup-python@v5
7878
with:
7979
python-version: '3.10'
8080
- run: bash run.sh "${{ matrix.os }}"
@@ -119,11 +119,11 @@ jobs:
119119
security-events: write
120120
steps:
121121
- uses: actions/checkout@v4
122-
- uses: github/codeql-action/init@v2
122+
- uses: github/codeql-action/init@v3
123123
with:
124124
languages: 'go'
125-
- uses: github/codeql-action/autobuild@v2
126-
- uses: github/codeql-action/analyze@v2
125+
- uses: github/codeql-action/autobuild@v3
126+
- uses: github/codeql-action/analyze@v3
127127

128128
release:
129129
name: "Release test"

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 ProjectDiscovery, Inc.
3+
Copyright (c) 2025 ProjectDiscovery, Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

go.mod

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ require (
2020
github.com/olekukonko/tablewriter v0.0.5
2121
github.com/pkg/errors v0.9.1
2222
github.com/projectdiscovery/clistats v0.1.1
23-
github.com/projectdiscovery/fastdialer v0.2.10
24-
github.com/projectdiscovery/hmap v0.0.69
25-
github.com/projectdiscovery/interactsh v1.2.0
26-
github.com/projectdiscovery/rawhttp v0.1.76
27-
github.com/projectdiscovery/retryabledns v1.0.86
28-
github.com/projectdiscovery/retryablehttp-go v1.0.88
23+
github.com/projectdiscovery/fastdialer v0.2.14
24+
github.com/projectdiscovery/hmap v0.0.73
25+
github.com/projectdiscovery/interactsh v1.2.2
26+
github.com/projectdiscovery/rawhttp v0.1.80
27+
github.com/projectdiscovery/retryabledns v1.0.91
28+
github.com/projectdiscovery/retryablehttp-go v1.0.93
2929
github.com/projectdiscovery/yamldoc-go v1.0.4
3030
github.com/remeh/sizedwaitgroup v1.0.0
3131
github.com/rs/xid v1.5.0
@@ -38,9 +38,9 @@ require (
3838
github.com/weppos/publicsuffix-go v0.30.2
3939
github.com/xanzy/go-gitlab v0.107.0
4040
go.uber.org/multierr v1.11.0
41-
golang.org/x/net v0.31.0
41+
golang.org/x/net v0.33.0
4242
golang.org/x/oauth2 v0.22.0
43-
golang.org/x/text v0.20.0
43+
golang.org/x/text v0.21.0
4444
gopkg.in/yaml.v2 v2.4.0
4545
)
4646

@@ -81,24 +81,24 @@ require (
8181
github.com/microsoft/go-mssqldb v1.6.0
8282
github.com/ory/dockertest/v3 v3.10.0
8383
github.com/praetorian-inc/fingerprintx v1.1.9
84-
github.com/projectdiscovery/dsl v0.3.3
84+
github.com/projectdiscovery/dsl v0.3.9
8585
github.com/projectdiscovery/fasttemplate v0.0.2
8686
github.com/projectdiscovery/go-smb2 v0.0.0-20240129202741-052cc450c6cb
8787
github.com/projectdiscovery/goflags v0.1.65
88-
github.com/projectdiscovery/gologger v1.1.33
88+
github.com/projectdiscovery/gologger v1.1.38
8989
github.com/projectdiscovery/gostruct v0.0.2
9090
github.com/projectdiscovery/gozero v0.0.3
9191
github.com/projectdiscovery/httpx v1.6.9
9292
github.com/projectdiscovery/mapcidr v1.1.34
9393
github.com/projectdiscovery/n3iwf v0.0.0-20230523120440-b8cd232ff1f5
94-
github.com/projectdiscovery/ratelimit v0.0.64
94+
github.com/projectdiscovery/ratelimit v0.0.67
9595
github.com/projectdiscovery/rdap v0.9.1-0.20221108103045-9865884d1917
9696
github.com/projectdiscovery/sarif v0.0.1
9797
github.com/projectdiscovery/tlsx v1.1.8
9898
github.com/projectdiscovery/uncover v1.0.9
99-
github.com/projectdiscovery/useragent v0.0.78
100-
github.com/projectdiscovery/utils v0.3.0
101-
github.com/projectdiscovery/wappalyzergo v0.2.5
99+
github.com/projectdiscovery/useragent v0.0.85
100+
github.com/projectdiscovery/utils v0.4.4
101+
github.com/projectdiscovery/wappalyzergo v0.2.9
102102
github.com/redis/go-redis/v9 v9.1.0
103103
github.com/seh-msft/burpxml v1.0.1
104104
github.com/shurcooL/graphql v0.0.0-20230722043721-ed46e5a46466
@@ -107,7 +107,7 @@ require (
107107
github.com/yassinebenaid/godump v0.10.0
108108
github.com/zmap/zgrab2 v0.1.8-0.20230806160807-97ba87c0e706
109109
go.mongodb.org/mongo-driver v1.17.0
110-
golang.org/x/term v0.26.0
110+
golang.org/x/term v0.27.0
111111
gopkg.in/yaml.v3 v3.0.1
112112
moul.io/http2curl v1.0.0
113113
)
@@ -247,7 +247,7 @@ require (
247247
github.com/zeebo/blake3 v0.2.3 // indirect
248248
go.uber.org/goleak v1.3.0 // indirect
249249
golang.org/x/arch v0.3.0 // indirect
250-
golang.org/x/sync v0.9.0 // indirect
250+
golang.org/x/sync v0.10.0 // indirect
251251
gopkg.in/djherbis/times.v1 v1.3.0 // indirect
252252
mellium.im/sasl v0.3.1 // indirect
253253
)
@@ -277,7 +277,7 @@ require (
277277
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
278278
github.com/golang/snappy v0.0.4 // indirect
279279
github.com/google/go-querystring v1.1.0 // indirect
280-
github.com/google/uuid v1.6.0 // indirect
280+
github.com/google/uuid v1.6.0
281281
github.com/gorilla/css v1.0.1 // indirect
282282
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
283283
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
@@ -314,10 +314,10 @@ require (
314314
go.etcd.io/bbolt v1.3.10 // indirect
315315
go.uber.org/zap v1.25.0 // indirect
316316
goftp.io/server/v2 v2.0.1 // indirect
317-
golang.org/x/crypto v0.29.0 // indirect
317+
golang.org/x/crypto v0.31.0 // indirect
318318
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842
319319
golang.org/x/mod v0.17.0 // indirect
320-
golang.org/x/sys v0.27.0 // indirect
320+
golang.org/x/sys v0.28.0 // indirect
321321
golang.org/x/time v0.6.0 // indirect
322322
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d
323323
google.golang.org/protobuf v1.34.2 // indirect

0 commit comments

Comments
 (0)