Skip to content

Commit 96203d8

Browse files
authored
Merge pull request #5583 from projectdiscovery/dev
Nuclei - v3.3.2 release prep
2 parents 8c0dd5f + 042b33d commit 96203d8

File tree

45 files changed

+955
-303
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+955
-303
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
name: Bug Report
2+
description: Create a report to help us to improve the Nuclei.
3+
title: "[BUG] ..."
4+
labels: ["Type: Bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
11+
For support requests, FAQs or "How to" questions, please use the [GitHub Discussions](https://github.com/projectdiscovery/nuclei/discussions) section instead or join our [Discord server](https://discord.gg/projectdiscovery) to discuss the idea on the **#nuclei** channel.
12+
13+
:warning: **Issues missing important information may be closed without further investigation.**
14+
- type: checkboxes
15+
attributes:
16+
label: Is there an existing issue for this?
17+
description: Please search to see if an issue already exists for the bug you encountered.
18+
options:
19+
- label: I have searched the existing issues.
20+
required: true
21+
- type: textarea
22+
attributes:
23+
label: Current Behavior
24+
description: A concise description of what you're experiencing.
25+
validations:
26+
required: true
27+
- type: textarea
28+
attributes:
29+
label: Expected Behavior
30+
description: A concise description of what you expected to happen.
31+
validations:
32+
required: true
33+
- type: textarea
34+
attributes:
35+
label: Steps To Reproduce
36+
description: |
37+
Steps to reproduce the behavior, for example, commands to run Nuclei.
38+
39+
:warning: **Please redact any literal target hosts/URLs or other sensitive information.**
40+
placeholder: |
41+
1. Run `nuclei -t ...`
42+
validations:
43+
required: true
44+
- type: textarea
45+
attributes:
46+
label: Relevant log output
47+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
48+
render: shell
49+
- type: textarea
50+
attributes:
51+
label: Environment
52+
description: |
53+
Examples:
54+
- **OS**: Ubuntu 20.04
55+
- **Nuclei** (`nuclei -version`): v3.3.1
56+
- **Go** (`go version`): go1.22.0 _(only if you've installed it via the `go install` command)_
57+
value: |
58+
- OS:
59+
- Nuclei:
60+
- Go:
61+
render: markdown
62+
validations:
63+
required: true
64+
- type: textarea
65+
attributes:
66+
label: Anything else?
67+
description: |
68+
Links? References? Templates? Anything that will give us more context about the issue you are encountering!
69+
70+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
71+
validations:
72+
required: false
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Feature Request
2+
description: Request feature to implement in the Nuclei.
3+
title: "[FEATURE] ..."
4+
labels: ["Type: Enhancement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this feature request!
10+
11+
Please make sure to provide a detailed description with all the relevant information that might be required to start working on this feature. In case you are not sure about your request or whether the particular feature is already supported or not, please [start a discussion](https://github.com/projectdiscovery/nuclei/discussions/categories/ideas) instead.
12+
13+
Join our [Discord server](https://discord.gg/projectdiscovery) to discuss the idea on the **#nuclei** channel.
14+
- type: textarea
15+
attributes:
16+
label: Describe your feature request
17+
description: A clear and concise description of feature to implement.
18+
validations:
19+
required: true
20+
- type: textarea
21+
attributes:
22+
label: Describe the use case of the feature
23+
description: A clear and concise description of the feature request's motivation and the use-cases in which it could be useful.
24+
validations:
25+
required: true
26+
- type: textarea
27+
attributes:
28+
label: Describe alternatives you've considered
29+
description: A clear and concise description of any alternative solutions or features you've considered.
30+
validations:
31+
required: false
32+
- type: textarea
33+
attributes:
34+
label: Additional context
35+
description: Add any other context about the feature request here.
36+
validations:
37+
required: false

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/issue-report.md

Lines changed: 0 additions & 41 deletions
This file was deleted.

.github/auto_assign.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
addReviewers: true
2+
reviewers:
3+
- dogancanbakir
4+
5+
numberOfReviewers: 1
6+
skipKeywords:
7+
- '@dependabot'

.gitignore

Lines changed: 36 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,42 @@
1+
# Misc
2+
**/*-cache
3+
**/*-config
4+
**/.cache
5+
*.DS_Store
6+
*.exe
7+
.devcontainer
8+
.gitignore
19
.idea
210
.vscode
3-
.devcontainer
4-
vendor
11+
12+
# Binaries
13+
**/bindgen
14+
**/debug-*
15+
**/docgen
16+
**/functional-test
17+
**/fuzzplayground
18+
**/integration-test
19+
**/jsdocgen
20+
**/main
21+
**/memogen
22+
**/nuclei
23+
**/nuclei-stats*
24+
**/nuclei_dev
25+
**/nuclei_main
26+
**/scan-charts
27+
**/scrapefunc
28+
**/scrapefuncs
29+
**/tsgen
30+
31+
# Templates
32+
/*.yaml
33+
34+
# Generated docs
35+
/dsl.md
36+
37+
# Junk
538
dist
6-
integration_tests/nuclei
7-
integration_tests/.cache
8-
integration_tests/integration-test
9-
cmd/nuclei/main
10-
cmd/nuclei/nuclei
11-
cmd/integration-test/nuclei
12-
cmd/functional-test/nuclei_dev
13-
cmd/functional-test/nuclei_main
14-
cmd/functional-test/functional-test
15-
cmd/docgen/docgen
1639
pkg/protocols/common/helpers/deserialization/testdata/Deserialize.class
1740
pkg/protocols/common/helpers/deserialization/testdata/ValueObject.class
1841
pkg/protocols/common/helpers/deserialization/testdata/ValueObject2.ser
19-
*.exe
20-
.gitignore
21-
pkg/js/devtools/bindgen/cmd/bindgen/bindgen
22-
pkg/js/devtools/jsdocgen/jsdocgen
23-
pkg/js/devtools/tsgen/tsgen
24-
pkg/js/devtools/tsgen/cmd/tsgen/tsgen
25-
*.DS_Store
26-
pkg/protocols/headless/engine/.cache
27-
/nuclei
28-
/bindgen
29-
/jsdocgen
30-
/tsgen
31-
/scrapefuncs
32-
/integration_tests/.cache/
33-
/*.yaml
34-
**/*-config
35-
**/*-cache
36-
/fuzzplayground
37-
integration_tests/fuzzplayground
38-
/dsl.md
39-
/nuclei-stats
40-
/nuclei-stats-*
41-
/scan-charts
42-
/**/debug-*
43-
42+
vendor

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN go build ./cmd/nuclei
99

1010
# Release
1111
FROM alpine:3.18.6
12-
RUN apk -U upgrade --no-cache \
12+
RUN apk upgrade --no-cache \
1313
&& apk add --no-cache bind-tools chromium ca-certificates
1414
COPY --from=build-env /app/nuclei /usr/local/bin/
1515

0 commit comments

Comments
 (0)