-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcombos.json
More file actions
83 lines (83 loc) · 1.79 KB
/
Copy pathcombos.json
File metadata and controls
83 lines (83 loc) · 1.79 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"combos": [
{
"name": "default",
"mappings": [
{
"type": "directory",
"scanners": ["semgrep","kics","syft_grype","trufflehog"]
},
{
"type": "github",
"scanners": ["trufflehog"]
},
{
"type": "web",
"scanners": ["dastardly"]
},
{
"type": "openapi",
"scanners": ["zap"]
},
{
"type": "graphql",
"scanners": ["zap_graphql"]
},
{
"type": "soap",
"scanners": ["zap"]
},
{
"type": "docker",
"scanners": ["trivy"]
}
]
},
{
"name": "CICD",
"mappings": [
{
"type": "directory",
"scanners": ["semgrep","kics","syft_grype","trufflehog"]
},
{
"type": "docker",
"scanners": ["trivy"]
}
]
},
{
"name": "full",
"mappings": [
{
"type": "directory",
"scanners": ["semgrep","kics","syft_cdxgen","syft_grype","trufflehog"]
},
{
"type": "github",
"scanners": ["trufflehog"]
},
{
"type": "web",
"scanners": ["dastardly","zap"]
},
{
"type": "openapi",
"scanners": ["zap"]
},
{
"type": "graphql",
"scanners": ["zap"]
},
{
"type": "soap",
"scanners": ["zap"]
},
{
"type": "docker",
"scanners": ["trivy","syft_cdxgen","syft_grype"]
}
]
}
]
}