You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* More feature additions (#10)
* Adding sarif and markdown support
* misc changes
* Version lock
* Example updates
* misc changes
* support to use any nuclei flag as extra argument
* Example branch update (#11)
* Adding sarif and markdown support
* misc changes
* Version lock
* Example updates
* misc changes
* support to use any nuclei flag as extra argument
* branch update
As latest tag will always in sync with main
Copy file name to clipboardExpand all lines: README.md
+51-28
Original file line number
Diff line number
Diff line change
@@ -11,53 +11,67 @@ Integrate all of your [Nuclei Templates](https://github.com/projectdiscovery/nuc
11
11
Example Usage
12
12
-----
13
13
14
-
**GitHub Action running nuclei on single URL**
14
+
**GitHub Action running Nuclei on single URL**
15
15
16
16
```yaml
17
-
- name: Nuclei Scan
18
-
uses: projectdiscovery/nuclei-action@v1.0.1
17
+
- name: Nuclei - DAST Scan
18
+
uses: projectdiscovery/nuclei-action@main
19
19
with:
20
20
target: https://example.com
21
21
```
22
22
23
-
**GitHub Action running nuclei with custom templates**
23
+
**GitHub Action running Nuclei with custom templates**
24
24
25
25
```yaml
26
-
- name: Nuclei Scan
27
-
uses: projectdiscovery/nuclei-action@v1.0.1
26
+
- name: Nuclei - DAST Scan
27
+
uses: projectdiscovery/nuclei-action@main
28
28
with:
29
29
target: https://example.com
30
30
templates: custom_template_path
31
31
```
32
32
33
33
<ins>As default, all the default [nuclei-templates](https://github.com/projectdiscovery/nuclei-templates) are used for scan.</ins>
34
34
35
-
**GitHub Action running nuclei on multiple URLs**
35
+
**GitHub Action running Nuclei on multiple URLs**
36
36
37
37
```yaml
38
-
- name: Nuclei Scan
39
-
uses: projectdiscovery/nuclei-action@v1.0.1
38
+
- name: Nuclei - DAST Scan
39
+
uses: projectdiscovery/nuclei-action@main
40
40
with:
41
41
urls: urls.txt
42
42
```
43
43
44
-
**GitHub Example Action running nuclei with GitHub Issue reporting**
44
+
**GitHub Example Action running Nuclei with GitHub Issue reporting**
45
45
46
46
```yaml
47
-
- name: Nuclei Scan
48
-
uses: projectdiscovery/nuclei-action@v1.0.1
47
+
- name: Nuclei - DAST Scan
48
+
uses: projectdiscovery/nuclei-action@main
49
49
with:
50
50
target: https://example.com
51
51
github-report: true
52
52
github-token: ${{ secrets.GITHUB_TOKEN }}
53
53
```
54
54
55
+
**GitHub Example Action running Nuclei with GitHub Security Dashboard reporting**
0 commit comments