Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
projectdiscovery
GitHub Repository: projectdiscovery/nuclei
Path: blob/dev/integration_tests/test-issue-tracker-config2.yaml
2061 views
1
allow-list:
2
severity:
3
- high
4
- critical
5
deny-list:
6
severity: low
7
8
# GitHub contains configuration options for GitHub issue tracker
9
gitHub:
10
# base-url is the optional self-hosted GitHub application url
11
base-url: https://localhost:8443/GitHub
12
# username is the username of the GitHub user
13
username: test-username
14
# owner is the owner name of the repository for issues.
15
owner: test-owner
16
# token is the token for GitHub account.
17
token: test-token
18
# project-name is the name of the repository.
19
project-name: test-project
20
# issue-label is the label of the created issue type
21
issue-label: bug
22
23
# GitLab contains configuration options for GitLab issue tracker
24
gitLab:
25
# base-url is the optional self-hosted GitLab application url
26
base-url: https://localhost:8443/GitLab
27
# username is the username of the GitLab user
28
username: test-username
29
# token is the token for GitLab account.
30
token: test-token
31
# project-name is the name/id of the project(repository).
32
project-name: "1234"
33
# issue-label is the label of the created issue type
34
issue-label: bug
35
# duplicate-issue-check flag to enable duplicate tracking issue check.
36
duplicate-issue-check: true
37
38
# Jira contains configuration options for Jira issue tracker
39
jira:
40
# cloud is the boolean which tells if Jira instance is running in the cloud or on-prem version is used
41
cloud: true
42
# update-existing is the boolean which tells if the existing, opened issue should be updated or new one should be created
43
update-existing: false
44
# URL is the Jira application url
45
url: https://localhost/Jira
46
# account-id is the account-id of the Jira user or username in case of on-prem Jira
47
account-id: test-account-id
48
# email is the email of the user for Jira instance
49
email: test@test.com
50
# token is the token for Jira instance or password in case of on-prem Jira
51
token: test-token
52
# project-name is the name of the project.
53
project-name: test-project-name
54
# issue-type is the name of the created issue type
55
issue-type: bug
56
57
# elasticsearch contains configuration options for elasticsearch exporter
58
elasticsearch:
59
# IP for elasticsearch instance
60
ip: 127.0.0.1
61
# Port is the port of elasticsearch instance
62
port: 9200
63
# IndexName is the name of the elasticsearch index
64
index-name: nuclei
65
# SSL enables ssl for elasticsearch connection
66
ssl: false
67
# SSLVerification disables SSL verification for elasticsearch
68
ssl-verification: false
69
# Username for the elasticsearch instance
70
username: test
71
# Password is the password for elasticsearch instance
72
password: test
73