160 lines
4.2 KiB
Go
Raw Normal View History

package issues
import (
"os"
2021-02-08 01:43:51 +05:30
"strings"
"github.com/pkg/errors"
"github.com/projectdiscovery/nuclei/v2/pkg/output"
"github.com/projectdiscovery/nuclei/v2/pkg/reporting/issues/dedupe"
"github.com/projectdiscovery/nuclei/v2/pkg/reporting/issues/github"
"github.com/projectdiscovery/nuclei/v2/pkg/reporting/issues/gitlab"
"github.com/projectdiscovery/nuclei/v2/pkg/reporting/issues/jira"
2021-02-08 02:07:19 +05:30
"github.com/projectdiscovery/nuclei/v2/pkg/types"
"gopkg.in/yaml.v2"
)
// Options is a configuration file for nuclei reporting module
type Options struct {
2021-02-08 01:43:51 +05:30
// AllowList contains a list of allowed events for reporting module
AllowList *Filter `yaml:"allow-list"`
// DenyList contains a list of denied events for reporting module
DenyList *Filter `yaml:"deny-list"`
// Github contains configuration options for Github Issue Tracker
Github *github.Options `yaml:"github"`
// Gitlab contains configuration options for Gitlab Issue Tracker
Gitlab *gitlab.Options `yaml:"gitlab"`
// Jira contains configuration options for Jira Issue Tracker
Jira *jira.Options `yaml:"jira"`
}
2021-02-08 01:43:51 +05:30
// Filter filters the received event and decides whether to perform
// reporting for it or not.
type Filter struct {
Severity string `yaml:"severity"`
severity []string
Tags string `yaml:"tags"`
tags []string
}
// Compile compiles the filter creating match structures.
func (f *Filter) Compile() {
parts := strings.Split(f.Severity, ",")
for _, part := range parts {
f.severity = append(f.severity, strings.TrimSpace(part))
}
parts = strings.Split(f.Tags, ",")
for _, part := range parts {
f.tags = append(f.tags, strings.TrimSpace(part))
}
}
// GetMatch returns true if a filter matches result event
func (f *Filter) GetMatch(event *output.ResultEvent) bool {
2021-02-08 02:07:19 +05:30
severity := types.ToString(event.Info["severity"])
2021-02-08 01:43:51 +05:30
if len(f.severity) > 0 {
2021-02-26 13:13:11 +05:30
return stringSliceContains(f.severity, severity)
2021-02-08 01:43:51 +05:30
}
tags := event.Info["tags"]
2021-02-08 02:07:19 +05:30
tagParts := strings.Split(types.ToString(tags), ",")
2021-02-08 01:43:51 +05:30
for i, tag := range tagParts {
tagParts[i] = strings.TrimSpace(tag)
}
for _, tag := range f.tags {
if stringSliceContains(tagParts, tag) {
return true
}
}
return false
}
// Tracker is an interface implemented by an issue tracker
type Tracker interface {
// CreateIssue creates an issue in the tracker
CreateIssue(event *output.ResultEvent) error
}
// Client is a client for nuclei issue tracking module
type Client struct {
tracker Tracker
2021-02-08 01:43:51 +05:30
options *Options
dedupe *dedupe.Storage
}
// New creates a new nuclei issue tracker reporting client
2021-02-07 23:41:33 +05:30
func New(config, db string) (*Client, error) {
file, err := os.Open(config)
if err != nil {
return nil, errors.Wrap(err, "could not open reporting config file")
}
defer file.Close()
options := &Options{}
2021-02-26 13:13:11 +05:30
if parseErr := yaml.NewDecoder(file).Decode(options); parseErr != nil {
return nil, parseErr
}
2021-02-08 01:43:51 +05:30
if options.AllowList != nil {
options.AllowList.Compile()
}
if options.DenyList != nil {
options.DenyList.Compile()
}
var tracker Tracker
if options.Github != nil {
tracker, err = github.New(options.Github)
}
if options.Gitlab != nil {
tracker, err = gitlab.New(options.Gitlab)
}
if options.Jira != nil {
tracker, err = jira.New(options.Jira)
}
if err != nil {
return nil, errors.Wrap(err, "could not create reporting client")
}
if tracker == nil {
return nil, errors.New("no issue tracker configuration found")
}
2021-02-07 23:41:33 +05:30
storage, err := dedupe.New(db)
if err != nil {
return nil, err
}
2021-02-08 01:43:51 +05:30
return &Client{tracker: tracker, dedupe: storage, options: options}, nil
}
// Close closes the issue tracker reporting client
func (c *Client) Close() {
c.dedupe.Close()
}
// CreateIssue creates an issue in the tracker
func (c *Client) CreateIssue(event *output.ResultEvent) error {
2021-02-08 01:43:51 +05:30
if c.options.AllowList != nil && !c.options.AllowList.GetMatch(event) {
return nil
}
if c.options.DenyList != nil && c.options.DenyList.GetMatch(event) {
return nil
}
found, err := c.dedupe.Index(event)
if err != nil {
2021-02-26 13:13:11 +05:30
_ = c.tracker.CreateIssue(event)
return err
}
if found {
return c.tracker.CreateIssue(event)
}
return nil
}
2021-02-08 01:43:51 +05:30
func stringSliceContains(slice []string, item string) bool {
for _, i := range slice {
if strings.EqualFold(i, item) {
return true
}
}
return false
}