generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
54 lines (44 loc) · 1.23 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: 'VulnAPI Action'
description:
'VulnAPI is an open-source project designed to help you scan your APIs for
common security vulnerabilities and weaknesses.'
author: 'CerberAuth'
branding:
icon: 'shield'
color: 'gray-dark'
inputs:
version:
description: 'The version of the VulnAPI to use'
required: true
default: 'latest'
curl:
description: 'The curl command used to run API vulnerability scans'
required: false
openapi:
description: 'The OpenAPI file used to run API vulnerability scans'
required: false
scans:
description: 'The scans performed'
required: false
excludeScans:
description: 'The scans to exclude'
required: false
rateLimit:
description: 'The rate limit used to run API vulnerability scans'
required: false
default: 10/s
telemetry:
description:
'VulnAPI uses fully anonymized telemetry data to help improve the tool.
You can disable it by setting this to false.'
required: false
default: 'true'
proxy:
description: 'The proxy server used during the scan'
required: false
severityThreshold:
description: 'The severity threshold to trigger a failure'
required: false
runs:
using: node20
main: dist/index.js